From bc7dec9c614f8be4698974d5825dd11fddba1a87 Mon Sep 17 00:00:00 2001 From: Aram Barzanjeh Date: Tue, 26 May 2026 11:22:59 +0200 Subject: [PATCH 1/8] Handle folder creation race conditions Introduce `AddFolderHandleRaceAsync` to handle race conditions during folder creation by re-fetching the folder if it already exists. Replace direct calls to `AddFolderAsync` with `AddFolderHandleRaceAsync`. Add helper method `ErrorIndicatesFolderAlreadyExists` to identify specific error codes for existing folders. --- .../Model/SharePoint/Core/Internal/Folder.cs | 41 ++++++++++++++++++- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/src/sdk/PnP.Core/Model/SharePoint/Core/Internal/Folder.cs b/src/sdk/PnP.Core/Model/SharePoint/Core/Internal/Folder.cs index 84088c5cec..2def44fc1d 100644 --- a/src/sdk/PnP.Core/Model/SharePoint/Core/Internal/Folder.cs +++ b/src/sdk/PnP.Core/Model/SharePoint/Core/Internal/Folder.cs @@ -410,13 +410,13 @@ public async Task EnsureFolderAsync(string folderRelativeUrl, params Ex } catch (SharePointRestServiceException) { - currentFolder = await currentFolder.AddFolderAsync(folderName).ConfigureAwait(false); + currentFolder = await AddFolderHandleRaceAsync(currentFolder, folderName, currentUrl, expressions).ConfigureAwait(false); currentFolderWasCreated = true; } } else { - currentFolder = await currentFolder.AddFolderAsync(folderName).ConfigureAwait(false); + currentFolder = await AddFolderHandleRaceAsync(currentFolder, folderName, currentUrl, expressions).ConfigureAwait(false); } } @@ -427,6 +427,32 @@ public IFolder EnsureFolder(string folderRelativeUrl, params Expression AddFolderHandleRaceAsync( + IFolder parentFolder, + string folderName, + string folderServerRelativeUrl, + Expression>[] expressions) + { + try + { + return await parentFolder.AddFolderAsync(folderName).ConfigureAwait(false); + } + catch (SharePointRestServiceException ex) when (ex.Error is SharePointRestError error && ErrorIndicatesFolderAlreadyExists(error)) + { + // Race condition: another concurrent call created the folder between our GET (404) + // and our subsequent POST. Re-fetch the folder and continue. + try + { + return await parentFolder.PnPContext.Web.GetFolderByServerRelativeUrlAsync(folderServerRelativeUrl, expressions).ConfigureAwait(false); + } + catch + { + // If the re-fetch fails, surface the original "already exists" error + throw ex; + } + } + } #endregion #region Rename folder @@ -905,6 +931,17 @@ internal static bool ErrorIndicatesFolderDoesNotExists(SharePointRestError error } } + internal static bool ErrorIndicatesFolderAlreadyExists(SharePointRestError error) + { + // -2130575257 indicates that the folder already exists. + if (error?.HttpResponseCode == 400 && error.ServerErrorCode == -2130575257) + { + return true; + } + + return false; + } + #endregion } } From 111351857ad7342abc1f7dcb49cbd9d5abb11c31 Mon Sep 17 00:00:00 2001 From: Aram Barzanjeh Date: Tue, 26 May 2026 16:21:56 +0200 Subject: [PATCH 2/8] Add new folder tests Added `EnsureListFolderIdempotentTest` and `EnsureListFolderConcurrentTest` to validate folder creation behavior and race condition handling. Improved cleanup of mock folders from the recycle bin in test cases. Refactored `QueryableExtensions.FirstOrDefaultAsync` calls for readability and consistency. Enhanced test assertions for folder properties and adjusted formatting. --- .../PnP.Core.Test/SharePoint/FoldersTests.cs | 83 +++++++++++++++---- 1 file changed, 69 insertions(+), 14 deletions(-) diff --git a/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs b/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs index 43c709e3c1..b41dfc1399 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs +++ b/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs @@ -248,7 +248,7 @@ public async Task GetListSubFoldersTest() IFolder parentFolder = (await context.Web.Lists.GetByTitleAsync("Documents", p => p.RootFolder)).RootFolder; IFolder mockFolder = await parentFolder.Folders.AddAsync("TEST"); - List folders = await PnP.Core.QueryModel.QueryableExtensions.ToListAsync(context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder.Folders).ConfigureAwait(false); + List folders = await PnP.Core.QueryModel.QueryableExtensions.ToListAsync(context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder.Folders).ConfigureAwait(false); Assert.AreNotEqual(0, folders.Count); @@ -606,7 +606,7 @@ public async Task EnsureListFolderInExistingHiarchyTest() Assert.IsTrue(folderToDelete.Name == "sub1"); Assert.IsFalse(folderToDelete.IsPropertyAvailable(p => p.StorageMetrics)); - var folderToLoadWithExpression = await parentFolder.EnsureFolderAsync("sub1/sub2", p => p.Name, p => p.StorageMetrics); + var folderToLoadWithExpression = await parentFolder.EnsureFolderAsync("sub1/sub2", p => p.Name, p => p.StorageMetrics); Assert.IsTrue(folderToLoadWithExpression != null); Assert.IsTrue(folderToLoadWithExpression.Name == "sub2"); Assert.IsTrue(folderToLoadWithExpression.IsPropertyAvailable(p => p.StorageMetrics)); @@ -614,6 +614,61 @@ public async Task EnsureListFolderInExistingHiarchyTest() await folderToDelete.DeleteAsync(); } } + + [TestMethod] + public async Task EnsureListFolderIdempotentTest() + { + //TestCommon.Instance.Mocking = false; + using (var context = await TestCommon.Instance.GetContextAsync(TestCommon.TestSite)) + { + IFolder parentFolder = (await context.Web.Lists.GetByTitleAsync("Site Pages", p => p.RootFolder)).RootFolder; + + var addedFolder = await parentFolder.EnsureFolderAsync("sub1/sub2"); + Assert.IsTrue(addedFolder != null); + Assert.IsTrue(addedFolder.Name == "sub2"); + + // Calling EnsureFolderAsync again for the same path must succeed and return the same folder + var ensuredFolder = await parentFolder.EnsureFolderAsync("sub1/sub2"); + Assert.IsTrue(ensuredFolder != null); + Assert.IsTrue(ensuredFolder.Name == "sub2"); + Assert.AreEqual(addedFolder.UniqueId, ensuredFolder.UniqueId); + + var folderToDelete = await parentFolder.EnsureFolderAsync("sub1"); + await folderToDelete.DeleteAsync(); + } + } + + [TestMethod] + public async Task EnsureListFolderConcurrentTest() + { + // This test exercises the race condition handling in EnsureFolderAsync: + // multiple concurrent calls targeting the same folder path must all succeed + // even when one of them loses the create race and gets an "already exists" error. + //TestCommon.Instance.Mocking = false; + using (var context = await TestCommon.Instance.GetContextAsync(TestCommon.TestSite)) + { + IFolder parentFolder = (await context.Web.Lists.GetByTitleAsync("Site Pages", p => p.RootFolder)).RootFolder; + + try + { + var tasks = Enumerable.Range(0, 5) + .Select(_ => parentFolder.EnsureFolderAsync("sub1/sub2/sub3")) + .ToArray(); + + var results = await Task.WhenAll(tasks); + + Assert.IsTrue(results.All(r => r != null)); + Assert.IsTrue(results.All(r => r.Name == "sub3")); + Assert.AreEqual(1, results.Select(r => r.UniqueId).Distinct().Count()); + } + finally + { + var folderToDelete = await parentFolder.EnsureFolderAsync("sub1"); + await folderToDelete.DeleteAsync(); + } + } + } + #endregion [TestMethod] @@ -684,7 +739,7 @@ public async Task DeleteFolderTest() // Test if the folder is still found IFolder folderToFind = await QueryableExtensions.FirstOrDefaultAsync(context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder.Folders, - ct => ct.Name == "TO DELETE FOLDER").ConfigureAwait(false); + ct => ct.Name == "TO DELETE FOLDER").ConfigureAwait(false); Assert.IsNull(folderToFind); } @@ -1118,7 +1173,7 @@ public async Task RecycleFolderTest() Assert.AreNotEqual(Guid.Empty, recycleBinId); // Test if the folder is still found - IFolder folderToFind = await QueryableExtensions.FirstOrDefaultAsync(context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder.Folders, ct => ct.Name == "TO RECYCLE FOLDER").ConfigureAwait(false); + IFolder folderToFind = await QueryableExtensions.FirstOrDefaultAsync(context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder.Folders, ct => ct.Name == "TO RECYCLE FOLDER").ConfigureAwait(false); Assert.IsNull(folderToFind); @@ -1145,7 +1200,7 @@ public async Task RecycleFolderCurrentBatchAsyncTest() Assert.AreNotEqual(Guid.Empty, batchRecycle.Result.Value); // Test if the folder is still found - IFolder folderToFind = await QueryableExtensions.FirstOrDefaultAsync(context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder.Folders, ct => ct.Name == "TO RECYCLE FOLDER").ConfigureAwait(false); + IFolder folderToFind = await QueryableExtensions.FirstOrDefaultAsync(context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder.Folders, ct => ct.Name == "TO RECYCLE FOLDER").ConfigureAwait(false); Assert.IsNull(folderToFind); @@ -1170,7 +1225,7 @@ public async Task RecycleFolderCurrentBatchTest() await context.ExecuteAsync(); // Test if the folder is still found - IFolder folderToFind = await QueryableExtensions.FirstOrDefaultAsync(context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder.Folders, ct => ct.Name == "TO RECYCLE FOLDER").ConfigureAwait(false); + IFolder folderToFind = await QueryableExtensions.FirstOrDefaultAsync(context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder.Folders, ct => ct.Name == "TO RECYCLE FOLDER").ConfigureAwait(false); Assert.IsNull(folderToFind); @@ -1194,7 +1249,7 @@ public async Task RecycleFolderBatchAsyncTest() await context.ExecuteAsync(batch); // Test if the folder is still found - IFolder folderToFind = await QueryableExtensions.FirstOrDefaultAsync(context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder.Folders, ct => ct.Name == "TO RECYCLE FOLDER").ConfigureAwait(false); + IFolder folderToFind = await QueryableExtensions.FirstOrDefaultAsync(context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder.Folders, ct => ct.Name == "TO RECYCLE FOLDER").ConfigureAwait(false); Assert.IsNull(folderToFind); @@ -1218,7 +1273,7 @@ public async Task RecycleFolderBatchTest() await context.ExecuteAsync(batch); // Test if the folder is still found - IFolder folderToFind = await QueryableExtensions.FirstOrDefaultAsync(context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder.Folders, ct => ct.Name == "TO RECYCLE FOLDER").ConfigureAwait(false); + IFolder folderToFind = await QueryableExtensions.FirstOrDefaultAsync(context.Web.Lists.GetByTitle("Documents", p => p.RootFolder).RootFolder.Folders, ct => ct.Name == "TO RECYCLE FOLDER").ConfigureAwait(false); Assert.IsNull(folderToFind); @@ -1238,7 +1293,7 @@ public async Task RecycleNestedFolderTest() var addedFolder = await parentFolder.EnsureFolderAsync("sub1/sub2"); Assert.IsNotNull(addedFolder); Assert.AreEqual("sub2", addedFolder.Name); - + IFolder folder1ToDelete = await context.Web.GetFolderByServerRelativeUrlAsync(addedFolder.ServerRelativeUrl); Guid recycleBin1Id = folder1ToDelete.Recycle(); Assert.AreNotEqual(Guid.Empty, recycleBin1Id); @@ -1252,13 +1307,13 @@ public async Task RecycleNestedFolderTest() var error = e.Error as SharePointRestError; Assert.AreEqual(404, error.HttpResponseCode); } - + await CleanupMockFolderFromRecycleBin(context, recycleBin1Id); - + var folderToDelete = await parentFolder.EnsureFolderAsync("sub1"); Assert.IsNotNull(folderToDelete); Assert.AreEqual("sub1", folderToDelete.Name); - + IFolder folder2ToDelete = await context.Web.GetFolderByServerRelativeUrlAsync(folderToDelete.ServerRelativeUrl); Guid recycleBin2Id = folder2ToDelete.Recycle(); Assert.AreNotEqual(Guid.Empty, recycleBin2Id); @@ -1272,11 +1327,11 @@ public async Task RecycleNestedFolderTest() var error = e.Error as SharePointRestError; Assert.AreEqual(404, error.HttpResponseCode); } - + await CleanupMockFolderFromRecycleBin(context, recycleBin2Id); } } - + #endregion [TestMethod] From 80d1c7e3be791f3780d3570fcfaaa24e49c799bf Mon Sep 17 00:00:00 2001 From: Aram Barzanjeh Date: Wed, 27 May 2026 11:15:17 +0200 Subject: [PATCH 3/8] All FolderTests including new ones executed online and new responses generated. --- src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs | 1 + .../AddFolderFromWebFolderTest-0-00000.response.json | 2 +- .../AddFolderFromWebFolderTest-0-00001.response.json | 2 +- .../AddFolderFromWebFolderTest-0-00002.response.json | 2 +- .../AddFolderFromWebFolderTest-0-00003.response.json | 2 +- .../AddFolderFromWebFolderTest-0-00004.response.json | 2 +- .../FoldersTests/AddListFolderAsyncTest-0-00000.response.json | 2 +- .../FoldersTests/AddListFolderAsyncTest-0-00001.response.json | 2 +- .../FoldersTests/AddListFolderAsyncTest-0-00002.response.json | 2 +- .../FoldersTests/AddListFolderAsyncTest-0-00003.response.json | 2 +- .../FoldersTests/AddListFolderAsyncTest-0-00004.response.json | 2 +- .../AddListFolderBatchAsyncTest-0-00000.response.json | 2 +- .../AddListFolderBatchAsyncTest-0-00001.response.json | 2 +- .../AddListFolderBatchAsyncTest-0-00002.response.json | 2 +- .../AddListFolderBatchAsyncTest-0-00003.response.json | 2 +- .../AddListFolderBatchAsyncTest-0-00004.response.json | 2 +- .../FoldersTests/AddListFolderBatchTest-0-00000.response.json | 2 +- .../FoldersTests/AddListFolderBatchTest-0-00001.response.json | 2 +- .../FoldersTests/AddListFolderBatchTest-0-00002.response.json | 2 +- .../FoldersTests/AddListFolderBatchTest-0-00003.response.json | 2 +- .../FoldersTests/AddListFolderBatchTest-0-00004.response.json | 2 +- .../AddListFolderExceptionTest-0-00000.response.json | 2 +- .../AddListFolderExceptionTest-0-00001.response.json | 2 +- .../AddListFolderExceptionTest-0-00002.response.json | 2 +- .../AddListFolderSpecificBatchAsyncTest-0-00000.response.json | 2 +- .../AddListFolderSpecificBatchAsyncTest-0-00001.response.json | 2 +- .../AddListFolderSpecificBatchAsyncTest-0-00002.response.json | 2 +- .../AddListFolderSpecificBatchAsyncTest-0-00003.response.json | 2 +- .../AddListFolderSpecificBatchAsyncTest-0-00004.response.json | 2 +- .../AddListFolderSpecificBatchTest-0-00000.response.json | 2 +- .../AddListFolderSpecificBatchTest-0-00001.response.json | 2 +- .../AddListFolderSpecificBatchTest-0-00002.response.json | 2 +- .../AddListFolderSpecificBatchTest-0-00003.response.json | 2 +- .../AddListFolderSpecificBatchTest-0-00004.response.json | 2 +- .../FoldersTests/AddListFolderTest-0-00000.response.json | 2 +- .../FoldersTests/AddListFolderTest-0-00001.response.json | 2 +- .../FoldersTests/AddListFolderTest-0-00002.response.json | 2 +- .../FoldersTests/AddListFolderTest-0-00003.response.json | 2 +- .../FoldersTests/AddListFolderTest-0-00004.response.json | 2 +- .../AddListSubFolderAsyncTest-0-00000.response.json | 2 +- .../AddListSubFolderAsyncTest-0-00001.response.json | 2 +- .../AddListSubFolderAsyncTest-0-00002.response.json | 2 +- .../AddListSubFolderAsyncTest-0-00003.response.json | 2 +- .../AddListSubFolderAsyncTest-0-00004.response.json | 2 +- .../AddListSubFolderBatchAsyncTest-0-00000.response.json | 2 +- .../AddListSubFolderBatchAsyncTest-0-00001.response.json | 2 +- .../AddListSubFolderBatchAsyncTest-0-00002.response.json | 2 +- .../AddListSubFolderBatchAsyncTest-0-00003.response.json | 2 +- .../AddListSubFolderBatchAsyncTest-0-00004.response.json | 2 +- .../AddListSubFolderBatchTest-0-00000.response.json | 2 +- .../AddListSubFolderBatchTest-0-00001.response.json | 2 +- .../AddListSubFolderBatchTest-0-00002.response.json | 2 +- .../AddListSubFolderBatchTest-0-00003.response.json | 2 +- .../AddListSubFolderBatchTest-0-00004.response.json | 2 +- ...AddListSubFolderSpecificBatchAsyncTest-0-00000.response.json | 2 +- ...AddListSubFolderSpecificBatchAsyncTest-0-00001.response.json | 2 +- ...AddListSubFolderSpecificBatchAsyncTest-0-00002.response.json | 2 +- ...AddListSubFolderSpecificBatchAsyncTest-0-00003.response.json | 2 +- ...AddListSubFolderSpecificBatchAsyncTest-0-00004.response.json | 2 +- .../AddListSubFolderSpecificBatchTest-0-00000.response.json | 2 +- .../AddListSubFolderSpecificBatchTest-0-00001.response.json | 2 +- .../AddListSubFolderSpecificBatchTest-0-00002.response.json | 2 +- .../AddListSubFolderSpecificBatchTest-0-00003.response.json | 2 +- .../AddListSubFolderSpecificBatchTest-0-00004.response.json | 2 +- .../FoldersTests/AddListSubFolderTest-0-00000.response.json | 2 +- .../FoldersTests/AddListSubFolderTest-0-00001.response.json | 2 +- .../FoldersTests/AddListSubFolderTest-0-00002.response.json | 2 +- .../FoldersTests/AddListSubFolderTest-0-00003.response.json | 2 +- .../FoldersTests/AddListSubFolderTest-0-00004.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-0-00000.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-0-00001.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-0-00002.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-0-00003.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-1-00000.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-1-00001.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-1-00002.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-1-00003.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-1-00004.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-1-00005.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-2-00000.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-2-00001.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-2-00002.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-2-00003.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-0-00000.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-0-00001.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-0-00002.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-0-00003.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-1-00000.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-1-00001.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-1-00002.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-1-00003.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-1-00004.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-2-00000.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-2-00001.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-2-00002.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-2-00003.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-0-00000.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-0-00001.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-0-00002.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-0-00003.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-1-00000.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-1-00001.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-1-00002.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-1-00003.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-1-00004.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-2-00000.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-2-00001.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-2-00002.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-2-00003.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-0-00000.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-0-00001.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-0-00002.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-0-00003.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-1-00000.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-1-00001.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-1-00002.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-1-00003.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-1-00004.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-2-00000.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-2-00001.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-2-00002.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-2-00003.response.json | 2 +- .../CopyFolderWithOptionsTest-0-00000.response.json | 2 +- .../CopyFolderWithOptionsTest-0-00001.response.json | 2 +- .../CopyFolderWithOptionsTest-0-00002.response.json | 2 +- .../CopyFolderWithOptionsTest-0-00003.response.json | 2 +- .../CopyFolderWithOptionsTest-1-00000.response.json | 2 +- .../CopyFolderWithOptionsTest-1-00001.response.json | 2 +- .../CopyFolderWithOptionsTest-1-00002.response.json | 2 +- .../CopyFolderWithOptionsTest-1-00003.response.json | 2 +- .../CopyFolderWithOptionsTest-1-00004.response.json | 2 +- .../CopyFolderWithOptionsTest-1-00005.response.json | 2 +- .../CopyFolderWithOptionsTest-2-00000.response.json | 2 +- .../CopyFolderWithOptionsTest-2-00001.response.json | 2 +- .../CopyFolderWithOptionsTest-2-00002.response.json | 2 +- .../CopyFolderWithOptionsTest-2-00003.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-0-00000.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-0-00001.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-0-00002.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-0-00003.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-1-00000.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-1-00001.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-1-00002.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-1-00003.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-1-00004.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-2-00000.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-2-00001.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-2-00002.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-2-00003.response.json | 2 +- .../CopyFolderWithoutOptionTest-0-00000.response.json | 2 +- .../CopyFolderWithoutOptionTest-0-00001.response.json | 2 +- .../CopyFolderWithoutOptionTest-0-00002.response.json | 2 +- .../CopyFolderWithoutOptionTest-0-00003.response.json | 2 +- .../CopyFolderWithoutOptionTest-1-00000.response.json | 2 +- .../CopyFolderWithoutOptionTest-1-00001.response.json | 2 +- .../CopyFolderWithoutOptionTest-1-00002.response.json | 2 +- .../CopyFolderWithoutOptionTest-1-00003.response.json | 2 +- .../CopyFolderWithoutOptionTest-1-00004.response.json | 2 +- .../CopyFolderWithoutOptionTest-2-00000.response.json | 2 +- .../CopyFolderWithoutOptionTest-2-00001.response.json | 2 +- .../CopyFolderWithoutOptionTest-2-00002.response.json | 2 +- .../CopyFolderWithoutOptionTest-2-00003.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00000.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00001.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00002.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00003.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00004.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00005.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00006.response.json | 2 +- .../EnsureListFolderConcurrentTest-0-00000.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00001.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00002.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00003.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00004.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00005.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00006.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00007.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00008.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00009.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00010.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00011.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00012.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00013.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00014.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00015.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00016.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00017.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00018.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00019.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00020.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00021.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00022.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00023.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00024.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00025.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00026.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00027.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00028.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00029.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00030.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00031.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00032.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00033.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00034.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00035.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00036.response.json | 1 + .../FoldersTests/EnsureListFolderDeepTest-0-00000.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00001.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00002.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00003.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00004.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00005.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00006.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00007.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00008.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00009.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00010.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00011.response.json | 1 - .../FoldersTests/EnsureListFolderDeepTest-0-00012.response.json | 1 - .../EnsureListFolderIdempotentTest-0-00000.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00001.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00002.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00003.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00004.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00005.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00006.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00007.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00008.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00009.response.json | 1 + .../EnsureListFolderInExistingHiarchyTest-0-00000.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00001.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00002.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00003.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00004.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00005.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00006.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00007.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00008.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00009.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00010.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00011.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00012.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00013.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00014.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00015.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00016.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00017.response.json | 1 - .../EnsureListFolderInExistingHiarchyTest-0-00018.response.json | 1 - .../EnsureListFolderInExistingHiarchyTest-0-00019.response.json | 1 - .../EnsureListFolderSingleLevelTest-0-00000.response.json | 2 +- .../EnsureListFolderSingleLevelTest-0-00001.response.json | 2 +- .../EnsureListFolderSingleLevelTest-0-00002.response.json | 2 +- .../EnsureListFolderSingleLevelTest-0-00003.response.json | 2 +- .../EnsureListFolderSingleLevelTest-0-00004.response.json | 2 +- .../EnsureListFolderSingleLevelTest-0-00005.response.json | 2 +- .../EnsureListFolderSingleLevelTest-0-00006.response.json | 1 - .../FoldersTests/EnsureListFolderTest-0-00000.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00001.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00002.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00003.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00004.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00005.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00006.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00007.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00008.response.json | 1 - .../FoldersTests/EnsureListFolderTest-0-00009.response.json | 1 - .../FoldersTests/GetFolderByIdBatchTest-0-00000.response.json | 2 +- .../FoldersTests/GetFolderByIdBatchTest-0-00001.response.json | 2 +- .../FoldersTests/GetFolderByIdBatchTest-0-00002.response.json | 2 +- .../FoldersTests/GetFolderByIdBatchTest-0-00003.response.json | 2 +- .../FoldersTests/GetFolderByIdTest-0-00000.response.json | 2 +- .../FoldersTests/GetFolderByIdTest-0-00001.response.json | 2 +- .../FoldersTests/GetFolderByIdTest-0-00002.response.json | 2 +- .../FoldersTests/GetFolderByIdTest-0-00003.response.json | 2 +- ...tentFolder_ShouldThrowCorrectException-0-00000.response.json | 2 +- ...tentFolder_ShouldThrowCorrectException-0-00001.response.json | 2 +- ...tentFolder_ShouldThrowCorrectException-0-00002.response.json | 2 +- .../GetFolderByServerRelativeUrlBatchTest-0-00000.response.json | 2 +- .../GetFolderByServerRelativeUrlBatchTest-0-00001.response.json | 2 +- .../GetFolderByServerRelativeUrlBatchTest-0-00002.response.json | 2 +- .../GetFolderByServerRelativeUrlTest-0-00000.response.json | 2 +- .../GetFolderByServerRelativeUrlTest-0-00001.response.json | 2 +- .../GetFolderByServerRelativeUrlTest-0-00002.response.json | 2 +- .../GetFolderByServerRelativeUrlTest-0-00003.response.json | 2 +- ...tentFolder_ShouldThrowCorrectException-0-00000.response.json | 2 +- ...tentFolder_ShouldThrowCorrectException-0-00001.response.json | 2 +- ...tentFolder_ShouldThrowCorrectException-0-00002.response.json | 2 +- .../GetFolderChangesAsyncTest-0-00000.response.json | 2 +- .../GetFolderChangesAsyncTest-0-00001.response.json | 2 +- .../GetFolderChangesAsyncTest-0-00002.response.json | 2 +- .../GetFolderChangesAsyncTest-0-00003.response.json | 2 +- .../FoldersTests/GetFolderChangesTest-0-00000.response.json | 2 +- .../FoldersTests/GetFolderChangesTest-0-00001.response.json | 2 +- .../FoldersTests/GetFolderChangesTest-0-00002.response.json | 2 +- .../FoldersTests/GetFolderChangesTest-0-00003.response.json | 2 +- .../FoldersTests/GetFolderChangesTest-0-00004.response.json | 2 +- .../FoldersTests/GetFolderPropertiesTest-0-00000.response.json | 2 +- .../FoldersTests/GetFolderPropertiesTest-0-00001.response.json | 2 +- .../FoldersTests/GetFolderPropertiesTest-0-00002.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00000.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00001.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00002.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00003.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00004.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00005.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00006.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00000.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00001.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00002.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00003.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00004.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00005.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00006.response.json | 2 +- .../FoldersTests/GetListRootFolderTest-0-00000.response.json | 2 +- .../FoldersTests/GetListRootFolderTest-0-00001.response.json | 2 +- .../FoldersTests/GetListRootFolderTest-0-00002.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00000.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00001.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00002.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00003.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00004.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00005.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00006.response.json | 2 +- .../FoldersTests/GetWebFolderDetailsTest-0-00000.response.json | 2 +- .../FoldersTests/GetWebFolderDetailsTest-0-00001.response.json | 2 +- .../FoldersTests/GetWebFolderDetailsTest-0-00002.response.json | 2 +- .../FoldersTests/GetWebFolderTest-0-00000.response.json | 2 +- .../FoldersTests/GetWebFolderTest-0-00001.response.json | 2 +- .../FoldersTests/GetWebFolderTest-0-00002.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-0-00000.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-0-00001.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-0-00002.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-0-00003.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-1-00000.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-1-00001.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-1-00002.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-1-00003.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-1-00004.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-2-00000.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-2-00001.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-2-00002.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-2-00003.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-0-00000.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-0-00001.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-0-00002.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-0-00003.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-1-00000.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-1-00001.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-1-00002.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-1-00003.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-1-00004.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-1-00005.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-2-00000.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-2-00001.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-2-00002.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-2-00003.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-0-00000.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-0-00001.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-0-00002.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-0-00003.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-1-00000.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-1-00001.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-1-00002.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-1-00003.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-1-00004.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-2-00000.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-2-00001.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-2-00002.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-2-00003.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-0-00000.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-0-00001.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-0-00002.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-0-00003.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-1-00000.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-1-00001.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-1-00002.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-1-00003.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-1-00004.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-2-00000.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-2-00001.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-2-00002.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-2-00003.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-0-00000.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-0-00001.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-0-00002.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-0-00003.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-1-00000.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-1-00001.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-1-00002.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-1-00003.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-1-00004.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-2-00000.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-2-00001.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-2-00002.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-2-00003.response.json | 2 +- .../MoveFolderWithOptionsTest-0-00000.response.json | 2 +- .../MoveFolderWithOptionsTest-0-00001.response.json | 2 +- .../MoveFolderWithOptionsTest-0-00002.response.json | 2 +- .../MoveFolderWithOptionsTest-0-00003.response.json | 2 +- .../MoveFolderWithOptionsTest-1-00000.response.json | 2 +- .../MoveFolderWithOptionsTest-1-00001.response.json | 2 +- .../MoveFolderWithOptionsTest-1-00002.response.json | 2 +- .../MoveFolderWithOptionsTest-1-00003.response.json | 2 +- .../MoveFolderWithOptionsTest-1-00004.response.json | 2 +- .../MoveFolderWithOptionsTest-1-00005.response.json | 2 +- .../MoveFolderWithOptionsTest-2-00000.response.json | 2 +- .../MoveFolderWithOptionsTest-2-00001.response.json | 2 +- .../MoveFolderWithOptionsTest-2-00002.response.json | 2 +- .../MoveFolderWithOptionsTest-2-00003.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-0-00000.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-0-00001.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-0-00002.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-0-00003.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-1-00000.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-1-00001.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-1-00002.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-1-00003.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-1-00004.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-2-00000.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-2-00001.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-2-00002.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-2-00003.response.json | 2 +- .../MoveFolderWithoutOptionTest-0-00000.response.json | 2 +- .../MoveFolderWithoutOptionTest-0-00001.response.json | 2 +- .../MoveFolderWithoutOptionTest-0-00002.response.json | 2 +- .../MoveFolderWithoutOptionTest-0-00003.response.json | 2 +- .../MoveFolderWithoutOptionTest-1-00000.response.json | 2 +- .../MoveFolderWithoutOptionTest-1-00001.response.json | 2 +- .../MoveFolderWithoutOptionTest-1-00002.response.json | 2 +- .../MoveFolderWithoutOptionTest-1-00003.response.json | 2 +- .../MoveFolderWithoutOptionTest-1-00004.response.json | 2 +- .../MoveFolderWithoutOptionTest-2-00000.response.json | 2 +- .../MoveFolderWithoutOptionTest-2-00001.response.json | 2 +- .../MoveFolderWithoutOptionTest-2-00002.response.json | 2 +- .../MoveFolderWithoutOptionTest-2-00003.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-0-00000.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-0-00001.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-0-00002.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-0-00003.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-1-00000.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-1-00001.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-1-00002.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-1-00003.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-2-00000.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-2-00001.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-2-00002.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-2-00003.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-0-00000.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-0-00001.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-0-00002.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-0-00003.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00000.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00001.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00002.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00003.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00004.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00005.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00006.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00007.response.json | 2 +- .../RecycleFolderBatchAsyncTest-0-00000.response.json | 2 +- .../RecycleFolderBatchAsyncTest-0-00001.response.json | 2 +- .../RecycleFolderBatchAsyncTest-0-00002.response.json | 2 +- .../RecycleFolderBatchAsyncTest-0-00003.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00000.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00001.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00002.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00003.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00004.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00005.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00006.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00007.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-0-00000.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-0-00001.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-0-00002.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-0-00003.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00000.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00001.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00002.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00003.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00004.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00005.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00006.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00007.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-0-00000.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-0-00001.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-0-00002.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-0-00003.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00000.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00001.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00002.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00003.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00004.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00005.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00006.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00007.response.json | 2 +- .../RecycleFolderCurrentBatchTest-0-00000.response.json | 2 +- .../RecycleFolderCurrentBatchTest-0-00001.response.json | 2 +- .../RecycleFolderCurrentBatchTest-0-00002.response.json | 2 +- .../RecycleFolderCurrentBatchTest-0-00003.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00000.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00001.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00002.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00003.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00004.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00005.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00006.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00007.response.json | 2 +- .../FoldersTests/RecycleFolderTest-0-00000.response.json | 2 +- .../FoldersTests/RecycleFolderTest-0-00001.response.json | 2 +- .../FoldersTests/RecycleFolderTest-0-00002.response.json | 2 +- .../FoldersTests/RecycleFolderTest-0-00003.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00000.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00001.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00002.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00003.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00004.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00005.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00006.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00007.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00000.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00001.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00002.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00003.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00004.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00005.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00006.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00007.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00008.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00009.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00010.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00011.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00012.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00013.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00014.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00015.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00016.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00000.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00001.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00002.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00003.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00004.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00005.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00006.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00007.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-0-00000.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-0-00001.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-0-00002.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-0-00003.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-2-00000.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-2-00001.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-2-00002.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-2-00003.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-2-00004.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-3-00000.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-3-00001.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-3-00002.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-3-00003.response.json | 2 +- .../FoldersTests/UpdateFolderTest-0-00000.response.json | 2 +- .../FoldersTests/UpdateFolderTest-0-00001.response.json | 2 +- .../FoldersTests/UpdateFolderTest-0-00002.response.json | 2 +- .../FoldersTests/UpdateFolderTest-0-00003.response.json | 2 +- .../FoldersTests/UpdateFolderTest-0-00004.response.json | 2 +- .../FoldersTests/UpdateFolderTest-0-00005.response.json | 2 +- 563 files changed, 555 insertions(+), 515 deletions(-) create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00000.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00001.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00002.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00003.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00004.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00005.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00006.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00007.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00008.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00009.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00010.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00011.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00012.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00013.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00014.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00015.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00016.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00017.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00018.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00019.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00020.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00021.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00022.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00023.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00024.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00025.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00026.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00027.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00028.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00029.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00030.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00031.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00032.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00033.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00034.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00035.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00036.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00011.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00012.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00000.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00001.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00002.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00003.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00004.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00005.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00006.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00007.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00008.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00009.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00017.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00018.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00019.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00006.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00008.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00009.response.json diff --git a/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs b/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs index b41dfc1399..8195c6c47c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs +++ b/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs @@ -644,6 +644,7 @@ public async Task EnsureListFolderConcurrentTest() // This test exercises the race condition handling in EnsureFolderAsync: // multiple concurrent calls targeting the same folder path must all succeed // even when one of them loses the create race and gets an "already exists" error. + //TestCommon.Instance.Mocking = false; using (var context = await TestCommon.Instance.GetContextAsync(TestCommon.TestSite)) { diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00000.response.json index 8a4e95d232..4d8e00e929 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"67e2d3a0-f0f5-7000-310e-486d64a665e3","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbad17a2-e0d2-1001-48eb-758d556dae29","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00001.response.json index 25b143047f..0ee205458f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"67e2d3a0-c0fd-7000-310e-43e6750b6760","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbad17a2-80de-1001-1a81-3e61f4a8eb4e","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00002.response.json index 0d649d2cd8..5d109316b9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-9003-7000-310e-4ce93b2d99e9","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-17T17:12:32Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbad17a2-b0e6-1001-48eb-783d506192de","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T08:59:29Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00003.response.json index 76a73389d2..47c4f966b9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-7009-7000-310e-44c743fec8dd","SPClientServiceRequestDuration":"81","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u0022afc87d7d-f7f6-4d4e-b1d7-4304c0bacdb4\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbad17a2-20ef-1001-4178-0fd358b45370","SPClientServiceRequestDuration":"84","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u002294c7d362-a589-4b74-9498-dc73958e1de0\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00004.response.json index 31ac903b37..60d5d48638 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-3014-7000-310e-47baafbf1dea","SPClientServiceRequestDuration":"368","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbad17a2-20fb-1001-48eb-7cbc861fe372","SPClientServiceRequestDuration":"167","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00000.response.json index 549c673b9b..1502ce57c7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-702e-7000-3703-99fdc2997fa0","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-200c-1001-1a81-360bcba89981","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00001.response.json index 3d5404a8f5..ce34cc35ae 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-7033-7000-310e-4c659389147f","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-e012-1001-4178-037f32370bf4","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00002.response.json index c0372ac17c..eef4c2e049 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-3038-7000-3703-994de532b488","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-07-10T16:50:49Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-2019-1001-1a81-3f1241f24c9a","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:33Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00003.response.json index 7768c27463..bc58b2f65c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-103c-7000-3703-938bc3702197","SPClientServiceRequestDuration":"93","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u00226e0f192d-aa96-453e-bbd5-2df3c2d490e9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-301f-1001-48eb-71b06155932f","SPClientServiceRequestDuration":"90","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:00Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:00Z\u0022,\u0022UniqueId\u0022:\u0022dc6bd7e6-b335-4f0f-b9f6-ab98d6ec512d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00004.response.json index 7988c09f4a..b8c7bbb262 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-0045-7000-310e-452aa1ea4df0","SPClientServiceRequestDuration":"301","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-8029-1001-4178-04f2f2344b0e","SPClientServiceRequestDuration":"85","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00000.response.json index 43ae3ef343..6f9a99afd7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-805b-7000-310e-48e87ce1aed0","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-3033-1001-48eb-7c8b7d71a01c","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00001.response.json index 5b7988e270..88f853fc73 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-805f-7000-3e95-51f0d8710079","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-9038-1001-1a81-3abc41079595","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00002.response.json index 98c380232f..601f98af5b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-4065-7000-310e-437e9f52e258","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:58Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-503e-1001-4178-050f38723744","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:00Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00003.response.json index 579311d4b3..661064c68b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-4069-7000-3e95-5a4aa9fd20e4","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_6f64717b-b0e5-4694-aecd-06f069ac92be\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:14:58Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:58Z\u0022,\u0022UniqueId\u0022:\u00221aba34ab-3eeb-48b6-a9a7-a0d098b3efb1\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_6f64717b-b0e5-4694-aecd-06f069ac92be--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-d044-1001-48eb-7936e0064c91","SPClientServiceRequestDuration":"71","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_5bc456f9-b71b-421b-8384-f91cd05d6c0c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:00Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:00Z\u0022,\u0022UniqueId\u0022:\u0022ab251e87-5009-4294-8806-b0d2efa201da\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_5bc456f9-b71b-421b-8384-f91cd05d6c0c--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00004.response.json index ebaac13844..028c0a2984 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-0070-7000-310e-419779715e44","SPClientServiceRequestDuration":"126","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-e04d-1001-1a81-3b479e3a1655","SPClientServiceRequestDuration":"95","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00000.response.json index 4a4b1cd4d5..e2abcb9d60 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-d07b-7000-3e95-54cfe8f479b2","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-6058-1001-48eb-70c5f18064cb","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00001.response.json index ff4eb49e7a..a8ebb173cc 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-9080-7000-310e-44f8ac62c20c","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-3060-1001-4178-05c018e6cd6b","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00002.response.json index 1c86a1e4d7..a117aa58bc 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-a084-7000-3e95-5f7f12e4d184","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:58Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-d065-1001-48eb-7de27a695d56","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:01Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00003.response.json index 186cef9c83..031fd97c4a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-6089-7000-310e-4b008c224af0","SPClientServiceRequestDuration":"102","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_334d441f-4096-4e3f-85ad-24e094b441ba\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:14:59Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:59Z\u0022,\u0022UniqueId\u0022:\u0022b641e5b3-8a64-42aa-8f3e-d6e5f9cc889d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_334d441f-4096-4e3f-85ad-24e094b441ba--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-8071-1001-1a81-393b4c30582a","SPClientServiceRequestDuration":"156","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_1b1f5dab-c13d-4228-959c-7eb0c785f1a0\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:01Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:01Z\u0022,\u0022UniqueId\u0022:\u00229be4ac19-0a2c-4389-a6ec-9e6277dfa9e4\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_1b1f5dab-c13d-4228-959c-7eb0c785f1a0--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00004.response.json index 7529850c25..3649cd4cee 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-4093-7000-3e95-5256489ef707","SPClientServiceRequestDuration":"185","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-907f-1001-4178-0235b569e9fa","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00000.response.json index ad0949ba7c..a165b78d94 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-c0a2-7000-310e-497b1bec0f0a","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-f089-1001-48eb-7da018e493fc","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00001.response.json index 06fdcc29d5..5f30f9719a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-c0a6-7000-3e95-50158e1f5a36","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-4090-1001-1a81-3a8561014da3","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00002.response.json index 74ed1dcbac..0d1d27e3d7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-90aa-7000-310e-491afba8a979","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:59Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-c095-1001-48eb-7e4344f79c6b","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:01Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00000.response.json index df180a9e27..6f15946d5c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-90af-7000-3e95-5160afef6b55","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-809c-1001-4178-062a570a629c","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00001.response.json index c5d1948d83..a6ff628a42 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-60b3-7000-310e-42a0fb3f5d89","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-b0a1-1001-48eb-7d14d18d9fe4","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00002.response.json index acdb1761c6..5d78b031c4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-60b7-7000-3e95-51429eeca79a","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:59Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-70a7-1001-1a81-323344f2d9ff","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:01Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00003.response.json index df2475a93a..055b5eba46 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-30bb-7000-310e-44dc41e4950a","SPClientServiceRequestDuration":"39","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_54f6c233-e23e-46fc-ba4b-4f6d4e2d0b94\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:14:59Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:59Z\u0022,\u0022UniqueId\u0022:\u00223f55316b-eeb7-4c4e-b531-dafa3d232976\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_54f6c233-e23e-46fc-ba4b-4f6d4e2d0b94--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-c0ad-1001-4178-065f089b3a7a","SPClientServiceRequestDuration":"106","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_26ffa029-c3d8-4c69-9cee-746e16a68175\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:02Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:02Z\u0022,\u0022UniqueId\u0022:\u002219a08582-70a2-43c6-9ac2-2dfccca2bb8e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_26ffa029-c3d8-4c69-9cee-746e16a68175--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00004.response.json index 42b5ac0e6e..7055014e40 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-10c1-7000-310e-4f6a1cde870d","SPClientServiceRequestDuration":"100","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-c0b8-1001-48eb-7f1afbabfe81","SPClientServiceRequestDuration":"88","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00000.response.json index d7badd04f4..c91f6ae804 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-d0ca-7000-310e-4224e7486eb5","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-b0c2-1001-1a81-366335bdf22b","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00001.response.json index d8818065f5..38d40fbed2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-c0ce-7000-310e-4092e3f07557","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-80c8-1001-48eb-71b5a6eb21f7","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00002.response.json index 5e96053f0f..30df2e6259 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-a0d2-7000-310e-4667851ba659","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:00Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-a0cd-1001-4178-04f525f12b7e","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:02Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00003.response.json index ec98610b0c..8b80bd8c4c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-90d6-7000-310e-41202d12d188","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_bde12d8c-2035-40aa-a12e-2a6e7ddd6e85\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:00Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:00Z\u0022,\u0022UniqueId\u0022:\u0022e68ffdcc-fafb-492b-8e61-5c5de673230b\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_bde12d8c-2035-40aa-a12e-2a6e7ddd6e85--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-c0d4-1001-48eb-71ce1e879076","SPClientServiceRequestDuration":"76","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_41333062-f177-456b-bb37-4dbe65635596\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:03Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:03Z\u0022,\u0022UniqueId\u0022:\u0022dfa34e8b-fdf8-4506-b0ac-0bb6abb48d98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_41333062-f177-456b-bb37-4dbe65635596--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00004.response.json index 68b2451bfb..e39b940cc5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-60dc-7000-310e-42b40f43864e","SPClientServiceRequestDuration":"103","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-20de-1001-1a81-38df504e5f7d","SPClientServiceRequestDuration":"91","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00000.response.json index eb1eb924cd..49f13fb4ad 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-00e6-7000-3703-93011ad27cc8","SPClientServiceRequestDuration":"7","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-90e8-1001-4178-03bdf674daee","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00001.response.json index 92a08f583c..0488213cea 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-10eb-7000-310e-4cf89b9305a6","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-c0ed-1001-48eb-7fcbe83edff9","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00002.response.json index 555f914442..315a3dc41f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-d0ee-7000-3703-96077dc47c54","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:00Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-90f4-1001-1a81-3f7898f98d43","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:03Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00003.response.json index c76a492b00..ca78930ed0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-d0f3-7000-310e-49d05db6522d","SPClientServiceRequestDuration":"41","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:00Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:00Z\u0022,\u0022UniqueId\u0022:\u00225d0b8ebe-082d-4084-a20f-b9b5af2985cc\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-b0fa-1001-48eb-7fd78e18a4e3","SPClientServiceRequestDuration":"74","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:03Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:03Z\u0022,\u0022UniqueId\u0022:\u002276478f74-441c-4ed3-bf25-0cbc176858a9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00004.response.json index 2c1b5fd6a9..405e51e33a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-90f9-7000-3703-91695afb3490","SPClientServiceRequestDuration":"152","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-1004-1001-4178-09c0d8c38496","SPClientServiceRequestDuration":"159","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00000.response.json index 4288bc52f4..6aba855739 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-6006-7000-310e-4b19883c44c2","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-3014-1001-48eb-710a8ba395b3","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00001.response.json index 9cc2cb88e5..76b900067d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-200a-7000-3703-951222f1b983","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-3019-1001-1a81-34731c64eb2c","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00002.response.json index 2e76d2081f..26f770974c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-300e-7000-310e-46313bb2beb2","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:01Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-a01e-1001-4178-037bbd5230c4","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:04Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00003.response.json index 0133b6722a..693124c477 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-1013-7000-310e-48502568e011","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:01Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:01Z\u0022,\u0022UniqueId\u0022:\u0022163fa18d-bea7-489a-8a9a-6eb422ddfc48\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-c024-1001-48eb-7af3f80ddc0f","SPClientServiceRequestDuration":"76","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:04Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:04Z\u0022,\u0022UniqueId\u0022:\u00225ff23026-62ef-4744-8dad-32505780b910\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00004.response.json index 37d220bd81..12f07524c4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-f019-7000-310e-43a9d8a80dab","SPClientServiceRequestDuration":"115","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-d02d-1001-1a81-3fc0b78febc5","SPClientServiceRequestDuration":"88","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00000.response.json index 12cd36d78a..5c1d4fbfd1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-802a-7000-310e-428c949b9a39","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-b037-1001-48eb-74d54d6814a1","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00001.response.json index eecf9e9a6e..7bb16f2373 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-5033-7000-310e-48cbb76857fa","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-a03d-1001-4178-0feaa0b411f7","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00002.response.json index a63e58d5f4..b6f8731ecd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-3039-7000-310e-4f90a4c563a4","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:01Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-b042-1001-48eb-7b6ca5d1cedb","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:04Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00003.response.json index 06b3d957de..ad1c963c4a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-103e-7000-310e-49b4516411cc","SPClientServiceRequestDuration":"559","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_94ebd985-55be-453b-ba50-2773adeb6115\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:02Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:02Z\u0022,\u0022UniqueId\u0022:\u0022d0e66849-3796-40a6-9b3d-96d6f1a33b79\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_94ebd985-55be-453b-ba50-2773adeb6115--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-8048-1001-1a81-3360f8cdc4e7","SPClientServiceRequestDuration":"74","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_903a61c3-9594-41f8-9833-4b8d3141f79b\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:05Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:05Z\u0022,\u0022UniqueId\u0022:\u002274c1cc49-ece5-4e65-9a22-6132d9cb72de\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_903a61c3-9594-41f8-9833-4b8d3141f79b--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00004.response.json index dfc6704ef6..143fb6a608 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-2065-7000-310e-42cdd62bfc0a","SPClientServiceRequestDuration":"116","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-3051-1001-4178-0e3870d341bf","SPClientServiceRequestDuration":"99","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00000.response.json index 7ab2be9b67..8b1bec8968 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-506f-7000-3703-95902a7177aa","SPClientServiceRequestDuration":"6","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-805c-1001-48eb-74289af093cc","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00001.response.json index 2bf6029c12..e29d5d115e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-c074-7000-310e-4c5334cd62f9","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-1063-1001-1a81-3ad02b3943b7","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00002.response.json index 1047e1e6f0..f422b59df9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-2078-7000-3703-9af1566b5134","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:02Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-c069-1001-48eb-7d183394e77c","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:05Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00003.response.json index c7c3bdc09f..2b6bd2c04b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-907c-7000-310e-4d9fc41d6414","SPClientServiceRequestDuration":"48","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_881f8ac8-b72e-4afc-a2c8-903565905615\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022UniqueId\u0022:\u00225f882790-5936-4c53-8ede-d147c90775d0\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_881f8ac8-b72e-4afc-a2c8-903565905615--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-3070-1001-4178-07f0c048eea6","SPClientServiceRequestDuration":"91","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_22aa6635-6643-4c8e-a60c-a88553f39d08\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:05Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:05Z\u0022,\u0022UniqueId\u0022:\u00222e671988-6131-4db9-a0d9-6a9e23f5bd8c\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_22aa6635-6643-4c8e-a60c-a88553f39d08--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00004.response.json index a01be1d73b..d3965da3d7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-d082-7000-3703-9a9f0362d176","SPClientServiceRequestDuration":"163","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-307a-1001-48eb-7b592ddca451","SPClientServiceRequestDuration":"88","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00000.response.json index 85f86c0cf8..a329e9da59 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-1091-7000-310e-48d0835e3187","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-9083-1001-1a81-3236e21c973e","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00001.response.json index 3ce1da56c6..60ce84a398 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-6095-7000-3703-910eb680e593","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-5089-1001-4178-0f61edb89230","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00002.response.json index 9ab7e150b7..79a4d9e6c3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-e099-7000-310e-444f2eed8839","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-108f-1001-48eb-76b16cf9c637","SPClientServiceRequestDuration":"32","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:05Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00003.response.json index f716eea781..6aa62908ca 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-309d-7000-3703-9a02240b4f33","SPClientServiceRequestDuration":"49","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_573d3eb8-f426-4736-878b-ced0e850b42a\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022UniqueId\u0022:\u0022d0214e5d-00f4-4c06-bfd8-898e224028fb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_573d3eb8-f426-4736-878b-ced0e850b42a--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-5095-1001-1a81-36f982694aee","SPClientServiceRequestDuration":"85","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_14c35e4e-0fba-4d34-a967-607387e7eb3a\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:06Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:06Z\u0022,\u0022UniqueId\u0022:\u0022bf0ade7f-a8cf-4ff4-97f0-647de8091dc7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_14c35e4e-0fba-4d34-a967-607387e7eb3a--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00004.response.json index f2c1900611..d32f439ed4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-a0a3-7000-310e-4e82a5d26670","SPClientServiceRequestDuration":"110","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-009f-1001-48eb-7e08756bb7dc","SPClientServiceRequestDuration":"89","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00000.response.json index ac459288e3..0bcf500e97 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-60ae-7000-310e-4ac5a398d944","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-30a9-1001-4178-096324e092c5","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00001.response.json index a69ce8d921..60b68e2d11 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-40b2-7000-310e-48d09ac509a0","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-50ae-1001-48eb-7ce3a150dc5b","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00002.response.json index 58b42c9738..ee389cf76a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-30b5-7000-310e-4de9e589ac5e","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-60b3-1001-1a81-365bc701b3e8","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:06Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00003.response.json index 7bed50b4c2..c1d2409b45 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-10ba-7000-310e-49638fc7b020","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_0a61375c-e5df-41ae-848a-9ac77d396928\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022UniqueId\u0022:\u00222182b95a-6c8d-4619-bd53-de25f7343435\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_0a61375c-e5df-41ae-848a-9ac77d396928--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-d0b9-1001-4178-0a025a22dac4","SPClientServiceRequestDuration":"75","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_5b65811c-1a69-4553-a853-074bcebc560e\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:06Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:06Z\u0022,\u0022UniqueId\u0022:\u0022f2ede6ff-a062-4551-9432-0530cebe9e19\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_5b65811c-1a69-4553-a853-074bcebc560e--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00004.response.json index 1a179df890..956c3df176 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-f0bf-7000-310e-4e80018fea48","SPClientServiceRequestDuration":"102","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-f0c2-1001-48eb-72ffcee05d58","SPClientServiceRequestDuration":"88","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00000.response.json index efa6ae9a27..5116548d42 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-b0ca-7000-310e-4940c2af9a69","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-70cd-1001-1a81-3057a847b94a","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00001.response.json index 5f3af4eb84..f02bfe587c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-a0ce-7000-310e-4e2a665d8d85","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-80d2-1001-48eb-75f426f6710f","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00002.response.json index 2ccd1d5cda..c0ef487ac9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-80d2-7000-310e-437349fb77a4","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:04Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-40d8-1001-4178-0fb8b6513a87","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:06Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00003.response.json index 2e63099e42..99d3a9ae1b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-70d7-7000-310e-474a76bcb145","SPClientServiceRequestDuration":"46","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:04Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:04Z\u0022,\u0022UniqueId\u0022:\u0022931c2c6f-f820-4df6-94af-883c28fb4473\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-80de-1001-48eb-71bc9e3d04f7","SPClientServiceRequestDuration":"70","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:07Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:07Z\u0022,\u0022UniqueId\u0022:\u002292a24bf9-76cd-4f03-a2a2-111f84ef8026\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00004.response.json index 3c14ad42ab..733a4b383b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-40dd-7000-310e-4ef68ca99d0d","SPClientServiceRequestDuration":"102","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-50e7-1001-1a81-3d515bd44c85","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00000.response.json index 172833f100..5bf3534974 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-90f9-7000-310e-443499a9eb7c","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-500e-1001-4178-06e8f8b01e3d","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00001.response.json index 69bc75ebfe..1070671588 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-70fe-7000-310e-4d8568a5c4b5","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-5014-1001-48eb-70cbd2f32a96","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00002.response.json index e36397cde4..6420f523d6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-6002-7000-310e-4f450717de7d","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:04Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-3019-1001-1a81-34ffe7d2cff8","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00003.response.json index abb059ea1c..2304ea2cad 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-4006-7000-310e-41f47be013ff","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022UniqueId\u0022:\u0022980b950a-9ddd-4e0f-b51b-96c6b2d71db1\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-701f-1001-4178-0964d34d0774","SPClientServiceRequestDuration":"71","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022UniqueId\u0022:\u0022f67f1cda-2743-4972-b92c-3f2e3f1dfda4\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00000.response.json index c1e84869ae..dcc8a7d337 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-200d-7000-310e-4560763636d3","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-1028-1001-48eb-7fbe41bf3f1d","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00001.response.json index db9cb6dd60..88d5cf2662 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-0011-7000-310e-4111511ed1e8","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-602d-1001-1a81-3181933a5e32","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00002.response.json index 9b91d3899f..87929d0e40 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-e015-7000-310e-4e59fb16bb24","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:04Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:04Z\u0022,\u0022UniqueId\u0022:\u00229e115c4d-9cea-476f-8e18-ecef6fa23f27\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-a032-1001-48eb-7f6570066f93","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022UniqueId\u0022:\u0022663291f9-1ba7-4029-ace9-716b14005598\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00003.response.json index 87e62bda9f..ec77c5156b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-c01a-7000-310e-4b2ba285ecc5","SPClientServiceRequestDuration":"138","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_8aeea4c6-e307-4486-8ef9-1975b9349c1e\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_8aeea4c6-e307-4486-8ef9-1975b9349c1e--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-103a-1001-4178-0abef569642f","SPClientServiceRequestDuration":"168","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_06e21e1f-2072-4570-9c3d-d4462969498a\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_06e21e1f-2072-4570-9c3d-d4462969498a--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00004.response.json index ce7282f2c6..fc48f3d2c4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-8026-7000-310e-452227e0e4e6","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:5,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-404b-1001-48eb-7138f05aae8d","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:24,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00005.response.json index 1a099ac708..084cee1567 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-602b-7000-310e-41b20719f1f1","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022UniqueId\u0022:\u00223617ba14-0deb-4a61-877c-982ebbe03cf6\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-4051-1001-1a81-37c5f3e5022a","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022UniqueId\u0022:\u00226e488cdd-0726-457c-94dc-b839b665edf1\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00000.response.json index 5e84d4cbcc..987564a072 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-305e-7000-310e-4a79f91df246","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-4091-1001-48eb-7a663fd7b4cc","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00001.response.json index 6258dc9295..b1bcba1ff8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-1062-7000-310e-4904c7048027","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-d096-1001-1a81-3d4d631e81d5","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00002.response.json index d9571de8f5..7e8661ebeb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-0066-7000-310e-4d85841c333a","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022UniqueId\u0022:\u00223617ba14-0deb-4a61-877c-982ebbe03cf6\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-509c-1001-48eb-79acd4a41708","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022UniqueId\u0022:\u00226e488cdd-0726-457c-94dc-b839b665edf1\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00003.response.json index d62c53df55..b7eb01529b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-d06b-7000-310e-44ba49b9de91","SPClientServiceRequestDuration":"125","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-e0a2-1001-4178-04846fd5b923","SPClientServiceRequestDuration":"84","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00000.response.json index b5f9c816c9..2802633b51 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-9076-7000-310e-4892acb2e33a","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-d0ac-1001-48eb-71df670c497b","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00001.response.json index 9350fcd6e5..d69ae4f3ed 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-707b-7000-310e-4d3bdae574bf","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-50b2-1001-1a81-3c9c55a7c8d0","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00002.response.json index ca3f67dab6..fa03c8e13b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-607f-7000-310e-457e9234268b","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:06Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-d0b7-1001-4178-020b91427802","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00003.response.json index b16d4b6022..ba655809d8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-3086-7000-310e-44acea66e2a8","SPClientServiceRequestDuration":"72","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022UniqueId\u0022:\u0022c8ef3c45-7ee7-4a00-8cf9-c30768b151eb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-60be-1001-48eb-7266c7024ed4","SPClientServiceRequestDuration":"66","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022UniqueId\u0022:\u00221590501d-fc98-4e8f-ad2d-6bedf71811cb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00000.response.json index 154e4bbe5f..534d0f1808 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-008e-7000-310e-412aed4c570a","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-c0c6-1001-1a81-37d818e9ad46","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00001.response.json index 8f5aee0487..15148f5ab5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-f091-7000-310e-438f103c27f9","SPClientServiceRequestDuration":"35","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-d0cb-1001-48eb-7070146ca158","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00002.response.json index 335202f216..28e8586893 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-d097-7000-310e-458385810c46","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022UniqueId\u0022:\u0022c8ef3c45-7ee7-4a00-8cf9-c30768b151eb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-30d1-1001-4178-0017e8139001","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022UniqueId\u0022:\u00221590501d-fc98-4e8f-ad2d-6bedf71811cb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00003.response.json index b3753f8e8c..127c2a4d73 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-b09c-7000-310e-4a52b032ce33","SPClientServiceRequestDuration":"101","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_278475c3-f212-4728-9800-dc03a447209a\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_278475c3-f212-4728-9800-dc03a447209a--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-50d7-1001-48eb-7ee336961b07","SPClientServiceRequestDuration":"126","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_9b212946-fcf9-47f4-82bb-c8d90142967b\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_9b212946-fcf9-47f4-82bb-c8d90142967b--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00004.response.json index 3d3cff8d4d..340789de10 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-70a6-7000-310e-4a403b0c1fc7","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022UniqueId\u0022:\u0022afd5533f-4070-46b9-be85-6e423a300d8f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-10e4-1001-1a81-3f8e0ec8c70e","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:11Z\u0022,\u0022UniqueId\u0022:\u00222ad6ec6c-eff2-4922-a358-bc57285a6f4a\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00000.response.json index e0a8c0fe8b..ffdf742c3a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-c0c3-7000-310e-4c0d86b89ed1","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-4005-1001-4178-08917717635b","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00001.response.json index 055b197ff7..7e17e898e9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-a0c7-7000-310e-422b3010b414","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-a00a-1001-48eb-77235135ac98","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00002.response.json index 506072b337..b9b7e1485c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-90cb-7000-310e-4e7af5f195c7","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022UniqueId\u0022:\u0022afd5533f-4070-46b9-be85-6e423a300d8f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-0010-1001-1a81-35a05e5fcb6c","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:11Z\u0022,\u0022UniqueId\u0022:\u00222ad6ec6c-eff2-4922-a358-bc57285a6f4a\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00003.response.json index e6a43e5c08..e392b6b53b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-70d0-7000-310e-48e25903fe6d","SPClientServiceRequestDuration":"117","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-e015-1001-4178-0979de7a60e7","SPClientServiceRequestDuration":"87","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00000.response.json index f35a22b3b3..621b80638f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-30db-7000-310e-478f7451f500","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-d01f-1001-48eb-7e3f1233d96a","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00001.response.json index 8553792d3f..23c6a9fdb7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-10e0-7000-310e-409aaa4228aa","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-c025-1001-1a81-373e452ca914","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00002.response.json index 64feeee974..2bc325e628 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-00e3-7000-310e-410766156e68","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-502b-1001-48eb-7aae4c5f0bdd","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00003.response.json index 45e5710e3a..de6cbc3f96 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-d0e8-7000-310e-4ac8e5e7b14f","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022UniqueId\u0022:\u0022d9e46909-4eab-4f0d-b999-180e5c850631\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-0032-1001-4178-0b6fcfd0efce","SPClientServiceRequestDuration":"79","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022UniqueId\u0022:\u0022244402ec-96d7-472f-856c-83a91fed0462\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00000.response.json index 55f4b363ed..59e8536f68 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-b0ef-7000-310e-438a8d75a6ae","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-603b-1001-48eb-7645caa9d2fd","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00001.response.json index d12f014858..117a23ecfd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-90f3-7000-310e-49d2e8b3c5fa","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-b040-1001-1a81-3cdd1ba32d69","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00002.response.json index 823eeda257..66d32fe426 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-80f7-7000-310e-4dfff5af04f9","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022UniqueId\u0022:\u0022d9e46909-4eab-4f0d-b999-180e5c850631\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-2046-1001-4178-089acbb3ecf3","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022UniqueId\u0022:\u0022244402ec-96d7-472f-856c-83a91fed0462\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00003.response.json index e7a86cbb6b..9fb5c178f6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-60fb-7000-310e-4d2794143876","SPClientServiceRequestDuration":"78","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_6503dc93-dc6b-47ff-99b0-28d079913c6f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_6503dc93-dc6b-47ff-99b0-28d079913c6f--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-f04b-1001-48eb-72ccc80d1976","SPClientServiceRequestDuration":"207","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_9766e9f4-6235-4b33-8945-371678be8034\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_9766e9f4-6235-4b33-8945-371678be8034--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00004.response.json index 3a785518ab..c6b5cb844e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-3003-7000-310e-48f1776198c7","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:09Z\u0022,\u0022UniqueId\u0022:\u00229ad483c9-c487-4821-9492-42230a29d7c8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-e05d-1001-1a81-3313d0c7d3ed","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:13Z\u0022,\u0022UniqueId\u0022:\u00225f4f64ec-c152-4252-818e-4d62c739f287\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00000.response.json index 995aacc1da..dd07a53f97 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-8021-7000-310e-4a1b10b9621d","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-b07f-1001-48eb-73399b61274a","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00001.response.json index 46625ab5db..ebf35a9fa3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-7024-7000-310e-4ad0b73f4523","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-3085-1001-1a81-35a46ba91059","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00002.response.json index 9df7ac80be..a518ed5f6a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-5028-7000-310e-483b15ff36d7","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:09Z\u0022,\u0022UniqueId\u0022:\u00229ad483c9-c487-4821-9492-42230a29d7c8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-608a-1001-48eb-7d9b2fcf85eb","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:13Z\u0022,\u0022UniqueId\u0022:\u00225f4f64ec-c152-4252-818e-4d62c739f287\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00003.response.json index 78f1317988..33cdefc7c2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-302d-7000-310e-41c52422980e","SPClientServiceRequestDuration":"143","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-2090-1001-4178-03f40c60335c","SPClientServiceRequestDuration":"100","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00000.response.json index 3c45bbb492..de2541e756 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-403d-7000-310e-4c5d43dc79b7","SPClientServiceRequestDuration":"7","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-409b-1001-48eb-7c6cb7a16435","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00001.response.json index d669edd531..0445f147e3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-2042-7000-310e-49b268cda143","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-70a0-1001-1a81-3eac62805528","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00002.response.json index f151f43ab6..8265157083 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-1046-7000-310e-427ea10bf3ea","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-c0a5-1001-4178-0af8799da575","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00003.response.json index 2f8c780f90..05a3eb9511 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-f049-7000-310e-4a9f7dbc0900","SPClientServiceRequestDuration":"64","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022UniqueId\u0022:\u00229699a7a4-7a32-4c47-a78c-9f527b4eadee\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-10ac-1001-48eb-73b322550383","SPClientServiceRequestDuration":"95","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022UniqueId\u0022:\u00223e302f43-0c08-4af6-98b8-31b457ddde30\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00000.response.json index 87b91461e8..b78f62bd17 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-c051-7000-310e-4e15b8f666ed","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-e0b6-1001-1a81-338fbc559d70","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00001.response.json index 34b8026c21..e6928b3342 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-b054-7000-310e-46fccb0df167","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-80bc-1001-48eb-72ab42334f51","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00002.response.json index cb7efade3d..3abf79ca14 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-9059-7000-310e-43cc4e7ae71f","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022UniqueId\u0022:\u00229699a7a4-7a32-4c47-a78c-9f527b4eadee\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-d0c1-1001-4178-0377aa9d253c","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022UniqueId\u0022:\u00223e302f43-0c08-4af6-98b8-31b457ddde30\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00003.response.json index 974c8a5db0..4262ce8ba0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-805d-7000-310e-4f3c0a090cd7","SPClientServiceRequestDuration":"177","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_4d83d81e-cadf-4922-8152-0738762355f5\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_4d83d81e-cadf-4922-8152-0738762355f5--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-20c7-1001-48eb-7123439bee89","SPClientServiceRequestDuration":"123","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_0574a281-6b6c-4feb-8176-108d15d69a9a\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_0574a281-6b6c-4feb-8176-108d15d69a9a--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00004.response.json index 5bbc5004bf..43327bbba6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-506c-7000-310e-44b5dd0a5216","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022UniqueId\u0022:\u002255d8f218-1143-4780-85e7-89e447d71904\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-30d3-1001-1a81-3b6bca3c9dd4","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:15Z\u0022,\u0022UniqueId\u0022:\u00226b64b3f5-3a14-44ea-8b1e-7c2b82386dde\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00000.response.json index 21905cf874..bef9de9285 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-608b-7000-310e-4e759ccf9ba6","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-40f4-1001-4178-04df7192d872","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00001.response.json index 4b3c63f21e..e78892b4dd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-508f-7000-310e-44e722ead6df","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-f0f9-1001-48eb-7f6176e95897","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00002.response.json index 322ebfa0b7..e79f31c51d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-6093-7000-310e-45daa090e579","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022UniqueId\u0022:\u002255d8f218-1143-4780-85e7-89e447d71904\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-a0ff-1001-1a81-36fc4ae7c0c5","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:15Z\u0022,\u0022UniqueId\u0022:\u00226b64b3f5-3a14-44ea-8b1e-7c2b82386dde\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00003.response.json index 8b5c42814a..2ee893c378 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-2097-7000-310e-4192d2b4e938","SPClientServiceRequestDuration":"118","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-b005-1001-4178-019c69d86450","SPClientServiceRequestDuration":"81","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00000.response.json index 8642cafadb..d493f16ab7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-60b4-7000-310e-47573a90bf2a","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-6029-1001-48eb-7790b2dcda86","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00001.response.json index ea46444847..ac9b707afb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-40b9-7000-310e-4805fddec7fe","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-602e-1001-1a81-3283a0ec9d06","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00002.response.json index 7dd7c936c9..dcbce63503 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-30bc-7000-310e-4536b8fc64a4","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:11Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-5034-1001-4178-0629020d54d8","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:16Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00003.response.json index 6e22c8a3d8..5540d7a189 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-10c1-7000-310e-4d03ff96d068","SPClientServiceRequestDuration":"49","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022UniqueId\u0022:\u0022f8306ad1-62f0-42a6-acf7-b391a64b6a10\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-403a-1001-48eb-7fa1ba13a379","SPClientServiceRequestDuration":"77","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022UniqueId\u0022:\u0022ab9fa9c8-53e0-4335-98a7-e614e0e6d08a\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00000.response.json index 4477e6bf3d..5f7c8ff90f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-f0c7-7000-310e-45bf0c8dfbd5","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-b043-1001-1a81-3c8734adf187","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00001.response.json index 869cb53137..ec98a0ef16 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-d0cb-7000-310e-4cae846a5bb9","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-d048-1001-48eb-78aebf49ed87","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00002.response.json index c4b1604197..9926e89efd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-c0ce-7000-310e-4f49e8e0699e","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:11Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:11Z\u0022,\u0022UniqueId\u0022:\u0022b226a2ad-b8d8-4038-b875-be78279410a8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-704e-1001-4178-0ba408d5dbe1","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:16Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:16Z\u0022,\u0022UniqueId\u0022:\u00227d77f184-01b1-4edf-b6c1-be63a4d29414\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00003.response.json index 7f5bf18f7c..13995e9a75 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-a0d3-7000-310e-4c30ee0146f8","SPClientServiceRequestDuration":"71","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-5054-1001-48eb-796ad95be25b","SPClientServiceRequestDuration":"124","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00004.response.json index 1514801c3f..811566a8f1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-80da-7000-310e-4d4e46de67e4","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:5,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-e061-1001-1a81-38474c5db6d1","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:24,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00005.response.json index ff8f10823c..f6437dfd39 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-60df-7000-310e-457541c6e23c","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022UniqueId\u0022:\u0022323e1a96-893c-4e24-93b6-454daa35236e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-c067-1001-4178-01ed39dcbd40","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022UniqueId\u0022:\u0022b8f7f9e5-a19c-4668-b218-6c42f4fa3bc9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00000.response.json index f1ffe9a3a1..224bc59d2e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-a0fd-7000-310e-4d746aa60c45","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-e08b-1001-48eb-7ecdcfd3fc27","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00001.response.json index 1d6cb9a002..995ae81a2e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-8002-7000-310e-499686016ffb","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-3091-1001-1a81-3a3a60c3453c","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00002.response.json index 7331320116..e1a4858763 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-7005-7000-310e-475d4c66df73","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022UniqueId\u0022:\u0022323e1a96-893c-4e24-93b6-454daa35236e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-a096-1001-4178-0a6e9f46d7c8","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022UniqueId\u0022:\u0022b8f7f9e5-a19c-4668-b218-6c42f4fa3bc9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00003.response.json index ba0378c27d..deef2813d4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-6009-7000-310e-4349fd604b1d","SPClientServiceRequestDuration":"102","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-509d-1001-48eb-7f7f828ca10e","SPClientServiceRequestDuration":"94","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00000.response.json index b2bd2444b3..130b15dc42 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-2013-7000-310e-48b9d99f8d95","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-a0a7-1001-1a81-3d640432ce2e","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00001.response.json index 90607bed85..1b7dc9b133 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-0018-7000-310e-4b6d7bde3da6","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-d0ac-1001-48eb-75db179d01ed","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00002.response.json index 04b017f39b..6d5e3bcce4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-f01b-7000-310e-4c0341c21cd8","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-20b3-1001-4178-06c5a9f4a5c8","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:18Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00003.response.json index c443f43758..908827fed1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-d020-7000-310e-487d5d74a4e7","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022UniqueId\u0022:\u0022da4b2685-9e89-435c-bae9-8e072c079e22\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-20b9-1001-48eb-72f7b02fbcd2","SPClientServiceRequestDuration":"70","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022UniqueId\u0022:\u0022f00954c6-7cea-4250-8093-e5bef7a30eab\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00000.response.json index 001f206bef..1255687b57 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-b026-7000-310e-45765608f674","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-b0c1-1001-1a81-3e62acd99a00","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00001.response.json index 6150b80165..29b378bf4d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-902a-7000-310e-42a23e74604e","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-c0c6-1001-4178-0057c29d1c8f","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00002.response.json index 4742c25e2c..464b9e2c2f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-802e-7000-310e-48a27d8e5e80","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022UniqueId\u0022:\u0022da4b2685-9e89-435c-bae9-8e072c079e22\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-80cc-1001-48eb-7ebf0678c974","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022UniqueId\u0022:\u0022f00954c6-7cea-4250-8093-e5bef7a30eab\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00003.response.json index b496ddc568..0fdf60fe15 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-6032-7000-310e-40fb1af04e4c","SPClientServiceRequestDuration":"68","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-00d5-1001-1a81-3dd8a35c231b","SPClientServiceRequestDuration":"155","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00004.response.json index f615972b24..4285c26394 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-303a-7000-310e-4521478fcb77","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:14Z\u0022,\u0022UniqueId\u0022:\u0022c5d36f41-ec0f-4a38-9f23-9762158a5361\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-20e3-1001-48eb-7d441464e6ea","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022UniqueId\u0022:\u002286d9bb8d-98df-4cf2-b293-f09e8d3904bf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00000.response.json index 3050944416..8e3d8e43d8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-6059-7000-3703-94ea8f57b474","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-0005-1001-48eb-740a4a02bcb8","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00001.response.json index fbaa5fed7e..b1ceb0354d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-605d-7000-310e-424aeec6d39c","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-300a-1001-1a81-33135defdaf5","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00002.response.json index 6133a3c3f6..94ce520cd3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-3061-7000-3703-98fb55cb698a","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:14Z\u0022,\u0022UniqueId\u0022:\u0022c5d36f41-ec0f-4a38-9f23-9762158a5361\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-900f-1001-48eb-75950bb147b2","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022UniqueId\u0022:\u002286d9bb8d-98df-4cf2-b293-f09e8d3904bf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00003.response.json index 11f4095a26..26a21e9966 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-3065-7000-310e-4a2eac8f2668","SPClientServiceRequestDuration":"145","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-3015-1001-4178-0dd687c74716","SPClientServiceRequestDuration":"102","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00000.response.json index 5efd954eba..f4c887e663 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-d071-7000-3703-92eae5c11b5f","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-501f-1001-48eb-746cdc049c41","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00001.response.json index 76bad2ce66..3441b9e0d8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-c075-7000-310e-46f32aa84120","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-d024-1001-1a81-3b871f9a3486","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00002.response.json index 3446a50b3e..05340f87ba 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-a079-7000-3703-9cfbb704c936","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-c029-1001-4178-0ce43b82fa9a","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:20Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00003.response.json index b25ac0b19c..bda61f1eae 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-907d-7000-310e-49a2c4461f67","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022UniqueId\u0022:\u0022a621af2d-064d-4404-87e9-e294f778777e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-0030-1001-48eb-7390d2509e37","SPClientServiceRequestDuration":"117","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022UniqueId\u0022:\u0022ae24e075-6f3e-45a4-b63c-b464e41320f2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00000.response.json index 54e2ff6596..f60544b27e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-6084-7000-3703-90ce69413edf","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-003c-1001-1a81-392a2be4caa0","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00001.response.json index d45661574c..0a0b0d6290 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-4088-7000-3703-924607f31fda","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-6041-1001-48eb-72863293dea0","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00002.response.json index 4afa2d830a..615e9cbaed 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-408c-7000-310e-4e76d2aa1165","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022UniqueId\u0022:\u0022a621af2d-064d-4404-87e9-e294f778777e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-5046-1001-4178-08e331d45e39","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022UniqueId\u0022:\u0022ae24e075-6f3e-45a4-b63c-b464e41320f2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00003.response.json index 74adee3bf5..388ecaaa6b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-1090-7000-3703-99b4ee78321e","SPClientServiceRequestDuration":"76","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-a04c-1001-48eb-7b5a98bc0cfb","SPClientServiceRequestDuration":"119","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00004.response.json index 1eaaede3f6..c505b2dad4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-f097-7000-310e-437e9b517110","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022UniqueId\u0022:\u0022b2239535-bbc4-4e60-b7dd-af45d01116fb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-3058-1001-1a81-3b85ec136679","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022UniqueId\u0022:\u00223c21eab6-8433-4b22-aaa5-4c5633ad287f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00000.response.json index ec1b285049..db21b2b62d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-40b2-7000-3703-9d73b3930d83","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-507a-1001-4178-04c0379a5693","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00001.response.json index eb00b13151..55e14e4837 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-20b6-7000-3703-97fda266279e","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-0080-1001-48eb-70e5d91e9713","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00002.response.json index 7a0c0236db..3d468f19c7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-20b9-7000-310e-472e7df13a1f","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022UniqueId\u0022:\u0022b2239535-bbc4-4e60-b7dd-af45d01116fb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-3085-1001-1a81-362901601929","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022UniqueId\u0022:\u00223c21eab6-8433-4b22-aaa5-4c5633ad287f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00003.response.json index b45150d9a5..eee8613009 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-f0bd-7000-3703-9f41e15f8ad9","SPClientServiceRequestDuration":"103","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-208b-1001-4178-0d598cd5121c","SPClientServiceRequestDuration":"104","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00000.response.json index c32259a726..4facbd5263 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-d0c7-7000-310e-47546adb7366","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-2096-1001-48eb-79aa1f52bddf","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00001.response.json index d5b67cfc00..c8c11d676a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-a0cb-7000-3703-9eab8f70b35d","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-609c-1001-1a81-378806d95a53","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00002.response.json index 7dad7f9a11..64a050972b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-a0cf-7000-310e-464439f4c16d","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-c0a1-1001-48eb-7e04488ed5c1","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:22Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00003.response.json index dd922dfb6c..1e9f04a0df 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-70d4-7000-3703-96c6e5c5a13b","SPClientServiceRequestDuration":"49","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO DELETE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO DELETE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022UniqueId\u0022:\u002256afcd44-2c5a-4795-ae09-512aed25d88b\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-60a9-1001-4178-07610b03d7ca","SPClientServiceRequestDuration":"93","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO DELETE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO DELETE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:22Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:22Z\u0022,\u0022UniqueId\u0022:\u0022e0ca305c-7aee-4950-9da3-8c3f12163ffb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00004.response.json index 3b64ecc7c1..aabb30b7b1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-50da-7000-3703-961e8331982f","SPClientServiceRequestDuration":"107","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-00b4-1001-48eb-76190ca49344","SPClientServiceRequestDuration":"106","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00005.response.json index 51e0842386..f2b09dc826 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-10e5-7000-3703-94d58b22cb19","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-50bf-1001-1a81-36d4d89660cd","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00006.response.json index fc43cfee03..211f9d47b6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-00e9-7000-310e-46ab1c308c98","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-80c5-1001-4178-03e00250c9b7","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00000.response.json new file mode 100644 index 0000000000..6c0080ccec --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00000.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e3ad17a2-c074-1001-1a81-322758d625fa","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00001.response.json new file mode 100644 index 0000000000..efe4187131 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00001.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e3ad17a2-2082-1001-733e-2547e831f844","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00002.response.json new file mode 100644 index 0000000000..94e590b3a7 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00002.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e6ad17a2-0019-1001-4178-081f1324a784","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:11Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00003.response.json new file mode 100644 index 0000000000..f8ee8342a1 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00003.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"f0ad17a2-40fc-1001-48eb-7d6a39f15d50","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00004.response.json new file mode 100644 index 0000000000..bbfcb96d72 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00004.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"f1ad17a2-10b5-1001-733e-229e4d48c6d9","SPClientServiceRequestDuration":"52","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00005.response.json new file mode 100644 index 0000000000..1affed7b22 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00005.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"f1ad17a2-30b6-1001-48eb-702228cebfa7","SPClientServiceRequestDuration":"68","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00006.response.json new file mode 100644 index 0000000000..120fce680e --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00006.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"f1ad17a2-d0b7-1001-48eb-701103345854","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00007.response.json new file mode 100644 index 0000000000..1935c09306 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00007.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"f1ad17a2-e0b6-1001-733e-295a9fcd8bd6","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00008.response.json new file mode 100644 index 0000000000..977516ed5e --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00008.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f1ad17a2-10fc-1001-1a81-3e1b78e8c240","SPClientServiceRequestDuration":"90","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00009.response.json new file mode 100644 index 0000000000..4f42a60887 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00009.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-9000-0001-a8ef-1bd4451994f8","SPClientServiceRequestDuration":"91","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00010.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00010.response.json new file mode 100644 index 0000000000..6e456f97ed --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00010.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"d1ad17a2-20eb-1001-1a81-3207defab94a","SPClientServiceRequestDuration":"65","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00011.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00011.response.json new file mode 100644 index 0000000000..d27dc53aba --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00011.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f1ad17a2-50fc-1001-1a81-329fb1e12a18","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022UniqueId\u0022:\u00228e2fa60c-243a-4994-8eb1-b75be9205d82\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00012.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00012.response.json new file mode 100644 index 0000000000..dd02ab545b --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00012.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-801a-1001-1a81-3f99bab5ed88","SPClientServiceRequestDuration":"75","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00013.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00013.response.json new file mode 100644 index 0000000000..af6d581218 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00013.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-5057-0001-a8ef-186fb3bb6c3e","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022UniqueId\u0022:\u00228e2fa60c-243a-4994-8eb1-b75be9205d82\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00014.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00014.response.json new file mode 100644 index 0000000000..3a4c254692 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00014.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-b057-1001-733e-2a3591bee15a","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022UniqueId\u0022:\u00228e2fa60c-243a-4994-8eb1-b75be9205d82\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00015.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00015.response.json new file mode 100644 index 0000000000..ab1f909429 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00015.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-4059-1001-733e-2b9818d1a8f9","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022UniqueId\u0022:\u00228e2fa60c-243a-4994-8eb1-b75be9205d82\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00016.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00016.response.json new file mode 100644 index 0000000000..f4acdefad7 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00016.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-f061-1001-48eb-74d1a0a1b43b","SPClientServiceRequestDuration":"123","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u002288b34759-a46a-400e-bd96-54004a3babe2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00017.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00017.response.json new file mode 100644 index 0000000000..16671401d0 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00017.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-9066-1001-4178-0401bcd390d4","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u00228e2fa60c-243a-4994-8eb1-b75be9205d82\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00018.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00018.response.json new file mode 100644 index 0000000000..200fe50d1a --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00018.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-907b-1001-1a81-303953186ac2","SPClientServiceRequestDuration":"47","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00019.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00019.response.json new file mode 100644 index 0000000000..28ba036cbc --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00019.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-f07b-1001-1a81-38c4816732c7","SPClientServiceRequestDuration":"52","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00020.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00020.response.json new file mode 100644 index 0000000000..021140ab1f --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00020.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-b081-1001-4178-0f3014538d46","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00021.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00021.response.json new file mode 100644 index 0000000000..02d9802a44 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00021.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f3ad17a2-e0a6-1001-733e-23b43215034f","SPClientServiceRequestDuration":"177","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00022.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00022.response.json new file mode 100644 index 0000000000..e9b688af72 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00022.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-e096-1001-733e-209e3a77329a","SPClientServiceRequestDuration":"69","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00023.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00023.response.json new file mode 100644 index 0000000000..2920ec352f --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00023.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-b0e0-0001-a8ef-124c4e38de35","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u002288b34759-a46a-400e-bd96-54004a3babe2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00024.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00024.response.json new file mode 100644 index 0000000000..3c5b3c4479 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00024.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-d0e0-1001-4178-017deb0dcc28","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u002288b34759-a46a-400e-bd96-54004a3babe2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00025.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00025.response.json new file mode 100644 index 0000000000..309a81ad6b --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00025.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-d0e0-1001-48eb-704b247ff463","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u002288b34759-a46a-400e-bd96-54004a3babe2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00026.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00026.response.json new file mode 100644 index 0000000000..c0b2b4ddf9 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00026.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-50e1-1001-4178-05f550533720","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u002288b34759-a46a-400e-bd96-54004a3babe2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00027.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00027.response.json new file mode 100644 index 0000000000..e078958fa9 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00027.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-20fa-1001-48eb-76510f9ca34e","SPClientServiceRequestDuration":"80","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00028.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00028.response.json new file mode 100644 index 0000000000..5989a1da8e --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00028.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-90fc-1001-1a81-3c5877bfdd5f","SPClientServiceRequestDuration":"66","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00029.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00029.response.json new file mode 100644 index 0000000000..5ac34c228d --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00029.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-40fc-1001-48eb-76234d43f399","SPClientServiceRequestDuration":"159","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022UniqueId\u0022:\u00220463924d-ec1c-43c7-b6a8-f7c31aa774bc\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00030.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00030.response.json new file mode 100644 index 0000000000..be69a0429a --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00030.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-10fd-1001-733e-2ede46d07fef","SPClientServiceRequestDuration":"63","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00031.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00031.response.json new file mode 100644 index 0000000000..6b5290d730 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00031.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3ad17a2-703f-1001-1a81-301f1105faca","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022UniqueId\u0022:\u00220463924d-ec1c-43c7-b6a8-f7c31aa774bc\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00032.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00032.response.json new file mode 100644 index 0000000000..4f12d7212b --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00032.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3ad17a2-5041-0001-a8ef-147e3910aa05","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022UniqueId\u0022:\u00220463924d-ec1c-43c7-b6a8-f7c31aa774bc\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00033.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00033.response.json new file mode 100644 index 0000000000..4fbcfbcbca --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00033.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3ad17a2-a041-1001-4178-04f7548bb918","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022UniqueId\u0022:\u00220463924d-ec1c-43c7-b6a8-f7c31aa774bc\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00034.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00034.response.json new file mode 100644 index 0000000000..38ac06f91a --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00034.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3ad17a2-50c1-1001-4178-0484fb0c5cfe","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022UniqueId\u0022:\u00220463924d-ec1c-43c7-b6a8-f7c31aa774bc\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00035.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00035.response.json new file mode 100644 index 0000000000..d804475dee --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00035.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"fead17a2-4083-1001-4178-0d49bf67f7cd","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u00228e2fa60c-243a-4994-8eb1-b75be9205d82\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00036.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00036.response.json new file mode 100644 index 0000000000..d64ebddd87 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00036.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"fead17a2-8089-1001-733e-279eb0459ec4","SPClientServiceRequestDuration":"108","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00000.response.json index 40efe82bb6..ac379102c9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-d0ed-7000-3703-93f59e72f47e","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-e06f-1001-48eb-79f4d539e199","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00001.response.json index 2bb0d15af8..1e880a5ba3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-d0f1-7000-310e-4218af187ab1","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-7075-1001-1a81-3b86906dd22e","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00002.response.json index ada2666665..d59389e36d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-a0f5-7000-3703-95e87220c454","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:10:35Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-e07a-1001-48eb-7fdf1375e246","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:25Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00003.response.json index d8248cda21..9aa5d9ed31 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"6ce2d3a0-90fa-7000-310e-4b4c94ebc082","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d2ad17a2-b080-1001-48eb-7d0df750bebb","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00004.response.json index aee35754ce..cf32b40fb8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-10ff-7000-3703-990a028cf561","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022UniqueId\u0022:\u0022e63cec00-d561-404f-97fe-5f98d58bb276\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-4088-1001-1a81-349519f62cac","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022UniqueId\u0022:\u00223fd63855-24af-448a-9e4b-5b9cf3a60903\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00005.response.json index a7590a8b73..f6e0f5529d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-4005-7000-3703-9244de26bf4f","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022UniqueId\u0022:\u002297c203b1-378e-4ee4-ad11-ec6ec359b407\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-b092-1001-48eb-7c7d691bc15b","SPClientServiceRequestDuration":"98","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022UniqueId\u0022:\u0022939682a4-5caf-428e-8510-09a5743f5266\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00006.response.json index bfeecbcc66..4d602830dd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-d00b-7000-3703-9122b5cec14f","SPClientServiceRequestDuration":"47","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022UniqueId\u0022:\u0022bb286103-8175-40aa-8d81-956ae34c0573\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-209d-1001-48eb-79248ff4e654","SPClientServiceRequestDuration":"84","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022UniqueId\u0022:\u00225de2d3a9-2ec0-48c9-916f-373c619c9a8c\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00007.response.json index b464ded36c..967e6595bf 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-f011-7000-3703-91a17b809e9f","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub4\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3/sub4\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022UniqueId\u0022:\u00224f09df46-6d44-4259-a14c-8800529a8ac6\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-20a7-1001-1a81-3b73209ea337","SPClientServiceRequestDuration":"75","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub4\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3/sub4\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:27Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:27Z\u0022,\u0022UniqueId\u0022:\u00222961641f-3c3a-4b6e-9fba-4ad382bc5339\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00008.response.json index 02c86c2cef..2f3257ac5b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00008.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00008.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-e017-7000-310e-4966f543f52f","SPClientServiceRequestDuration":"64","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub5\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3/sub4/sub5\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022UniqueId\u0022:\u00225dfbd50b-af47-4029-885f-ebf26cf4346a\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-40b0-1001-48eb-733a99ff2c85","SPClientServiceRequestDuration":"86","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub5\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3/sub4/sub5\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:27Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:27Z\u0022,\u0022UniqueId\u0022:\u0022fb30dd3d-61a8-4aca-a668-cc7822ab6905\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00009.response.json index 79cd73f72d..721d52ac31 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00009.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00009.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-501f-7000-3703-9338eac44ea6","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022UniqueId\u0022:\u0022e63cec00-d561-404f-97fe-5f98d58bb276\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-a0b9-1001-48eb-7e685a418c74","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022UniqueId\u0022:\u00223fd63855-24af-448a-9e4b-5b9cf3a60903\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00010.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00010.response.json index 88939b7f32..bc4d058857 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00010.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00010.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-8024-7000-3703-93e0dc6de6de","SPClientServiceRequestDuration":"79","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-d0c1-1001-1a81-30cb27102579","SPClientServiceRequestDuration":"111","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00011.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00011.response.json deleted file mode 100644 index 7f7964abb2..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00011.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-0031-3000-787b-48233d6665df","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Templates\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Templates\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T08:21:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:54Z\u0022,\u0022UniqueId\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Forms\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:38Z\u0022,\u0022UniqueId\u0022:\u0022f37d4ad2-b342-4938-b2c5-de1f58083341\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222021-12-15T08:40:18Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-15T08:40:18Z\u0022,\u0022UniqueId\u0022:\u002268f6d3bb-e422-4422-82b3-e9bb2e384393\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00012.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00012.response.json deleted file mode 100644 index 4ecefbe059..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00012.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-e033-3000-787b-4c42aa79efbf","SPClientServiceRequestDuration":"61","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00000.response.json new file mode 100644 index 0000000000..ea9570511c --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00000.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-00ce-1001-48eb-7909a78d421e","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00001.response.json new file mode 100644 index 0000000000..76fa55ddb6 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00001.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-00d3-1001-48eb-700ff566ab45","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00002.response.json new file mode 100644 index 0000000000..55c0cb399f --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00002.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-d0d8-1001-1a81-3756e2a76053","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:27Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00003.response.json new file mode 100644 index 0000000000..b31eca45de --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00003.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d2ad17a2-90de-1001-48eb-79c5d76899f6","SPClientServiceRequestDuration":"47","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00004.response.json new file mode 100644 index 0000000000..bac0681e21 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00004.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-90e6-1001-48eb-7b8f31a6d550","SPClientServiceRequestDuration":"79","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022UniqueId\u0022:\u0022ae3e38aa-bd46-4d4a-9a35-8b222a3ecd8f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00005.response.json new file mode 100644 index 0000000000..fa80ad4906 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00005.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-20f0-1001-1a81-3658145d9ad9","SPClientServiceRequestDuration":"220","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022UniqueId\u0022:\u00228a8cdfdb-30b1-4e2e-8ac9-03b917bd4a28\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00006.response.json new file mode 100644 index 0000000000..da5c0be1cb --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00006.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-5002-1001-48eb-7142ef7b5500","SPClientServiceRequestDuration":"101","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022UniqueId\u0022:\u0022ae3e38aa-bd46-4d4a-9a35-8b222a3ecd8f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00007.response.json new file mode 100644 index 0000000000..54af40f40d --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00007.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-300c-1001-48eb-7de38f692444","SPClientServiceRequestDuration":"162","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022UniqueId\u0022:\u00228a8cdfdb-30b1-4e2e-8ac9-03b917bd4a28\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00008.response.json new file mode 100644 index 0000000000..98d3f62477 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00008.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-601b-1001-1a81-392af13b9ace","SPClientServiceRequestDuration":"60","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022UniqueId\u0022:\u0022ae3e38aa-bd46-4d4a-9a35-8b222a3ecd8f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00009.response.json new file mode 100644 index 0000000000..926affe98b --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00009.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-d023-1001-48eb-798735565e44","SPClientServiceRequestDuration":"132","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00000.response.json index 755a6bbc42..da2408fc27 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-9007-9000-c10d-14d372c6ece2","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-d02f-1001-48eb-761755a9472f","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00001.response.json index 963693ca56..ccde9a44fd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-001d-9000-c10d-1bf632bf5f4a","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-3036-1001-1a81-3e6ff0d1b0d2","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00002.response.json index 193b9e82c7..e3879812b7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-b02b-9000-c10d-1f5023fa69ba","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:19Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-a03b-1001-48eb-76bca8cc0249","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00003.response.json index aa2f684588..d36ade1640 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"ac2b51a1-5039-9000-c10d-11be40737313","SPClientServiceRequestDuration":"50","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d3ad17a2-4041-1001-48eb-7f895873d090","SPClientServiceRequestDuration":"39","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00004.response.json index aad21759e2..d402c4218b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-9059-9000-c10d-127c9183e5f5","SPClientServiceRequestDuration":"70","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:54Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:54Z\u0022,\u0022UniqueId\u0022:\u00227df8b5f4-953c-43fa-a5b9-7c43082f1b33\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-f047-1001-1a81-3b1f628fc14d","SPClientServiceRequestDuration":"93","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u0022ec774c82-0f8d-4363-a751-e58b18d949ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00005.response.json index 7f86e181d2..032ecee5b3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-306a-9000-c10d-17d4992e0cff","SPClientServiceRequestDuration":"61","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022UniqueId\u0022:\u00226c716239-6881-4141-944a-3353c51c3f62\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-5052-1001-48eb-769596bfdba0","SPClientServiceRequestDuration":"110","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u00221ed902c4-c66c-4e3b-809b-250cdd1b626d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00006.response.json index abed782554..551afb31f5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-c07a-9000-c10d-16d825df4e20","SPClientServiceRequestDuration":"57","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3a\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3a\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022UniqueId\u0022:\u002260fd7967-a2db-4cec-a08f-54be5485e4ea\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-805d-1001-48eb-7eeec5f68e02","SPClientServiceRequestDuration":"82","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3a\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3a\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u0022a17c354e-da4a-4fbc-ac87-37df8c16e8c1\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00007.response.json index 38ff65e503..4ccf503b08 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-608a-9000-c10d-18298495fdd2","SPClientServiceRequestDuration":"67","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub4a\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3a/sub4a\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022UniqueId\u0022:\u002242f9aa98-62fc-4c66-842a-ffdf5775d609\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-3067-1001-1a81-33c1362f7f0c","SPClientServiceRequestDuration":"80","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub4a\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3a/sub4a\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:30Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:30Z\u0022,\u0022UniqueId\u0022:\u0022988e46eb-60e7-4cad-9d31-adfc63eb9f44\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00008.response.json index 3b6f9795f4..d46e24b6e3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00008.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00008.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-009b-9000-c10d-156378026be1","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:54Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022UniqueId\u0022:\u00227df8b5f4-953c-43fa-a5b9-7c43082f1b33\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-6070-1001-48eb-75d7c183043b","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u0022ec774c82-0f8d-4363-a751-e58b18d949ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00009.response.json index 1e7bdc30b1..820297eaed 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00009.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00009.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-a0a9-9000-c10d-19e2275a8b7f","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022UniqueId\u0022:\u00226c716239-6881-4141-944a-3353c51c3f62\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-2076-1001-48eb-7c51a7dba667","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u00221ed902c4-c66c-4e3b-809b-250cdd1b626d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00010.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00010.response.json index 77e221d206..60245b5e71 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00010.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00010.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"ac2b51a1-50b7-9000-c10d-190c7ea932ba","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d3ad17a2-907b-1001-1a81-39078ba8d734","SPClientServiceRequestDuration":"46","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00011.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00011.response.json index 25d2ea1e78..f63867f010 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00011.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00011.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-a0d3-9000-c10d-182810e491e5","SPClientServiceRequestDuration":"52","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3b\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3b\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:56Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:56Z\u0022,\u0022UniqueId\u0022:\u00225cefa903-9ccb-4021-a7ac-2053a2c54ab7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-a082-1001-48eb-73bba697c1d5","SPClientServiceRequestDuration":"78","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3b\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3b\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:30Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:30Z\u0022,\u0022UniqueId\u0022:\u0022aaf9e6cc-71f3-4e63-a91b-118b19590a5c\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00012.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00012.response.json index 972d19c15e..1be16ffae3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00012.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00012.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-40e3-9000-c10d-115828a91d64","SPClientServiceRequestDuration":"52","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub4b\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3b/sub4b\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:57Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:57Z\u0022,\u0022UniqueId\u0022:\u0022ff78ca74-5de5-4fee-878d-3e408da016f8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-b08b-1001-48eb-75d053e85322","SPClientServiceRequestDuration":"101","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub4b\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3b/sub4b\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:30Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:30Z\u0022,\u0022UniqueId\u0022:\u002292b8954b-7653-44ee-acbd-f5f9bf8cd983\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00013.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00013.response.json index 9d35f062e5..00046f7094 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00013.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00013.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-e0f3-9000-c10d-1885825fe486","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:54Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022UniqueId\u0022:\u00227df8b5f4-953c-43fa-a5b9-7c43082f1b33\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-5097-1001-1a81-3ebdd3adde6d","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u0022ec774c82-0f8d-4363-a751-e58b18d949ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00014.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00014.response.json index 03b1325602..9f33ce4f62 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00014.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00014.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"b42b51a1-a028-9000-c10d-18d959b79743","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022StorageMetrics\u0022:{\u0022AdditionalFileStreamSize\u0022:\u00220\u0022,\u0022LastModified\u0022:\u00222024-09-17T15:15:54Z\u0022,\u0022TotalFileCount\u0022:\u00220\u0022,\u0022TotalFileStreamSize\u0022:\u00220\u0022,\u0022TotalSize\u0022:\u0022152\u0022},\u0022Name\u0022:\u0022sub1\u0022,\u0022UniqueId\u0022:\u00227df8b5f4-953c-43fa-a5b9-7c43082f1b33\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-c09c-1001-48eb-7dd5aad46903","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022StorageMetrics\u0022:{\u0022AdditionalFileStreamSize\u0022:\u00220\u0022,\u0022LastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TotalFileCount\u0022:\u00220\u0022,\u0022TotalFileStreamSize\u0022:\u00220\u0022,\u0022TotalSize\u0022:\u0022152\u0022},\u0022Name\u0022:\u0022sub1\u0022,\u0022UniqueId\u0022:\u0022ec774c82-0f8d-4363-a751-e58b18d949ce\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00015.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00015.response.json index ba289ca598..1a20667cfc 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00015.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00015.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"b42b51a1-5036-9000-c10d-136b7378854d","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022StorageMetrics\u0022:{\u0022AdditionalFileStreamSize\u0022:\u00220\u0022,\u0022LastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022TotalFileCount\u0022:\u00220\u0022,\u0022TotalFileStreamSize\u0022:\u00220\u0022,\u0022TotalSize\u0022:\u0022152\u0022},\u0022Name\u0022:\u0022sub2\u0022,\u0022UniqueId\u0022:\u00226c716239-6881-4141-944a-3353c51c3f62\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-90a2-1001-48eb-7c0f07366a0f","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022StorageMetrics\u0022:{\u0022AdditionalFileStreamSize\u0022:\u00220\u0022,\u0022LastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TotalFileCount\u0022:\u00220\u0022,\u0022TotalFileStreamSize\u0022:\u00220\u0022,\u0022TotalSize\u0022:\u0022152\u0022},\u0022Name\u0022:\u0022sub2\u0022,\u0022UniqueId\u0022:\u00221ed902c4-c66c-4e3b-809b-250cdd1b626d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00016.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00016.response.json index f1c9b77dc9..48368e7883 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00016.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00016.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cc2b51a1-10c0-9000-e1aa-d701a96f0081","SPClientServiceRequestDuration":"214","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-80a8-1001-1a81-39800e8016c1","SPClientServiceRequestDuration":"95","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00017.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00017.response.json deleted file mode 100644 index bcb1731f76..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00017.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-107e-3000-787b-4ef8fe0c8466","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Folders\u0022:[{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222021-12-15T08:40:19Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-15T08:40:19Z\u0022,\u0022UniqueId\u0022:\u002266e34e07-5be6-4111-ae6d-23a4bd91ea04\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Templates\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Templates\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T08:21:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:54Z\u0022,\u0022UniqueId\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Forms\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:38Z\u0022,\u0022UniqueId\u0022:\u0022f37d4ad2-b342-4938-b2c5-de1f58083341\u0022,\u0022WelcomePage\u0022:\u0022\u0022}],\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00018.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00018.response.json deleted file mode 100644 index 3b57371699..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00018.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-1081-3000-787b-49b264db4ef0","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222021-12-15T08:40:19Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-15T08:40:19Z\u0022,\u0022UniqueId\u0022:\u002266e34e07-5be6-4111-ae6d-23a4bd91ea04\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Templates\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Templates\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T08:21:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:54Z\u0022,\u0022UniqueId\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Forms\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:38Z\u0022,\u0022UniqueId\u0022:\u0022f37d4ad2-b342-4938-b2c5-de1f58083341\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00019.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00019.response.json deleted file mode 100644 index dfb78e1f1a..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00019.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-f083-3000-787b-48a75a6f9a96","SPClientServiceRequestDuration":"47","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00000.response.json index 93dbf37ef1..954e0763e5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-8094-7000-3703-9cc5b0b9d7b5","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-e0b2-1001-48eb-70087315d3ff","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00001.response.json index f0eec4658f..50ecd2d15f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-d098-7000-310e-41e57d188eee","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-e0b8-1001-48eb-775be88fbdd0","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00002.response.json index 91f30c3ffb..305fff6bda 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-509c-7000-3703-9f9169d208c1","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:19Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-40be-1001-1a81-3b8030393209","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:31Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00003.response.json index 9f7b605f0f..5ba09afde9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"6de2d3a0-a0a0-7000-310e-4df56ee83c95","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d3ad17a2-10c4-1001-48eb-7dd2c9b768f9","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00004.response.json index 2aafb9ae4b..32711de875 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-d0a5-7000-3e95-5c6e78f1be14","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022UniqueId\u0022:\u00229941890b-3c3c-4f0a-a3fb-dab460a7e5af\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-50cb-1001-48eb-76115f660c50","SPClientServiceRequestDuration":"97","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:31Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:31Z\u0022,\u0022UniqueId\u0022:\u0022adb730b3-c18d-4d9d-84b1-0bd232c50836\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00005.response.json index 38123f02e0..cbd5ab78f7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-f0ac-7000-3703-94d2f3b25c42","SPClientServiceRequestDuration":"103","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-d0d5-1001-1a81-35b0b1cd70f2","SPClientServiceRequestDuration":"120","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00006.response.json deleted file mode 100644 index 3e042ea3a3..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00006.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-609e-3000-787b-4e632e58909b","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00000.response.json index 83369ba909..a5ed17ad4a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-60b6-7000-3e95-58fd41e4e2cd","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-f0e1-1001-48eb-7f01946c35cb","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00001.response.json index c701af5cbe..d77920a6b5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-90bb-7000-3703-90f99d8bb993","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-f0e6-1001-48eb-77a91d561348","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00002.response.json index 0c0ab92b5d..19887e453d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-30bf-7000-3e95-50507651cad1","SPClientServiceRequestDuration":"47","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-70ec-1001-1a81-36883724342a","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:31Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00003.response.json index 668f56e920..4aacc48598 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"6de2d3a0-50c7-7000-3703-92d279468358","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d3ad17a2-a0f2-1001-48eb-7a33dca22537","SPClientServiceRequestDuration":"39","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00004.response.json index 82fd344317..5a664a74f1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-e0cb-7000-3e95-5edcfed8c6f6","SPClientServiceRequestDuration":"74","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022UniqueId\u0022:\u002252f6265c-221a-4103-9f96-0f597fd32e6b\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-80f9-1001-48eb-70821257cdee","SPClientServiceRequestDuration":"73","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u00228945fac2-7627-4e55-9188-1c36570b4543\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00005.response.json index dd26b37f60..8e5efa98e7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-00d4-7000-3703-9ce437a6ea7b","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022UniqueId\u0022:\u002208170c22-9d87-4daf-8000-ec72fa7ba09f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-6002-1001-1a81-3abe6b0608ca","SPClientServiceRequestDuration":"76","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u00223628c6d3-d2bb-41b8-995b-95c311760423\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00006.response.json index d2bdf9d647..0b0b2f0247 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-90da-7000-3e95-551f16bedad9","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022UniqueId\u0022:\u002252f6265c-221a-4103-9f96-0f597fd32e6b\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-600b-1001-48eb-7562273f1e26","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u00228945fac2-7627-4e55-9188-1c36570b4543\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00007.response.json index 063c4dd4ff..a3229aa609 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-70de-7000-3e95-5d5a89623c7e","SPClientServiceRequestDuration":"89","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-8010-1001-48eb-7058be0fc768","SPClientServiceRequestDuration":"120","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00008.response.json deleted file mode 100644 index 7630d1563b..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00008.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-80bf-3000-787b-4d33c3b2076f","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222021-12-15T08:40:21Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-15T08:40:21Z\u0022,\u0022UniqueId\u0022:\u002247c7f684-4b41-4726-b6fa-33da110dd591\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Templates\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Templates\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T08:21:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:54Z\u0022,\u0022UniqueId\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Forms\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:38Z\u0022,\u0022UniqueId\u0022:\u0022f37d4ad2-b342-4938-b2c5-de1f58083341\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00009.response.json deleted file mode 100644 index ae8dcf70a1..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00009.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-70c3-3000-787b-451062f725fe","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00000.response.json index 8a807cb51d..10100d6bdf 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-80e7-7000-3703-97b493aee579","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-0049-1001-1a81-33da7d59d61a","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00001.response.json index 503da57ea6..0003a046af 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-10ef-7000-3e95-5ebdd58a0b84","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-204e-1001-48eb-7e2f5e9c6099","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00002.response.json index 1acad241ea..dccd02d16c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-40f3-7000-3703-9298b666647a","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-e053-1001-48eb-78ddd45681ef","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00003.response.json index c4af57de59..fbb431df5f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-e0f6-7000-3e95-58635f14a12f","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-b059-1001-1a81-3a67f25c9934","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00000.response.json index 0285f2618b..888e4b6ec6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-10fc-7000-3703-92d7feeb28cc","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-1060-1001-48eb-7903f86bd77a","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00001.response.json index 8356b462b5..1681245ca2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-a000-7000-3e95-56366dfbb8b6","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-9065-1001-48eb-70e110851e30","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00002.response.json index 2c623adc93..aff7ff9624 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-d005-7000-3703-9e49cb2d11af","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-e06a-1001-1a81-387513216ec5","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00003.response.json index c9569dc486..0c6e1699e4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-7009-7000-3e95-524074ad1820","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-3070-1001-48eb-7227c55bd599","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json index a9d4cd3d84..76da8ee2a9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"2884f2a1-60ce-f000-6d2c-b32d16c7e3e4","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00220299607f-1525-4d06-9f59-76a814d85b0d\u0022,\u0022Url\u0022:\u0022https://ejazhussain.sharepoint.com/sites/pnpcoresdktest\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-6037-1001-1a81-3957a58585ff","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226bcf4857-8375-4d9c-9c9b-79bad742fbbc\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktest\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json index fa8c7bcefd..6000e2f8f2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"2884f2a1-a0d8-f000-3a2b-5319bbd88cef","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u002200000000-0000-0000-0000-000000000000\u0022,\u0022Id\u0022:\u0022dc9ac6af-e7e8-4ae3-88e1-e158b99dd3d0\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-d03c-1001-48eb-7d64c6e74a71","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u002200000000-0000-0000-0000-000000000000\u0022,\u0022Id\u0022:\u0022f6f1a80c-049d-44fb-9995-f5f137b788a9\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json index 5cdf0307fd..cbbc87a67f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"2884f2a1-90dd-f000-6d2c-b8c237347733","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d4ad17a2-7042-1001-48eb-770c255240fb","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00000.response.json index c02438b84c..e376546d7b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-900e-7000-3703-95580dfb2bd2","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-b08d-1001-48eb-7c82f1f7ac80","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00001.response.json index b9e5af3001..c50240bbef 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-3012-7000-3e95-537ab9055574","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-3093-1001-1a81-3a900d2cba93","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00002.response.json index d99928a761..d80d83916e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-6016-7000-3703-915fa1bc7fed","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_ae09245e-71dd-472b-9a17-d184f39f5682\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_ae09245e-71dd-472b-9a17-d184f39f5682\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_ae09245e-71dd-472b-9a17-d184f39f5682--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-f097-1001-48eb-726d63abb02e","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_e1716145-5243-45f8-89cc-43ef64c2cc53\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_e1716145-5243-45f8-89cc-43ef64c2cc53\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_e1716145-5243-45f8-89cc-43ef64c2cc53--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00000.response.json index 3afbb15874..726226f116 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-001b-7000-3e95-58f6ab1710f2","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-d09d-1001-48eb-7e6dc881c121","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00001.response.json index c4381ff542..f3cbe283c1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-3020-7000-3703-904cc653fbbe","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-b0a3-1001-1a81-3b90525ad3a7","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00002.response.json index 935905f9de..0e7a8698d1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-c023-7000-3e95-5206cf3f3476","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-b0a8-1001-48eb-7efc1985ad53","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00003.response.json index ea75dde557..e7fe604884 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-0028-7000-3703-9969e571f68b","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-f0ad-1001-48eb-712f71d08ce2","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json index dd0b981789..af22972c17 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"3c84f2a1-4025-f000-3a2b-5c64f2f2c87e","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00220299607f-1525-4d06-9f59-76a814d85b0d\u0022,\u0022Url\u0022:\u0022https://ejazhussain.sharepoint.com/sites/pnpcoresdktest\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-4075-1001-48eb-73f15b90a264","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226bcf4857-8375-4d9c-9c9b-79bad742fbbc\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktest\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json index 5f631db82b..24d978e210 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"3c84f2a1-002f-f000-3a2b-59e8c82c7cd0","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u002200000000-0000-0000-0000-000000000000\u0022,\u0022Id\u0022:\u0022dc9ac6af-e7e8-4ae3-88e1-e158b99dd3d0\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-d07a-1001-1a81-3d1ad01f4c1a","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u002200000000-0000-0000-0000-000000000000\u0022,\u0022Id\u0022:\u0022f6f1a80c-049d-44fb-9995-f5f137b788a9\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json index 3ed4540cf8..0f24567c93 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"3c84f2a1-e033-f000-6d2c-bacb6b3c2940","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d4ad17a2-d07f-1001-48eb-7dfab3b3c642","SPClientServiceRequestDuration":"151","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00000.response.json index f176b17822..cea2ad4339 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-902c-7000-3e95-51ca46f76561","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-80b4-1001-1a81-3a7b127d5b83","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00001.response.json index 1bb7ca5416..cae50a5812 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-c030-7000-3703-96e72a95a900","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-70b9-1001-48eb-74dd95445e3e","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00002.response.json index a43d3c1fc4..6fb79ed4e8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-6035-7000-3e95-54de0cd745ec","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-60be-1001-48eb-72ff9c0d6007","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00003.response.json index 0f2094302f..6060962d24 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-803b-7000-3703-9f83b8783d0e","SPClientServiceRequestDuration":"240","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022d\u0022:{\u0022results\u0022:[{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem844dac05-ca47-4d58-bd71-34c56b589f85\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem844dac05-ca47-4d58-bd71-34c56b589f85\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638237099088270000;784106669\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-06-30T08:18:29Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:76,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00222e276f47-5f88-46c5-b3b3-494c3f978194\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd073aea9-e7e8-47c5-9884-a620f819dc17\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd073aea9-e7e8-47c5-9884-a620f819dc17\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891351070000;798603780\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:15Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem7ed00226-e9fb-4d5a-b654-82c26208af70\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem7ed00226-e9fb-4d5a-b654-82c26208af70\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891451770000;798603819\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:25Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem2ec299fe-523c-43b1-8461-e10d3936d27b\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem2ec299fe-523c-43b1-8461-e10d3936d27b\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891523500000;798603834\u0022},\u0022ChangeType\u0022:3,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:32Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem5e3fc9c8-bd27-470a-acb3-d7da675fc662\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem5e3fc9c8-bd27-470a-acb3-d7da675fc662\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278923437470000;798619187\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T18:05:44Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:76,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00222e276f47-5f88-46c5-b3b3-494c3f978194\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022}]}}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-20c6-1001-1a81-39ad56fcde85","SPClientServiceRequestDuration":"59","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022d\u0022:{\u0022results\u0022:[{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem92509209-42f8-4588-ae23-b25e34a0d04a\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem92509209-42f8-4588-ae23-b25e34a0d04a\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857210670000;975524460\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem0b3529c3-ae84-41b1-bb46-69da7ed5e5b4\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem0b3529c3-ae84-41b1-bb46-69da7ed5e5b4\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857211530000;975524462\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:48:42Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem7220c8aa-72c2-49e4-9be0-92f841fff792\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem7220c8aa-72c2-49e4-9be0-92f841fff792\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857543230000;975524703\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:49:14Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:2,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00224386096b-1ceb-43b0-9e77-098785c1ea28\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemb0d62c81-a12f-4a71-bd71-239aa773c892\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemb0d62c81-a12f-4a71-bd71-239aa773c892\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153999902270000;975606159\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T13:46:31Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:3,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u0022c6d2d653-c9ec-4974-bb2d-620bfd62660a\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemf0e1f8b2-9d02-4f3e-9bc4-5b4bfe21cdf8\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemf0e1f8b2-9d02-4f3e-9bc4-5b4bfe21cdf8\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153999936370000;975606185\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T13:46:33Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022}]}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00000.response.json index ac8d8218f0..c6378b227a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-c04d-7000-3e95-54797ec0f845","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-70cf-1001-48eb-74386beea62a","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00001.response.json index e58a71b71e..de85c7bf52 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-0052-7000-3703-91b78c9f0e49","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-90d4-1001-48eb-79c9a74ccbb8","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00002.response.json index 4f1dbb0b44..d0427ea90c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-9056-7000-3e95-59a9aff168f6","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-40da-1001-1a81-3a84727c6637","SPClientServiceRequestDuration":"32","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00003.response.json index 3c331072f9..345f91b1cf 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-c05a-7000-3703-9b31e97db8e4","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022d\u0022:{\u0022results\u0022:[{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd1e4a9f0-1d58-43dc-84ee-3906d9d65fa4\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd1e4a9f0-1d58-43dc-84ee-3906d9d65fa4\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638237099088270000;784106669\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-06-30T08:18:29Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:76,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00222e276f47-5f88-46c5-b3b3-494c3f978194\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeIteme681c566-3172-4c82-a073-912bed186746\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeIteme681c566-3172-4c82-a073-912bed186746\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891351070000;798603780\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:15Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemb5a97d72-182e-4bc9-9e7b-ef4bbc3a3e5e\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemb5a97d72-182e-4bc9-9e7b-ef4bbc3a3e5e\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891451770000;798603819\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:25Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd15991cc-bb99-45ab-8b5e-31047e9e3235\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd15991cc-bb99-45ab-8b5e-31047e9e3235\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891523500000;798603834\u0022},\u0022ChangeType\u0022:3,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:32Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem2e558835-59a5-4ab3-acbb-5cc0822f03ca\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem2e558835-59a5-4ab3-acbb-5cc0822f03ca\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278923437470000;798619187\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T18:05:44Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:76,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00222e276f47-5f88-46c5-b3b3-494c3f978194\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022}]}}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-d0e0-1001-48eb-703b5ea1595b","SPClientServiceRequestDuration":"51","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022d\u0022:{\u0022results\u0022:[{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem25cbadf7-5a79-4f65-a6df-0b7b931d0bb9\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem25cbadf7-5a79-4f65-a6df-0b7b931d0bb9\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857210670000;975524460\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem083b3020-3c5d-4de4-a95d-907a9bfa3766\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem083b3020-3c5d-4de4-a95d-907a9bfa3766\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857211530000;975524462\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:48:42Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem34e3b3bc-1dd5-4fac-adc5-3b1a87eebe95\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem34e3b3bc-1dd5-4fac-adc5-3b1a87eebe95\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857543230000;975524703\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:49:14Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:2,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00224386096b-1ceb-43b0-9e77-098785c1ea28\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItembbfa9311-045e-4cd2-a78d-a7334d9f8786\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItembbfa9311-045e-4cd2-a78d-a7334d9f8786\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153999902270000;975606159\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T13:46:31Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:3,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u0022c6d2d653-c9ec-4974-bb2d-620bfd62660a\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemf0dc083a-7804-48b2-95ca-bb049a6f7013\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemf0dc083a-7804-48b2-95ca-bb049a6f7013\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153999936370000;975606185\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T13:46:33Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022}]}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00004.response.json index b9ab65fd8f..910c0e8f35 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-a061-7000-3703-9d5e633856c4","SPClientServiceRequestDuration":"39","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_60865fc8-fb31-4fcf-98cf-d28762c72b8e\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=verbose;charset=utf-8\r\n\r\n{\u0022d\u0022:{\u0022results\u0022:[{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem3e1ddffe-d1a5-45f2-baad-8bae507e343b\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem3e1ddffe-d1a5-45f2-baad-8bae507e343b\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638237099088270000;784106669\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-06-30T08:18:29Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:76,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00222e276f47-5f88-46c5-b3b3-494c3f978194\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemf710c91b-8fda-47ec-9b18-ef6983d70b05\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemf710c91b-8fda-47ec-9b18-ef6983d70b05\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891351070000;798603780\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:15Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem1d21beb3-c7f3-40a7-bb97-9c744c84e20e\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem1d21beb3-c7f3-40a7-bb97-9c744c84e20e\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891451770000;798603819\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:25Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd814f0d7-0eaf-4849-9d02-ba445f38208b\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd814f0d7-0eaf-4849-9d02-ba445f38208b\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891523500000;798603834\u0022},\u0022ChangeType\u0022:3,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:32Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItembb087bec-14b5-4e00-8dfe-55bf1f0dec16\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItembb087bec-14b5-4e00-8dfe-55bf1f0dec16\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278923437470000;798619187\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T18:05:44Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:76,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00222e276f47-5f88-46c5-b3b3-494c3f978194\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022}]}}\r\n--batchresponse_60865fc8-fb31-4fcf-98cf-d28762c72b8e--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-90e8-1001-48eb-78e83fdc7bd6","SPClientServiceRequestDuration":"54","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_6e216778-1b9f-4c04-9e7a-668d7ad2eb6c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=verbose;charset=utf-8\r\n\r\n{\u0022d\u0022:{\u0022results\u0022:[{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem9615ab65-e86a-49ca-ab0c-364ef3bc2c9d\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem9615ab65-e86a-49ca-ab0c-364ef3bc2c9d\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857210670000;975524460\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemaad2858c-2abc-4325-a7b2-bd909bed3eac\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemaad2858c-2abc-4325-a7b2-bd909bed3eac\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857211530000;975524462\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:48:42Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem82672a02-55d5-46b4-9126-259eb32db5b3\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem82672a02-55d5-46b4-9126-259eb32db5b3\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857543230000;975524703\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:49:14Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:2,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00224386096b-1ceb-43b0-9e77-098785c1ea28\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem337ddc02-076d-4c78-9150-aa7a52afe663\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem337ddc02-076d-4c78-9150-aa7a52afe663\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153999902270000;975606159\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T13:46:31Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:3,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u0022c6d2d653-c9ec-4974-bb2d-620bfd62660a\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem7c88cd84-0f31-4a11-8e26-3f03d5140346\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem7c88cd84-0f31-4a11-8e26-3f03d5140346\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153999936370000;975606185\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T13:46:33Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022}]}}\r\n--batchresponse_6e216778-1b9f-4c04-9e7a-668d7ad2eb6c--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00000.response.json index 747c30631f..a0b0c6a50b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-8067-7000-3703-9c560a98e58e","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-d0f0-1001-1a81-301427cb6c0a","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00001.response.json index 74c49c70a2..29189141b5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-606b-7000-3703-925ffffa05d4","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-20f6-1001-48eb-7e36aa097be4","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00002.response.json index 4f52e1e56c..a3d1329b79 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-4071-7000-3703-9009668926c5","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222021-09-11T23:42:33\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222023-08-25T09:15:16\u0022,\u0022vti_x005f_timelastwnssent\u0022:\u00222022-08-26T09:54:57\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:8,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:229392,\u0022vti_x005f_storagemetricstotalfilestreamsize\u0022:235131,\u0022vti_x005f_listservertemplate\u0022:101,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:2,\u0022vti_x005f_parentid\u0022:\u0022{695B54D0-9320-4AA3-B5E0-F44E72D9AA44}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Documents\u0022,\u0022vti_x005f_storagemetricslastmodified\u0022:\u00222022-06-22T16:46:08\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{13326E70-58BA-4E0E-9B30-08189F21D555}\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{EE07FD66-8537-446F-A7D8-9FD90393188F}\u0022,\u0022vti_x005f_listname\u0022:\u0022{13326E70-58BA-4E0E-9B30-08189F21D555}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222023-08-25T09:15:16\u0022,\u0022vti_x005f_vroom_x005f_CustomFacets\u0022:\u0022{\\\u0022teachingBubbles_oneDrive\\\u0022:{\\\u0022dcd7409f-bd4d-4b95-aeb4-f1156656b0ab\\\u0022:{\\\u0022d\\\u0022:false,\\\u0022v\\\u0022:1}}}\u0022,\u0022vti_x005f_listflags\u0022:\u002236028797027356812\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_folderitemcount\u0022:3,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_storagemetricstotalsize\u0022:624035,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{EE07FD66-8537-446F-A7D8-9FD90393188F},8\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:8,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_storagemetricsmetadatasize\u0022:4521,\u0022vti_x005f_listenableminorversions\u0022:\u0022false\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:EE07FD66-8537-446F-A7D8-9FD90393188F@00000000008\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222023-08-25T09:10:18\u0022,\u0022vti_x005f_storagemetricstotalfilecount\u0022:4,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_searchversion\u0022:1},\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-20fc-1001-48eb-7942d5940db8","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222026-05-22T21:21:40\u0022,\u0022vti_x005f_contentversionisdirty\u0022:\u0022false\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222026-05-27T09:07:22\u0022,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:5,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:229392,\u0022vti_x005f_contentversion\u0022:0,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:9,\u0022vti_x005f_accesscontrolflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{C80E983D-A0B5-448D-9A9F-9CA22A5F0F64}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Documents\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{B892811A-1A19-42E9-BAD0-705E666F47E7}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{5AE9D725-2C62-418F-BF0A-F361345D8DE5}\u0022,\u0022vti_x005f_listname\u0022:\u0022{B892811A-1A19-42E9-BAD0-705E666F47E7}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222026-05-27T09:07:23\u0022,\u0022vti_x005f_commentcount\u0022:0,\u0022vti_x005f_listflags\u0022:\u002236028797027356812\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:5AE9D725-2C62-418F-BF0A-F361345D8DE5@00000000005\u0022,\u0022vti_x005f_folderitemcount\u0022:22,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_mainlinkdata\u0022:\u0022\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{5AE9D725-2C62-418F-BF0A-F361345D8DE5},5\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:5,\u0022vti_x005f_contenttag\u0022:\u0022{5AE9D725-2C62-418F-BF0A-F361345D8DE5},5,0\u0022,\u0022vti_x005f_listservertemplate\u0022:101,\u0022vti_x005f_listenableminorversions\u0022:\u0022false\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|aram@3fgb00.onmicrosoft.com\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222026-05-27T09:02:31\u0022},\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00000.response.json index 83aa108da1..717fbc5381 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-1077-7000-3703-9efbc6f19386","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-2003-1001-1a81-3efd6fd5cbf1","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00001.response.json index ea382dd9b9..a85275ce82 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-007b-7000-3703-913019a31579","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-e009-1001-48eb-741d288bcb39","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00002.response.json index 8e10285fac..704eb9a2a9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-e07e-7000-3703-9722f0659fa9","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022AllowContentTypes\u0022:true,\u0022BaseTemplate\u0022:101,\u0022BaseType\u0022:1,\u0022ContentTypesEnabled\u0022:false,\u0022CrawlNonDefaultViews\u0022:false,\u0022Created\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022CurrentChangeToken\u0022:{\u0022StringValue\u0022:\u00221;3;13326e70-58ba-4e0e-9b30-08189f21d555;638285517205370000;800429109\u0022},\u0022DefaultContentApprovalWorkflowId\u0022:\u002200000000-0000-0000-0000-000000000000\u0022,\u0022DefaultItemOpenUseListSetting\u0022:false,\u0022Description\u0022:\u0022\u0022,\u0022Direction\u0022:\u0022none\u0022,\u0022DisableCommenting\u0022:false,\u0022DisableGridEditing\u0022:false,\u0022DocumentTemplateUrl\u0022:\u0022/sites/prov-2/Shared Documents/Forms/template.dotx\u0022,\u0022DraftVersionVisibility\u0022:0,\u0022EnableAttachments\u0022:false,\u0022EnableFolderCreation\u0022:true,\u0022EnableMinorVersions\u0022:false,\u0022EnableModeration\u0022:false,\u0022EnableRequestSignOff\u0022:true,\u0022EnableVersioning\u0022:true,\u0022EntityTypeName\u0022:\u0022Shared_x0020_Documents\u0022,\u0022ExemptFromBlockDownloadOfNonViewableFiles\u0022:false,\u0022FileSavePostProcessingEnabled\u0022:false,\u0022ForceCheckout\u0022:false,\u0022HasExternalDataSource\u0022:false,\u0022Hidden\u0022:false,\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022,\u0022ImagePath\u0022:{\u0022DecodedUrl\u0022:\u0022/_layouts/15/images/itdl.png?rev=47\u0022},\u0022ImageUrl\u0022:\u0022/_layouts/15/images/itdl.png?rev=47\u0022,\u0022DefaultSensitivityLabelForLibrary\u0022:\u0022\u0022,\u0022SensitivityLabelToEncryptOnDOwnloadForLibrary\u0022:null,\u0022IrmEnabled\u0022:false,\u0022IrmExpire\u0022:false,\u0022IrmReject\u0022:false,\u0022IsApplicationList\u0022:false,\u0022IsCatalog\u0022:false,\u0022IsPrivate\u0022:false,\u0022ItemCount\u0022:4,\u0022LastItemDeletedDate\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022LastItemModifiedDate\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022LastItemUserModifiedDate\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022ListExperienceOptions\u0022:1,\u0022ListItemEntityTypeFullName\u0022:\u0022SP.Data.Shared_x0020_DocumentsItem\u0022,\u0022MajorVersionLimit\u0022:500,\u0022MajorWithMinorVersionsLimit\u0022:0,\u0022MultipleDataList\u0022:false,\u0022NoCrawl\u0022:false,\u0022ParentWebPath\u0022:{\u0022DecodedUrl\u0022:\u0022/sites/prov-2\u0022},\u0022ParentWebUrl\u0022:\u0022/sites/prov-2\u0022,\u0022ParserDisabled\u0022:false,\u0022ServerTemplateCanCreateFolders\u0022:true,\u0022TemplateFeatureId\u0022:\u002200bfea71-e717-4e80-aa17-d0c71b360101\u0022,\u0022Title\u0022:\u0022Documents\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-600f-1001-48eb-778ed87cb78b","SPClientServiceRequestDuration":"48","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022AllowContentTypes\u0022:true,\u0022BaseTemplate\u0022:101,\u0022BaseType\u0022:1,\u0022ContentTypesEnabled\u0022:false,\u0022CrawlNonDefaultViews\u0022:false,\u0022Created\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022CurrentChangeToken\u0022:{\u0022StringValue\u0022:\u00221;3;b892811a-1a19-42e9-bad0-705e666f47e7;639154696563200000;975854867\u0022},\u0022DefaultContentApprovalWorkflowId\u0022:\u002200000000-0000-0000-0000-000000000000\u0022,\u0022DefaultItemOpenUseListSetting\u0022:false,\u0022Description\u0022:\u0022\u0022,\u0022Direction\u0022:\u0022none\u0022,\u0022DisableCommenting\u0022:false,\u0022DisableGridEditing\u0022:false,\u0022DocumentTemplateUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/Forms/template.dotx\u0022,\u0022DraftVersionVisibility\u0022:0,\u0022EnableAttachments\u0022:false,\u0022EnableFolderCreation\u0022:true,\u0022EnableMinorVersions\u0022:false,\u0022EnableModeration\u0022:false,\u0022EnableRequestSignOff\u0022:true,\u0022EnableVersioning\u0022:true,\u0022EntityTypeName\u0022:\u0022Shared_x0020_Documents\u0022,\u0022ExemptFromBlockDownloadOfNonViewableFiles\u0022:false,\u0022FileSavePostProcessingEnabled\u0022:false,\u0022ForceCheckout\u0022:false,\u0022HasExternalDataSource\u0022:false,\u0022Hidden\u0022:false,\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022,\u0022ImagePath\u0022:{\u0022DecodedUrl\u0022:\u0022/_layouts/15/images/itdl.png?rev=50\u0022},\u0022ImageUrl\u0022:\u0022/_layouts/15/images/itdl.png?rev=50\u0022,\u0022DefaultSensitivityLabelForLibrary\u0022:\u0022\u0022,\u0022SensitivityLabelToEncryptOnDownloadForLibrary\u0022:null,\u0022IrmEnabled\u0022:false,\u0022IrmExpire\u0022:false,\u0022IrmReject\u0022:false,\u0022IsApplicationList\u0022:false,\u0022IsCatalog\u0022:false,\u0022IsPrivate\u0022:false,\u0022ItemCount\u0022:22,\u0022LastItemDeletedDate\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022LastItemModifiedDate\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022LastItemUserModifiedDate\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022ListExperienceOptions\u0022:1,\u0022ListItemEntityTypeFullName\u0022:\u0022SP.Data.Shared_x0020_DocumentsItem\u0022,\u0022MajorVersionLimit\u0022:500,\u0022MajorWithMinorVersionsLimit\u0022:0,\u0022MultipleDataList\u0022:false,\u0022NoCrawl\u0022:false,\u0022ParentWebPath\u0022:{\u0022DecodedUrl\u0022:\u0022/sites/pnpcoresdktestgroup\u0022},\u0022ParentWebUrl\u0022:\u0022/sites/pnpcoresdktestgroup\u0022,\u0022ParserDisabled\u0022:false,\u0022ServerTemplateCanCreateFolders\u0022:true,\u0022TemplateFeatureId\u0022:\u002200bfea71-e717-4e80-aa17-d0c71b360101\u0022,\u0022Title\u0022:\u0022Documents\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00003.response.json index 1833b99d3a..38975afbdb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-c085-7000-3703-929c8dbb3170","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-4017-1001-1a81-3db99b941c9a","SPClientServiceRequestDuration":"32","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00004.response.json index f8caa0160b..9cb44919f7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-a08a-7000-3703-9b9d33d4c5f2","SPClientServiceRequestDuration":"50","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_STORAGE_METRICS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_STORAGE_METRICS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:23Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:23Z\u0022,\u0022UniqueId\u0022:\u0022458aabeb-a3cc-405b-ad0c-cdb9b26ba3ba\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-801d-1001-48eb-767e5b52f60f","SPClientServiceRequestDuration":"73","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_STORAGE_METRICS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_STORAGE_METRICS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:37Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:37Z\u0022,\u0022UniqueId\u0022:\u00227194a794-d0c4-4b3b-93da-b925389b7b93\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00005.response.json index 9cb7059010..4ef75c3e7b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-f091-7000-3e95-5b4d7ab51953","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022StorageMetrics\u0022:{\u0022LastModified\u0022:\u00222023-08-25T09:15:23Z\u0022,\u0022TotalFileCount\u0022:\u00220\u0022,\u0022TotalFileStreamSize\u0022:\u00220\u0022,\u0022TotalSize\u0022:\u0022152\u0022},\u0022UniqueId\u0022:\u0022458aabeb-a3cc-405b-ad0c-cdb9b26ba3ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-1026-1001-48eb-75b2a4e302f3","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022StorageMetrics\u0022:{\u0022AdditionalFileStreamSize\u0022:\u00220\u0022,\u0022LastModified\u0022:\u00222026-05-27T09:07:37Z\u0022,\u0022TotalFileCount\u0022:\u00220\u0022,\u0022TotalFileStreamSize\u0022:\u00220\u0022,\u0022TotalSize\u0022:\u0022152\u0022},\u0022UniqueId\u0022:\u00227194a794-d0c4-4b3b-93da-b925389b7b93\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00006.response.json index 15a6ee4c81..13c2635420 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-5096-7000-3703-9a0beb5dda87","SPClientServiceRequestDuration":"147","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-002c-1001-1a81-3db4fa43711c","SPClientServiceRequestDuration":"136","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00000.response.json index 0192d02d69..12377bfab5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-00a4-7000-3703-924e266f30cc","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-4039-1001-48eb-704b4a4f4964","SPClientServiceRequestDuration":"95","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00001.response.json index 5d8cf90d4e..9a963308eb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-70a7-7000-3e95-52534aa99ec5","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-6043-1001-48eb-7f070dd825eb","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00002.response.json index 69999bb78c..d2d024da05 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-d0ab-7000-3703-9762b9b383db","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-2049-1001-1a81-3b29b13c470f","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00003.response.json index 89ef1d4a6a..f7dadd9e80 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-30b1-7000-3e95-5d058108421b","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222021-10-04T07:41:22\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222023-08-25T09:14:57\u0022,\u0022vti_x005f_timelastwnssent\u0022:\u00222022-08-26T09:54:57\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:6,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:229376,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022IsAttachmentLibrary\u0022:1,\u0022vti_x005f_listtitle\u0022:\u0022Site Assets\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{AC73FAF0-A863-41E6-A565-6C9F705F2D84}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{41F6E832-6AA3-41E1-9754-C56290074888}\u0022,\u0022vti_x005f_listname\u0022:\u0022{AC73FAF0-A863-41E6-A565-6C9F705F2D84}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222023-08-25T09:14:57\u0022,\u0022vti_x005f_listflags\u0022:\u002240532396654727304\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:41F6E832-6AA3-41E1-9754-C56290074888@00000000006\u0022,\u0022vti_x005f_folderitemcount\u0022:2,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{695B54D0-9320-4AA3-B5E0-F44E72D9AA44}\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{41F6E832-6AA3-41E1-9754-C56290074888},6\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:6,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_listservertemplate\u0022:101,\u0022vti_x005f_listenableminorversions\u0022:\u0022false\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222023-08-25T09:10:19\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_searchversion\u0022:1},\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-604f-1001-48eb-713f6b198b34","SPClientServiceRequestDuration":"50","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222026-05-26T09:48:41\u0022,\u0022vti_x005f_contentversionisdirty\u0022:\u0022false\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222026-05-27T09:06:59\u0022,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:2,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:0,\u0022vti_x005f_contentversion\u0022:0,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022vti_x005f_accesscontrolflags\u0022:0,\u0022IsAttachmentLibrary\u0022:1,\u0022vti_x005f_listtitle\u0022:\u0022Site Assets\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{67280ED5-99DC-4E71-89AB-687A6CE76129}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{FEDBE107-CE83-487A-9F35-D90FDC8FDB98}\u0022,\u0022vti_x005f_listname\u0022:\u0022{67280ED5-99DC-4E71-89AB-687A6CE76129}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222026-05-27T09:06:59\u0022,\u0022vti_x005f_commentcount\u0022:0,\u0022vti_x005f_listflags\u0022:\u002240532396654727304\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:FEDBE107-CE83-487A-9F35-D90FDC8FDB98@00000000002\u0022,\u0022vti_x005f_folderitemcount\u0022:3,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{C80E983D-A0B5-448D-9A9F-9CA22A5F0F64}\u0022,\u0022vti_x005f_mainlinkdata\u0022:\u0022\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{FEDBE107-CE83-487A-9F35-D90FDC8FDB98},2\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:2,\u0022vti_x005f_contenttag\u0022:\u0022{FEDBE107-CE83-487A-9F35-D90FDC8FDB98},2,0\u0022,\u0022vti_x005f_listservertemplate\u0022:101,\u0022vti_x005f_listenableminorversions\u0022:\u0022false\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022SHAREPOINT\\\\system\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222026-05-27T09:02:32\u0022},\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00004.response.json index 04fc4be23a..90d1d48de2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-90b5-7000-3703-9b18d2937d18","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222021-10-04T07:41:22\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222023-08-25T09:14:57\u0022,\u0022vti_x005f_timelastwnssent\u0022:\u00222022-08-26T09:54:57\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:6,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:229376,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022IsAttachmentLibrary\u0022:1,\u0022vti_x005f_listtitle\u0022:\u0022Site Assets\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{AC73FAF0-A863-41E6-A565-6C9F705F2D84}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{41F6E832-6AA3-41E1-9754-C56290074888}\u0022,\u0022vti_x005f_listname\u0022:\u0022{AC73FAF0-A863-41E6-A565-6C9F705F2D84}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222023-08-25T09:14:57\u0022,\u0022vti_x005f_listflags\u0022:\u002240532396654727304\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:41F6E832-6AA3-41E1-9754-C56290074888@00000000006\u0022,\u0022vti_x005f_folderitemcount\u0022:2,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{695B54D0-9320-4AA3-B5E0-F44E72D9AA44}\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{41F6E832-6AA3-41E1-9754-C56290074888},6\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:6,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_listservertemplate\u0022:101,\u0022vti_x005f_listenableminorversions\u0022:\u0022false\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222023-08-25T09:10:19\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_searchversion\u0022:1},\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-2057-1001-48eb-76125f70d16b","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222026-05-26T09:48:41\u0022,\u0022vti_x005f_contentversionisdirty\u0022:\u0022false\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222026-05-27T09:06:59\u0022,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:2,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:0,\u0022vti_x005f_contentversion\u0022:0,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022vti_x005f_accesscontrolflags\u0022:0,\u0022IsAttachmentLibrary\u0022:1,\u0022vti_x005f_listtitle\u0022:\u0022Site Assets\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{67280ED5-99DC-4E71-89AB-687A6CE76129}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{FEDBE107-CE83-487A-9F35-D90FDC8FDB98}\u0022,\u0022vti_x005f_listname\u0022:\u0022{67280ED5-99DC-4E71-89AB-687A6CE76129}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222026-05-27T09:06:59\u0022,\u0022vti_x005f_commentcount\u0022:0,\u0022vti_x005f_listflags\u0022:\u002240532396654727304\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:FEDBE107-CE83-487A-9F35-D90FDC8FDB98@00000000002\u0022,\u0022vti_x005f_folderitemcount\u0022:3,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{C80E983D-A0B5-448D-9A9F-9CA22A5F0F64}\u0022,\u0022vti_x005f_mainlinkdata\u0022:\u0022\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{FEDBE107-CE83-487A-9F35-D90FDC8FDB98},2\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:2,\u0022vti_x005f_contenttag\u0022:\u0022{FEDBE107-CE83-487A-9F35-D90FDC8FDB98},2,0\u0022,\u0022vti_x005f_listservertemplate\u0022:101,\u0022vti_x005f_listenableminorversions\u0022:\u0022false\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022SHAREPOINT\\\\system\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222026-05-27T09:02:32\u0022},\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00005.response.json index f9d2390e86..6688e6cb59 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-00ba-7000-3e95-56ab36c8cc2d","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-205d-1001-1a81-3e1fdfc377c0","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00006.response.json index 9525fd2aca..24fb55cd3d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-e0bd-7000-3e95-5d4b92e99dbb","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Folders\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets/Forms\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022UniqueId\u0022:\u0022beaaa33c-c2fd-4f2b-a176-59711e0efacb\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:true,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022prov-2 Notebook\u0022,\u0022ProgID\u0022:\u0022OneNote.Notebook\u0022,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets/prov-2 Notebook\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:43:54Z\u0022,\u0022TimeLastModified\u0022:\u00222021-10-04T07:43:54Z\u0022,\u0022UniqueId\u0022:\u002269fbe9cd-2f9a-43ec-95a2-d72d2f9cf5ac\u0022,\u0022WelcomePage\u0022:\u0022\u0022}],\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-1063-1001-48eb-7bf712d4ef4b","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Folders\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:true,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022PnP Microsoft 365 library test with group Notebook\u0022,\u0022ProgID\u0022:\u0022OneNote.Notebook\u0022,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets/PnP Microsoft 365 library test with group Notebook\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:49:14Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T09:49:14Z\u0022,\u0022UniqueId\u0022:\u00224386096b-1ceb-43b0-9e77-098785c1ea28\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets/Forms\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022UniqueId\u0022:\u0022741d6741-9be5-4fb4-a5e3-d610c98a5271\u0022,\u0022WelcomePage\u0022:\u0022\u0022}],\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00000.response.json index f7e22ec125..f45875847d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-40c3-7000-3703-954ebbb12b9a","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-f068-1001-48eb-7db5ac1ddf80","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00001.response.json index f8a7bf66c9..fa2518060c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-a0c7-7000-3e95-5814f37e1c9f","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-a06e-1001-1a81-3164e6ab0034","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00002.response.json index f0330ca02e..052a1e06e6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-10cb-7000-3703-9cd90f836ee4","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:24Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-c073-1001-48eb-78117278ae7a","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:37Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00000.response.json index b0c69548e2..3b3294e765 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-70cf-7000-3e95-5a5aeeb48579","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-9079-1001-48eb-719517e489af","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00001.response.json index fc3800c22c..77ca909e49 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-e0d3-7000-3703-9717a1be65ed","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-007f-1001-1a81-38503d8e411f","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00002.response.json index c4f55e01c2..529d5bb72d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-40d8-7000-3e95-50e7f6f45e91","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:24Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-3084-1001-48eb-757fa4b3ae38","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:37Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00003.response.json index 539d96de3b..8be97e0798 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-b0dc-7000-3703-9683fa0b924b","SPClientServiceRequestDuration":"53","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:25Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:25Z\u0022,\u0022UniqueId\u0022:\u00223f58eaa3-4e54-486e-a604-1e282a1eecf6\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-e089-1001-48eb-7ac6f5751613","SPClientServiceRequestDuration":"82","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:38Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:38Z\u0022,\u0022UniqueId\u0022:\u002281123da4-d5ec-42e0-8f75-5ea0669cf60f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00004.response.json index 92ef38f7e5..8c4f9550d4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-00e3-7000-3e95-5c11350793aa","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:25Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-a093-1001-1a81-3fd47968ae35","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:23,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:38Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00005.response.json index e4cb387bc4..ac8d9af377 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-90e7-7000-310e-4ef80c956a71","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:25Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:25Z\u0022,\u0022UniqueId\u0022:\u00223f58eaa3-4e54-486e-a604-1e282a1eecf6\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022General\u0022,\u0022ProgID\u0022:\u0022Team.Channel\u0022,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/General\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:43:52Z\u0022,\u0022TimeLastModified\u0022:\u00222023-06-30T08:22:08Z\u0022,\u0022UniqueId\u0022:\u002201793891-c1f8-441d-a982-603f3f8ae98b\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022UniqueId\u0022:\u0022f8306ad1-62f0-42a6-acf7-b391a64b6a10\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/Forms\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-04-21T15:31:00Z\u0022,\u0022UniqueId\u0022:\u002252a2441a-b965-4226-896d-d365d386a6fa\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-7099-1001-48eb-7bea29f17413","SPClientServiceRequestDuration":"46","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingInvitationTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingInvitationTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:44:55Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:44:55Z\u0022,\u0022UniqueId\u0022:\u00220b0fbc6f-a688-4165-a7df-097b85459cd1\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/Forms\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022UniqueId\u0022:\u00220f3489fd-6be4-4358-b1de-44ef8eb2beb4\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingLinkUsersReadPermissionsAndGrantPermissionsTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingLinkUsersReadPermissionsAndGrantPermissionsTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:45:02Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:45:02Z\u0022,\u0022UniqueId\u0022:\u00225faf2af4-7655-48ee-bec6-58c2434196d9\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:38Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:38Z\u0022,\u0022UniqueId\u0022:\u002281123da4-d5ec-42e0-8f75-5ea0669cf60f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingLinkAnonymousWithEditPermissionsAndPasswordTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingLinkAnonymousWithEditPermissionsAndPasswordTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:44:56Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:44:56Z\u0022,\u0022UniqueId\u0022:\u00221ff0b101-d8ff-4f57-9b05-9a98dd74e914\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingLinkUsersReadPermissionsAndRevokePermissionsTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingLinkUsersReadPermissionsAndRevokePermissionsTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:45:05Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:45:05Z\u0022,\u0022UniqueId\u0022:\u002216be8aa4-31fe-4ccf-b093-9ce48812b804\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingLinkUsersReadPermissionsAndRevokePermissionsExceptionTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingLinkUsersReadPermissionsAndRevokePermissionsExceptionTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:45:03Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:45:03Z\u0022,\u0022UniqueId\u0022:\u0022169eca91-98ff-4ecb-8817-b87f4535f402\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022General\u0022,\u0022ProgID\u0022:\u0022Team.Channel\u0022,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/General\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:49:12Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T09:49:12Z\u0022,\u0022UniqueId\u0022:\u00227738957a-3e45-4d87-9f9e-d163bcb72cdb\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingLinkUsersReadPermissionsAndGrantPermissionsExceptionTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingLinkUsersReadPermissionsAndGrantPermissionsExceptionTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:45:01Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:45:01Z\u0022,\u0022UniqueId\u0022:\u002292327450-0062-4c06-bbff-e21b55b33016\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022UniqueId\u0022:\u0022ab9fa9c8-53e0-4335-98a7-e614e0e6d08a\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingLinkAnonymousWithReadPermissionsAndAllowingDownloadIncludingPasswordTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingLinkAnonymousWithReadPermissionsAndAllowingDownloadIncludingPasswordTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:44:58Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:44:58Z\u0022,\u0022UniqueId\u0022:\u0022ec8a349f-1b35-410b-a10c-e802e008778e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00006.response.json index 1b62253278..1098625686 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-40ed-7000-3703-937c9e40fb3d","SPClientServiceRequestDuration":"125","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-90a0-1001-48eb-73fde3be584a","SPClientServiceRequestDuration":"91","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00000.response.json index a416cf4dca..c1ec74c067 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-20f9-7000-310e-4f08db8e2074","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-00ab-1001-1a81-316e9f8a3df2","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00001.response.json index c28492bbf6..79efb59685 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-e0fc-7000-3703-9264b3f1161b","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-70b2-1001-48eb-759ee505b806","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00002.response.json index 14dc0ddfaa..4416218cb2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-f000-7000-310e-43c50be9fbf9","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-90b7-1001-48eb-7fa9545cce69","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00000.response.json index 2fc9a7eae7..25cf7d4743 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-b005-7000-3703-9267140a5f5a","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-b0bd-1001-1a81-338faba09d2d","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00001.response.json index b3dd5e2055..388c5d7758 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-c009-7000-310e-4cea6b90e621","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-a0c2-1001-48eb-7392f099daf9","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00002.response.json index 58b9d6a617..4133518c5b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-800d-7000-3703-9f9a18dc4d08","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-a0c7-1001-48eb-79bbe5728688","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00000.response.json index 13f424463c..d9f4a64fe5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-6011-7000-3703-9f53870577c2","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-c0cd-1001-1a81-3b8e3a92d60c","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00001.response.json index 222f5b18de..2ff1a07970 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-8015-7000-310e-4487fc43fe44","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-a0d2-1001-48eb-746e1a5f78a7","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00002.response.json index 483aead278..7ea6ad0d15 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-301a-7000-3703-96d1eb51964c","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:25Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-60d8-1001-48eb-76150f7b8a91","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:39Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00003.response.json index b57756dbf8..119c85f654 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-401e-7000-310e-4564d4585981","SPClientServiceRequestDuration":"50","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022UniqueId\u0022:\u00225b52f7d7-9192-4547-9b1d-5fa776a90579\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-20de-1001-1a81-30ec4f7dded8","SPClientServiceRequestDuration":"77","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022UniqueId\u0022:\u00221d82f036-394f-4a71-8d71-7ec85aae703f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00000.response.json index d2d85ab366..720a91baf1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-f023-7000-3703-992964787983","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-40e7-1001-48eb-7af6e4a71261","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00001.response.json index 9741786a41..a280f3f252 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-0029-7000-310e-49f4520325f8","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-70ec-1001-48eb-790f5bd0b7ca","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00002.response.json index c7834a2dc1..c2bba0eb3f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-c02c-7000-3703-92cf9eb72188","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022UniqueId\u0022:\u00225b52f7d7-9192-4547-9b1d-5fa776a90579\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-10f2-1001-1a81-31aafc32e4f9","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022UniqueId\u0022:\u00221d82f036-394f-4a71-8d71-7ec85aae703f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00003.response.json index ef412de6c1..f3d2912709 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-d031-7000-310e-42e5c7b8ff15","SPClientServiceRequestDuration":"200","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_f70e66b5-c4e3-48bc-841d-06346decac7f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_f70e66b5-c4e3-48bc-841d-06346decac7f--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-30f8-1001-48eb-768cb6f54dc8","SPClientServiceRequestDuration":"149","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_125e0baa-d4ea-4f4e-b26d-b7b780460524\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_125e0baa-d4ea-4f4e-b26d-b7b780460524--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00004.response.json index 2f6ffbcd32..923bda90c0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-4042-7000-3703-98ef5b864421","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022UniqueId\u0022:\u00225b52f7d7-9192-4547-9b1d-5fa776a90579\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-9005-1001-48eb-7c88fb0883a9","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022UniqueId\u0022:\u00221d82f036-394f-4a71-8d71-7ec85aae703f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00000.response.json index a7ccb552c9..2a7ffddaaf 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-5046-7000-310e-46f38c5edc7e","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-300b-1001-1a81-3361b19ea30e","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00001.response.json index eebe36c010..e7b69de49d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-004b-7000-3703-931003f6fe91","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-5010-1001-48eb-72bcf314c9a0","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00002.response.json index a190575f42..8dc843a36f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-104f-7000-310e-437d95e85f61","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022UniqueId\u0022:\u00225b52f7d7-9192-4547-9b1d-5fa776a90579\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-0015-1001-48eb-79cbfc84b110","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022UniqueId\u0022:\u00221d82f036-394f-4a71-8d71-7ec85aae703f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00003.response.json index 0dc2d26ae8..ddf9e34285 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-d052-7000-3703-9688562b6afd","SPClientServiceRequestDuration":"118","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-a01a-1001-1a81-34648d9095b1","SPClientServiceRequestDuration":"172","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00000.response.json index 2fcacf2e22..67db0f715e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-4071-7000-310e-492714dceed3","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-8048-1001-48eb-76f89bdf0298","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00001.response.json index 9f05731e7b..06a9265204 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-0076-7000-3703-9a5e2f52e812","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-204e-1001-1a81-3f07d719a80e","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00002.response.json index 15940afbca..52c607825a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-e079-7000-3703-924166ccea0f","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-5053-1001-48eb-73d30ed882e5","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:23,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:41Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00003.response.json index a590942ca7..569f47c392 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-c07e-7000-3703-920e1d518bdc","SPClientServiceRequestDuration":"52","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_EXISTING_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022UniqueId\u0022:\u002260d36915-cc25-478f-9589-ed5c75b39ae1\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-3059-1001-48eb-7fc6be8b3441","SPClientServiceRequestDuration":"141","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_EXISTING_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:42Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:42Z\u0022,\u0022UniqueId\u0022:\u0022642a5375-a9aa-41ad-8ec1-9a8d88a4f826\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00000.response.json index 33d293ee35..2e214df291 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-9086-7000-3703-9e3bbff8aab0","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-a067-1001-1a81-3173b732253a","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00001.response.json index de8d3172f5..e60fdd4212 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-808a-7000-3703-943363e1902b","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-e06c-1001-48eb-72d1a8553071","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00002.response.json index 8bbd8b9d10..cdc0cbecca 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-608e-7000-310e-41a283d29a26","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022UniqueId\u0022:\u0022e2c8a73d-8c32-416e-b612-b9837c400530\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-0073-1001-48eb-7f7a42ea09de","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:41Z\u0022,\u0022UniqueId\u0022:\u00223340ec62-0f37-42b7-8066-30133e530bbd\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00003.response.json index ead7882dbb..9fac60475e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-5093-7000-3703-94f51e94d595","SPClientServiceRequestDuration":"117","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_aece1142-39da-4587-bf4b-ef90871d4337\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_aece1142-39da-4587-bf4b-ef90871d4337--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-707a-1001-1a81-337a3433eb44","SPClientServiceRequestDuration":"171","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_ff35a260-e3bb-44f0-af15-9db2824fdd18\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_ff35a260-e3bb-44f0-af15-9db2824fdd18--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00004.response.json index d756e8d1e7..a023f9495e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-f09e-7000-310e-4a76203d9fac","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:5,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-3089-1001-48eb-76d63056046a","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:24,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:42Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00005.response.json index b5dd7d515e..536ae3ed7b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-e0a3-7000-3703-952302bf8e28","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:28Z\u0022,\u0022UniqueId\u0022:\u0022e2c8a73d-8c32-416e-b612-b9837c400530\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-008f-1001-48eb-77596b1a5230","SPClientServiceRequestDuration":"34","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:42Z\u0022,\u0022UniqueId\u0022:\u00223340ec62-0f37-42b7-8066-30133e530bbd\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00000.response.json index d97e8d4940..4bdfddbbad 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-20c0-7000-310e-436167402ffd","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-10af-1001-48eb-74ebb897ada2","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00001.response.json index 09241cb603..c0063fd22b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-20c4-7000-3703-9ad2ea644501","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-70b4-1001-48eb-7bd6594d2b09","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00002.response.json index 422844ed66..c1415e04a6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-00c8-7000-310e-435b40581bfc","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:28Z\u0022,\u0022UniqueId\u0022:\u0022e2c8a73d-8c32-416e-b612-b9837c400530\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-80b9-1001-1a81-318f3ea863ca","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:42Z\u0022,\u0022UniqueId\u0022:\u00223340ec62-0f37-42b7-8066-30133e530bbd\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00003.response.json index 07d5cb68ae..bead84c5d8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-f0cb-7000-3703-9daf95132a9f","SPClientServiceRequestDuration":"104","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-10bf-1001-48eb-7afdfbe866d0","SPClientServiceRequestDuration":"97","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00000.response.json index 0cee49aa54..a2e7c5bce4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-a0d5-7000-310e-4144e51582a8","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-60c9-1001-48eb-76b15dec75ea","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00001.response.json index c3dc98be56..23d706b6ae 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-a0d9-7000-3703-9f5fde7231fd","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-f0ce-1001-1a81-3891c7eebf08","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00002.response.json index 169551e4d3..b8e704547b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-70de-7000-310e-4f557e7bccdb","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:28Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-e0d3-1001-48eb-7f48793c7230","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:43Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00003.response.json index 37ea60b666..e2d434a2e4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-60e2-7000-3703-9e6660613825","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022UniqueId\u0022:\u0022c348b310-a286-4855-a475-ff549c0aa3b3\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-a0d9-1001-48eb-74e47b6fe85d","SPClientServiceRequestDuration":"85","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022UniqueId\u0022:\u0022dbe276ac-fe48-4422-ab80-d85334b365ec\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00000.response.json index cb6b88dc43..d0a5e4c932 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-40e9-7000-3703-90928e6034b2","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-e0e3-1001-1a81-3d63685dc6c9","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00001.response.json index 18f1b7cb10..5ace625d47 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-10ed-7000-310e-4034614b5515","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-90e8-1001-48eb-7e2132958658","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00002.response.json index 7093449056..648d88094e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-10f1-7000-3703-911141e81e62","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022UniqueId\u0022:\u0022c348b310-a286-4855-a475-ff549c0aa3b3\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-d0ed-1001-48eb-77dc94ab3b44","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022UniqueId\u0022:\u0022dbe276ac-fe48-4422-ab80-d85334b365ec\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00003.response.json index 6883da738a..dc3a8f9777 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-f0f4-7000-3703-9da1b83f110a","SPClientServiceRequestDuration":"106","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_fbeedf8b-efca-47a6-9079-8d5d7105bab6\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_fbeedf8b-efca-47a6-9079-8d5d7105bab6--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-c0f2-1001-1a81-3a03ead67dad","SPClientServiceRequestDuration":"134","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_c0c04a76-685c-47c6-819b-98e121af84f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_c0c04a76-685c-47c6-819b-98e121af84f1--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00004.response.json index 234ce92be7..6778cfcc78 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-b000-7000-3703-93fdf0d261fc","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022UniqueId\u0022:\u0022c348b310-a286-4855-a475-ff549c0aa3b3\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-f0ff-1001-48eb-7dbfdf7253ac","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022UniqueId\u0022:\u0022dbe276ac-fe48-4422-ab80-d85334b365ec\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00000.response.json index 7e3ac7a4f9..42ae1a1828 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-8005-7000-310e-416a690adfb6","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-6005-1001-48eb-71fbf7c0a9a8","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00001.response.json index c28eda2628..c69e975c07 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-700a-7000-3703-9539861f5fdd","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-500a-1001-1a81-361b2ad698ef","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00002.response.json index 035fcdefba..888e699f78 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-500e-7000-3703-9483098eda5e","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022UniqueId\u0022:\u0022c348b310-a286-4855-a475-ff549c0aa3b3\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-3010-1001-48eb-7a2004f0eb95","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022UniqueId\u0022:\u0022dbe276ac-fe48-4422-ab80-d85334b365ec\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00003.response.json index f61b575703..cbf831d2e5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-4013-7000-3703-9ae498ca51ff","SPClientServiceRequestDuration":"105","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-a015-1001-48eb-79af54ca8541","SPClientServiceRequestDuration":"84","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00000.response.json index cda193bc16..ee91d4380a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-001d-7000-3703-975722caa54d","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-507a-1001-48eb-7dac76e27842","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00001.response.json index 717079a888..b554d650ec 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-e020-7000-3703-9416793f511e","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-507f-1001-48eb-7e2c2260bae9","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00002.response.json index bf07fee88b..d00b827eb2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-d024-7000-3703-94c4a29b0108","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-4084-1001-1a81-33428bc092e3","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:46Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00003.response.json index c27337f27a..5ad7fb4e93 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-b029-7000-3703-9f5ebc335ed1","SPClientServiceRequestDuration":"43","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022UniqueId\u0022:\u0022dd24d560-3fda-4813-9dd8-25037ff0e423\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-b089-1001-48eb-72181818a9b5","SPClientServiceRequestDuration":"73","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022UniqueId\u0022:\u0022bb4f5463-3f66-4f0b-9c4d-46eaeb513b77\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00000.response.json index cc796207e1..bac918f3e7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-902f-7000-3703-95d4a3148ea0","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-e091-1001-48eb-7f5b667e4b7a","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00001.response.json index 1585ca1430..81aded710f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-a033-7000-3e95-59f0b006cfce","SPClientServiceRequestDuration":"6","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-9097-1001-1a81-35815c1866b7","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00002.response.json index f238a8e99c..1ecd4db18c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-5038-7000-3703-9c9ceb0bd6af","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022UniqueId\u0022:\u0022dd24d560-3fda-4813-9dd8-25037ff0e423\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-b09b-1001-48eb-7f86a5b8d018","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022UniqueId\u0022:\u0022bb4f5463-3f66-4f0b-9c4d-46eaeb513b77\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00003.response.json index a49185bf8a..bbc2f4acee 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-603d-7000-3e95-563d3d6cfdfb","SPClientServiceRequestDuration":"150","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_bb71de9d-b596-4104-bc54-30f7939f07dc\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_bb71de9d-b596-4104-bc54-30f7939f07dc--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-20a2-1001-48eb-76329f87b1da","SPClientServiceRequestDuration":"143","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_45b3676a-4573-4270-a3a2-c54394ecadf9\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_45b3676a-4573-4270-a3a2-c54394ecadf9--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00004.response.json index 4b6fe18580..c05f395ea0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-f049-7000-3703-94cebf01881b","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022UniqueId\u0022:\u0022dd24d560-3fda-4813-9dd8-25037ff0e423\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-70ae-1001-1a81-37b60fee50d8","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022UniqueId\u0022:\u0022bb4f5463-3f66-4f0b-9c4d-46eaeb513b77\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00000.response.json index 4202263032..baf0e77f76 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-004e-7000-3e95-52a363e9cf49","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-60b7-1001-48eb-74f7be9e9fa8","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00001.response.json index 79913aa54c..4547191628 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-b052-7000-3703-9806f73f29a6","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-30bc-1001-48eb-7347fa690a13","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00002.response.json index be15ed7e20..16a3d650bb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-d056-7000-3e95-572dc9553737","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022UniqueId\u0022:\u0022dd24d560-3fda-4813-9dd8-25037ff0e423\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-60c1-1001-1a81-3f1d47fd9f05","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022UniqueId\u0022:\u0022bb4f5463-3f66-4f0b-9c4d-46eaeb513b77\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00003.response.json index 8ea24a288a..d62a28bb42 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-805b-7000-3703-946f0772bf2a","SPClientServiceRequestDuration":"124","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-d0c6-1001-48eb-774ad4670cdf","SPClientServiceRequestDuration":"82","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00000.response.json index 183fe48b7a..e28863b5e3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-7066-7000-3e95-542f5760c4f0","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-501f-1001-1a81-3740c6555636","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00001.response.json index 465951f8ba..373f63f22f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-206a-7000-3703-902afcbd18a3","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-a024-1001-48eb-7f624306c233","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00002.response.json index 332d9b00eb..c047199669 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-306f-7000-3e95-5fdecbb2ce23","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-d029-1001-48eb-7fa8a6a681a3","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00003.response.json index 62d6d33247..62f25aab2a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-f072-7000-3703-9d86a4d2d1d8","SPClientServiceRequestDuration":"46","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022UniqueId\u0022:\u0022340a31ab-5d86-475c-8166-5b46466ee1ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-d02f-1001-1a81-313f100b7bdf","SPClientServiceRequestDuration":"98","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022UniqueId\u0022:\u0022406e46f3-f424-42d0-8f0a-55900eb643ed\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00000.response.json index 2a9ec64986..6347af389b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-f07a-7000-3e95-54be4ba58c8b","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-303a-1001-48eb-72270b4d7821","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00001.response.json index c3bc7ade1d..19367060e1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-9082-7000-3703-9a4af9b98dae","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-303f-1001-48eb-737d69b13a7f","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00002.response.json index 088e15b71d..f96cc609ec 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-a087-7000-3e95-5762687572dc","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022UniqueId\u0022:\u0022340a31ab-5d86-475c-8166-5b46466ee1ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-8044-1001-1a81-33b4db3faa43","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022UniqueId\u0022:\u0022406e46f3-f424-42d0-8f0a-55900eb643ed\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00003.response.json index c81736da38..f3c39293d3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-608b-7000-3703-9455418320aa","SPClientServiceRequestDuration":"102","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_6b0ee64e-3a68-4566-a8da-152fc4f88fb3\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_6b0ee64e-3a68-4566-a8da-152fc4f88fb3--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-404a-1001-48eb-7ebfc8261bed","SPClientServiceRequestDuration":"139","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_7fb83bea-3154-41de-9508-1419286a54c8\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_7fb83bea-3154-41de-9508-1419286a54c8--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00004.response.json index b3fa9bbcec..30852d0037 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-5095-7000-3e95-5e87b167b098","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022UniqueId\u0022:\u0022340a31ab-5d86-475c-8166-5b46466ee1ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-0057-1001-48eb-70bbf504c063","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:46Z\u0022,\u0022UniqueId\u0022:\u0022406e46f3-f424-42d0-8f0a-55900eb643ed\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00000.response.json index df15280165..836b371249 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-0099-7000-3703-9cf83fb879d4","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-005d-1001-1a81-33cfd40a6f8c","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00001.response.json index 8f6a9fa752..29e05f17e0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-109e-7000-3e95-504f1e9245ec","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-3065-1001-48eb-783d6569fef4","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00002.response.json index 8eeb5d60fc..38221a17a0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-d0a1-7000-3703-9921405f5359","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022UniqueId\u0022:\u0022340a31ab-5d86-475c-8166-5b46466ee1ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-606a-1001-48eb-72cd86315ff0","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:46Z\u0022,\u0022UniqueId\u0022:\u0022406e46f3-f424-42d0-8f0a-55900eb643ed\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00003.response.json index fa94e2674d..82ad4696ae 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-e0a5-7000-3e95-595a1b94087c","SPClientServiceRequestDuration":"125","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-0070-1001-1a81-356d11480884","SPClientServiceRequestDuration":"90","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00000.response.json index 7afbf898f7..a996f33c71 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-e0c7-7000-3703-9207f0a13c42","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-90ea-1001-1a81-320e4fcf9a70","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00001.response.json index 5f62895c87..14b5ab2053 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-d0cc-7000-3703-970b811c055b","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-a0ef-1001-48eb-7bb11619eee1","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00002.response.json index bea8e30216..2fab5acb34 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-b0d0-7000-3703-9300eec345a7","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:32Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-00f5-1001-48eb-762de16deda1","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:23,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00003.response.json index 267a8b8f95..b7f69687bb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-90d5-7000-3703-984131279f8c","SPClientServiceRequestDuration":"63","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_EXISTING_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:33Z\u0022,\u0022UniqueId\u0022:\u00222ecd8291-72b9-4d0e-bdc6-a1045ba7c36e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-70fb-1001-1a81-36dc424e19b1","SPClientServiceRequestDuration":"80","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_EXISTING_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022UniqueId\u0022:\u00220b796e08-e27e-4a36-9f16-3b95b6581984\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00000.response.json index fc72c2ce91..7a9ec5eb26 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-60dd-7000-3703-9b772b76808d","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-c004-1001-48eb-7a4269596997","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00001.response.json index 4a33e6ec9e..506bb0773b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-50e1-7000-3703-9d00c8e704b8","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-f009-1001-48eb-71e0a1a3f70b","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00002.response.json index 573622ab48..d7afdff7f0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-20e7-7000-3703-9d9d7711b3fd","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:32Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:32Z\u0022,\u0022UniqueId\u0022:\u00229a2e7d27-c2f5-44ca-bb8d-792a5b829934\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-900f-1001-1a81-361adf040d77","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022UniqueId\u0022:\u0022034ade05-eb35-4cd6-b54d-34974588fc20\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00003.response.json index 7e824efa2b..ca242aae36 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-10ec-7000-3703-933116d4899f","SPClientServiceRequestDuration":"132","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-b015-1001-48eb-771b8c962f5e","SPClientServiceRequestDuration":"143","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00004.response.json index 7c4d6b55c4..2d40fc4ae1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-c0f7-7000-3703-95e4040a0877","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:5,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:33Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-5026-1001-48eb-799686eaa21d","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:24,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00005.response.json index b01b4f821a..c3629254a2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-a0fc-7000-3703-98f15bc95b00","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:32Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:33Z\u0022,\u0022UniqueId\u0022:\u00229a2e7d27-c2f5-44ca-bb8d-792a5b829934\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-f02c-1001-1a81-3ea4c160d276","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:49Z\u0022,\u0022UniqueId\u0022:\u0022034ade05-eb35-4cd6-b54d-34974588fc20\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00000.response.json index 5eccac8fde..a1451bf1b7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-f018-7000-3703-9b6e20bccc84","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-7054-1001-48eb-70bff3ff40a8","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00001.response.json index 6a63f3e1e7..da5899159e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-e01c-7000-3703-9abbe0ac52b5","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-105a-1001-1a81-3a1a2c2ecc5f","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00002.response.json index 5a609360f6..91226ff26e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-c021-7000-3703-94082c0e5a50","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:32Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:33Z\u0022,\u0022UniqueId\u0022:\u00229a2e7d27-c2f5-44ca-bb8d-792a5b829934\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-005f-1001-48eb-784ebcd7d031","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:49Z\u0022,\u0022UniqueId\u0022:\u0022034ade05-eb35-4cd6-b54d-34974588fc20\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00003.response.json index cfb880f053..84da60fb48 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-a026-7000-3703-9c25513a5fda","SPClientServiceRequestDuration":"128","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-6065-1001-48eb-79d2e58c8a02","SPClientServiceRequestDuration":"90","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00000.response.json index c1c29a06a5..0b7f5b4943 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-6032-7000-3703-94a7a510c398","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-e06f-1001-1a81-3c904b0c722c","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00001.response.json index a848b5ac75..be63c7fd0c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-4036-7000-3703-994875f2309a","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-4075-1001-48eb-74ad68b6397e","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00002.response.json index b99ae1c433..c3a70f57f1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-303a-7000-3703-98c4b0c2dc8d","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-107a-1001-48eb-7d70a797dbb9","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00003.response.json index cbac554a56..031841b496 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-103e-7000-3703-982daaa20c08","SPClientServiceRequestDuration":"55","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022UniqueId\u0022:\u0022e9db7b39-3722-4d74-bc4d-7eaea4291fe7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-8082-1001-1a81-3e3e9f169ba1","SPClientServiceRequestDuration":"116","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022UniqueId\u0022:\u002294b15700-f615-4668-9679-0f8c64563bde\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00000.response.json index d5d7f87a4d..b7401301f3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-e045-7000-3703-932999f5f7f4","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-308e-1001-48eb-7a4a5d96abb1","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00001.response.json index 46c6ad0482..bd060054f5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-d049-7000-3703-91d3d3ba4f53","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-2093-1001-48eb-767d2f7ff7d2","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00002.response.json index 3ecb3ebd70..9bf805ec19 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-b04e-7000-3703-9e1e1ed4ef78","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022UniqueId\u0022:\u0022e9db7b39-3722-4d74-bc4d-7eaea4291fe7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-e098-1001-1a81-3cc0e7d2613a","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022UniqueId\u0022:\u002294b15700-f615-4668-9679-0f8c64563bde\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00003.response.json index 1321d5ef16..33a6ce952d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-9052-7000-3703-9033f90bece5","SPClientServiceRequestDuration":"131","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-809f-1001-48eb-75a58f2b17da","SPClientServiceRequestDuration":"168","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00004.response.json index 9c2cbb5e58..eee52b19b8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-b05e-6000-fe75-f769f67b64d6","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022UniqueId\u0022:\u0022e9db7b39-3722-4d74-bc4d-7eaea4291fe7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-30ae-1001-48eb-7a42c37ceecf","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:51Z\u0022,\u0022UniqueId\u0022:\u002294b15700-f615-4668-9679-0f8c64563bde\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00000.response.json index 26273b4c29..8649be8396 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-3063-7000-3703-9e3c41ded559","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-70b4-1001-1a81-3e3ef24e4251","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00001.response.json index b33756c76a..facd63abc5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-8067-6000-fe75-f7f3ba65ab47","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-50ba-1001-48eb-70a6a126ea5f","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00002.response.json index 817ae98936..e476e47f5b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-006b-7000-3703-9dc6d4f331f1","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022UniqueId\u0022:\u0022e9db7b39-3722-4d74-bc4d-7eaea4291fe7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-b0bf-1001-48eb-7e31cd921392","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:51Z\u0022,\u0022UniqueId\u0022:\u002294b15700-f615-4668-9679-0f8c64563bde\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00003.response.json index 3cc9072735..195e10581d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-506f-6000-fe75-fe891e233ad8","SPClientServiceRequestDuration":"170","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-a0c5-1001-1a81-339da3903db1","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00000.response.json index cae24b4e0c..7ffb23ea4e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-907d-7000-3703-938e4fac5ec4","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-d0cf-1001-48eb-724bfdd81bfa","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00001.response.json index 902dd3b325..878ed8f8c4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-e081-6000-fe75-f48a1fe59c19","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-a0d5-1001-48eb-70cec43de7a1","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00002.response.json index e484ea0ac2..8f871c6614 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-6085-7000-3703-9ff15ce6c8a5","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-30db-1001-1a81-3ea5216d228a","SPClientServiceRequestDuration":"32","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00003.response.json index edeabad907..91895f8f77 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-b089-6000-fe75-fb2ff121f8b7","SPClientServiceRequestDuration":"46","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022UniqueId\u0022:\u0022f1fa4492-bd2a-4afa-8c0e-78ab0abb503d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-60e1-1001-48eb-7a8ff43bd7e0","SPClientServiceRequestDuration":"73","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022UniqueId\u0022:\u00226cc5df37-8a96-4297-8b87-76154be609a8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00000.response.json index ac2fd0c38f..91727d60ee 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-8090-6000-fe75-f1d14c90802b","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-50ea-1001-48eb-79acdd753530","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00001.response.json index e26429c017..122a70dd64 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-0094-7000-3703-9a06b37f9f36","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-c0ef-1001-1a81-35787ddc154c","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00002.response.json index d1314df665..8932bcf7f3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-5098-6000-fe75-fe82c7c56fb5","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022UniqueId\u0022:\u0022f1fa4492-bd2a-4afa-8c0e-78ab0abb503d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-10f5-1001-48eb-7a3dbfb1f6ed","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022UniqueId\u0022:\u00226cc5df37-8a96-4297-8b87-76154be609a8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00003.response.json index 7ccf198860..8ea691080e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-d09c-7000-3703-933b22882448","SPClientServiceRequestDuration":"95","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-f0fa-1001-48eb-7070f765fa74","SPClientServiceRequestDuration":"151","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00004.response.json index 6ee905f63c..4e9c9063ea 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-00a6-6000-fe75-f55af7e91800","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:36Z\u0022,\u0022UniqueId\u0022:\u0022f1fa4492-bd2a-4afa-8c0e-78ab0abb503d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-a008-1001-1a81-37b3d928f128","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022UniqueId\u0022:\u00226cc5df37-8a96-4297-8b87-76154be609a8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00000.response.json index c4cc57e1a7..52b09986b5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-80aa-7000-3703-95328fcd1395","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-300e-1001-48eb-7b069f0edb9f","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00001.response.json index ef80b7048e..0f524072e8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-d0ae-6000-fe75-f12f99e20827","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-3013-1001-48eb-7ad29385a87d","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00002.response.json index 22fedb0be3..d370b61721 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-50b2-7000-3703-937a9a4dbeba","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:36Z\u0022,\u0022UniqueId\u0022:\u0022f1fa4492-bd2a-4afa-8c0e-78ab0abb503d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-4018-1001-1a81-31e836c15bd1","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022UniqueId\u0022:\u00226cc5df37-8a96-4297-8b87-76154be609a8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00003.response.json index 2d72eb8d58..bd268ee0f3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-90b6-6000-fe75-f4d216cff64a","SPClientServiceRequestDuration":"123","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-c01d-1001-48eb-7b3058f76516","SPClientServiceRequestDuration":"171","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00000.response.json index c1d5635ebe..8b3f597dcf 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-f0c1-7000-3703-91190356f2ba","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-b02c-1001-48eb-7dab8be5fb75","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00001.response.json index 18dc2db004..db4ac6ab7b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-30c6-6000-fe75-fa04988362a3","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-7032-1001-1a81-38ab24e05b3c","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00002.response.json index 8f2c920bbd..1068a77090 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-b0ca-7000-3703-911a550189a5","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:36Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-b037-1001-48eb-7f772d30a203","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00003.response.json index 40e2ce8a5f..138ecd07a5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-00cf-6000-fe75-f7e69d8ae8e2","SPClientServiceRequestDuration":"55","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_QUERY\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_QUERY\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022UniqueId\u0022:\u00221661d4a5-dca9-41f0-95b3-3cf0cdfea294\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-703d-1001-48eb-76931c79a8f5","SPClientServiceRequestDuration":"90","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_QUERY\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_QUERY\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022UniqueId\u0022:\u00228e6fce64-26e0-4eac-8fe0-11abc44428cf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00000.response.json index abee79be24..059a9f30f4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-70d5-7000-3703-9315e80a4b87","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-6047-1001-1a81-3ba30b461eb0","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00001.response.json index 1c656d825f..8530f74ea8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-c0d9-6000-fe75-f7c4eca4c7d7","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-404c-1001-48eb-7525146a8c20","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00002.response.json index e9c2a487b3..425a9284c5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-40de-7000-3703-9c437fe39fb9","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-7051-1001-48eb-753890a2804b","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:23,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00003.response.json index b1922ee746..c0c20fe627 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-90e2-6000-fe75-f27d2ed9644d","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_QUERY\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_QUERY\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022UniqueId\u0022:\u00221661d4a5-dca9-41f0-95b3-3cf0cdfea294\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-4057-1001-1a81-3eac79e53f55","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_QUERY\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_QUERY\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022UniqueId\u0022:\u00228e6fce64-26e0-4eac-8fe0-11abc44428cf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00000.response.json index 10e8dd0402..48451c3f6e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-00e7-7000-3703-9783b70450cf","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-505d-1001-48eb-799c85a29b35","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00001.response.json index d04f94bcc4..ba97eda9c0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-50ec-6000-fe75-f30776d4aa23","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-7062-1001-48eb-775f4f0ad2b3","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00002.response.json index 4ea8ac3c83..3a2fcdfbb5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-d0f0-7000-3703-91c749880617","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_QUERY\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_QUERY\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022UniqueId\u0022:\u00221661d4a5-dca9-41f0-95b3-3cf0cdfea294\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-6067-1001-1a81-3c7a667f2cba","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_QUERY\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_QUERY\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022UniqueId\u0022:\u00228e6fce64-26e0-4eac-8fe0-11abc44428cf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00003.response.json index e782ac6af7..ca17611584 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-10f5-6000-fe75-ff27e517010d","SPClientServiceRequestDuration":"111","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-c06c-1001-48eb-7877d13baac8","SPClientServiceRequestDuration":"100","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00000.response.json index efd128edd6..7a31d6b687 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-205e-b000-e9b0-1c2b6c1761d9","SPClientServiceRequestDuration":"588","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-5013-1001-48eb-7a11017c66fb","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00001.response.json index 6df3b34730..252961ace2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-40ac-b000-e9b0-1bb4ceef1dcc","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-0068-1001-48eb-72ac7978133a","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00002.response.json index cce540c811..3deae0fd39 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-00b6-b000-e9b0-192c24b3a47a","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222024-11-25T09:11:27Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-506d-1001-48eb-77842e386cd9","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:54Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00003.response.json index ce70c49262..76d0ae1f51 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-c0c1-b000-e9b0-1995307b2be5","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:02:39Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:02:39Z\u0022,\u0022UniqueId\u0022:\u00221f101c22-6ac6-46e3-a877-ecdcaa66ced9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-6076-1001-1a81-3e637210f4a3","SPClientServiceRequestDuration":"88","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:58Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:58Z\u0022,\u0022UniqueId\u0022:\u00223a2140cc-5443-4237-a5a7-4355e75ad577\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00000.response.json index 630f216a4c..92f84343ec 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-70cf-b000-e9b0-1a96bc4fbb8c","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-d080-1001-48eb-7e411652d8ee","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00001.response.json index 234b9d801d..cd2bb74c75 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-30da-b000-e9b0-112eb0dc6dc8","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-4086-1001-48eb-77d8457a227a","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00002.response.json index f7b0332624..9721603265 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-f0e2-b000-e9b0-15b711ebe6ee","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:02:39Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:02:39Z\u0022,\u0022UniqueId\u0022:\u00221f101c22-6ac6-46e3-a877-ecdcaa66ced9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-508b-1001-1a81-3705feddbf08","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:58Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:58Z\u0022,\u0022UniqueId\u0022:\u00223a2140cc-5443-4237-a5a7-4355e75ad577\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00003.response.json index cfd8062437..abe164bfa0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-b0ed-b000-e9b0-1df7ff71a153","SPClientServiceRequestDuration":"373","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u0022fb7caefe-f1f9-4897-a22b-0293f7f53a24\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-d091-1001-48eb-7deed529ef2f","SPClientServiceRequestDuration":"75","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u0022ad8b9d36-91c9-49f7-9292-9a066024d662\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00004.response.json index 7cdb24eef2..b18ca28eef 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6b889a1-f00d-b000-e9b0-12022539f19d","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:02:40Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-409e-1001-48eb-74b140bcec81","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:59Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00005.response.json index 6267610a59..51b2824f1d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6b889a1-a019-b000-e9b0-1e042a3f4b52","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-00a4-1001-1a81-34099cd2dbc8","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00006.response.json index ed39c2ebb5..1f07f8961c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6b889a1-6024-b000-e9b0-145e6405ccfa","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:02:40Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:02 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/Shared Documents\u0022},\u0022Id\u0022:\u0022fb7caefe-f1f9-4897-a22b-0293f7f53a24\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-c0aa-1001-48eb-7bfe0083e9bc","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:07:59Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:07 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022},\u0022Id\u0022:\u0022ad8b9d36-91c9-49f7-9292-9a066024d662\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00007.response.json index fa3e5dab2d..a4605040ab 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6b889a1-202f-b000-e9b0-14985da2469f","SPClientServiceRequestDuration":"384","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-e0b0-1001-48eb-75c27937986d","SPClientServiceRequestDuration":"111","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00000.response.json index dc7159aa1f..e66beaa3e0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"edb889a1-10e8-b000-e9b0-1e98bba1d529","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-a0bd-1001-1a81-3e862a935ce0","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00001.response.json index 1cffaa29a2..e6b495fbe3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-200b-b000-e9b0-1968471df9d2","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-60c2-1001-48eb-79686bca6a4f","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00002.response.json index e95994b927..6d75cd9b65 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-502d-b000-e9b0-1e013b5b9b97","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:56Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-20c7-1001-48eb-7c94026180e8","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:59Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00003.response.json index 425e92e3db..23464f5c85 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-1037-b000-e9b0-19b53e3de5c5","SPClientServiceRequestDuration":"60","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:04:19Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:19Z\u0022,\u0022UniqueId\u0022:\u0022eaccf198-6c0b-4ffd-b288-458d8c88715e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-50cd-1001-1a81-331ae94c3f27","SPClientServiceRequestDuration":"97","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022UniqueId\u0022:\u0022a51d8d71-6b5d-4619-91ae-c22a5bf4cf30\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00000.response.json index a59063fabe..b19bab01d8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-c043-b000-e9b0-1c970f428ab8","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-b0d7-1001-48eb-7b2d108b7073","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00001.response.json index 2526a185fe..44027dd154 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-804d-b000-e9b0-196f19fdcf7a","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-10dd-1001-48eb-71b91716a214","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00002.response.json index 63f8a4d832..ffd16e480b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-5056-b000-e9b0-19bead32a944","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:04:19Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:19Z\u0022,\u0022UniqueId\u0022:\u0022eaccf198-6c0b-4ffd-b288-458d8c88715e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-90e2-1001-1a81-3990c8bd5a12","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022UniqueId\u0022:\u0022a51d8d71-6b5d-4619-91ae-c22a5bf4cf30\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00003.response.json index 8b54b2c5eb..9477f51638 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-1061-b000-e9b0-14654ca7e463","SPClientServiceRequestDuration":"137","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_4801a967-3a4f-4b10-a313-08fa4486f6bd\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u0022699adc3e-3ad2-4522-ba4f-a0a0c74c540f\u0022}\r\n--batchresponse_4801a967-3a4f-4b10-a313-08fa4486f6bd--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-10e8-1001-48eb-7816d82dacf3","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_f85e85d3-8102-4141-b75e-013ee4978eb9\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u0022fe0ab5d3-4679-4086-b8e3-545cbf7b6453\u0022}\r\n--batchresponse_f85e85d3-8102-4141-b75e-013ee4978eb9--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00004.response.json index f07c2b36d8..93c35dbcd3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-a072-b000-e9b0-12dddb51fd9e","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:20Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-e0f1-1001-48eb-760d7c2af965","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00005.response.json index 5411af015e..ef2da55a50 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-607e-b000-e9b0-1438307fd16c","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-b0f8-1001-1a81-381f15e5e37f","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00006.response.json index 9ec4788cf0..fcb9127f5f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-1089-b000-e9b0-1ecbf8109ad9","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:04:20Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:04 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/Shared Documents\u0022},\u0022Id\u0022:\u0022699adc3e-3ad2-4522-ba4f-a0a0c74c540f\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-b0fe-1001-48eb-7df33740687e","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022},\u0022Id\u0022:\u0022fe0ab5d3-4679-4086-b8e3-545cbf7b6453\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00007.response.json index 936b6e41be..591d898383 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-d093-b000-e9b0-1d4c25501143","SPClientServiceRequestDuration":"76","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-5005-1001-48eb-7f3ee3e370dd","SPClientServiceRequestDuration":"44","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00000.response.json index 253be9090d..3decbbc379 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-90a5-b000-e9b0-10ac06bfa230","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-700c-1001-1a81-36614376b8ff","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00001.response.json index 1df933d7a8..43b57da355 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-40b3-b000-e9b0-1cf1833148e0","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-8011-1001-48eb-73542027882d","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00002.response.json index c4ac1de7a9..650b62afb1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-00bd-b000-e9b0-1f0cb5d2fa10","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:20Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-d015-1001-48eb-7c40e26db7ea","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00003.response.json index 5a659b3949..43ca6edf54 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-c0c7-b000-e9b0-15a5758f36f1","SPClientServiceRequestDuration":"69","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:04:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:42Z\u0022,\u0022UniqueId\u0022:\u002293743542-d67a-47a7-86b9-c28b310907cf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-201d-1001-1a81-3752b19d47d3","SPClientServiceRequestDuration":"103","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:01Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:01Z\u0022,\u0022UniqueId\u0022:\u00224d75cf96-6b8e-4eb3-ad7f-5a0d78b2a7a7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00000.response.json index 8277981fa4..da9f966d3a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-70d5-b000-e9b0-196845402da8","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f027-1001-48eb-75a6a5fe1ce7","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00001.response.json index bf8da55642..703dea14d1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-30df-b000-e9b0-15b1bb572006","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-a02c-1001-48eb-725921aba667","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00002.response.json index 8b5a9b204e..91f602e6a6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-f0e8-b000-e9b0-137234f47b28","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:04:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:42Z\u0022,\u0022UniqueId\u0022:\u002293743542-d67a-47a7-86b9-c28b310907cf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f031-1001-1a81-301f8340244e","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:01Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:01Z\u0022,\u0022UniqueId\u0022:\u00224d75cf96-6b8e-4eb3-ad7f-5a0d78b2a7a7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00003.response.json index 808ec289da..5a92d027ad 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-c0f2-b000-e9b0-10e1bdb63b0a","SPClientServiceRequestDuration":"121","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_5b6e77df-2be3-4ff4-bf09-84b7c4734376\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u0022e2e10894-2202-415d-959d-b49bf18c22c5\u0022}\r\n--batchresponse_5b6e77df-2be3-4ff4-bf09-84b7c4734376--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-6037-1001-48eb-7e00cdc09a70","SPClientServiceRequestDuration":"84","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_3d770d64-57e1-424a-8beb-9de613f70a79\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u0022605c2152-eaa3-47fa-ba8b-1e06a0e05121\u0022}\r\n--batchresponse_3d770d64-57e1-424a-8beb-9de613f70a79--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00004.response.json index 87a2f4e44a..db04394ec0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f4b889a1-5003-b000-e9b0-1f20b2a10ec5","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:43Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-d040-1001-48eb-7d901aeb3764","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00005.response.json index 2737b7cdc8..dbe3dcff82 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f4b889a1-100f-b000-e9b0-16e3206f277b","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-8046-1001-1a81-35f540d93ef8","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00006.response.json index 20ac9ec734..7496816a08 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f4b889a1-d018-b000-e9b0-119bdd476fed","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:04:43Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:04 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/Shared Documents\u0022},\u0022Id\u0022:\u0022e2e10894-2202-415d-959d-b49bf18c22c5\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-e04c-1001-48eb-7cec4657b1c7","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022},\u0022Id\u0022:\u0022605c2152-eaa3-47fa-ba8b-1e06a0e05121\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00007.response.json index 559b74283e..b350fe2dd0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f4b889a1-9023-b000-e9b0-1f7e13dc1c9a","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-0053-1001-48eb-718bc55b80d5","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00000.response.json index 4bb8178c5f..527bc8b7cd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-0023-b000-e9b0-145f99ededbd","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-b05a-1001-1a81-3f4d9024bb13","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00001.response.json index a329a92baa..7a21104c6e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-b031-b000-e9b0-1e9d91b36d29","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f05f-1001-48eb-7ad162cc70a2","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00002.response.json index a8bccda1e4..be7c1ea3ac 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-703b-b000-e9b0-1637a4aaf75a","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-9064-1001-48eb-7f431321a2a5","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00003.response.json index 318ca3b1a9..5fb4543e06 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-3046-b000-e9b0-1828ffd45799","SPClientServiceRequestDuration":"77","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:03:26Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:26Z\u0022,\u0022UniqueId\u0022:\u0022f7d38754-153b-4f7f-91cd-ea0120d40280\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f06a-1001-1a81-3945be82fb06","SPClientServiceRequestDuration":"138","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022UniqueId\u0022:\u0022b8bc0422-98fb-4256-ad09-c410265d3285\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00000.response.json index 86f7ab36f0..86a8ccffb5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-d053-b000-e9b0-16002fa001b4","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f077-1001-48eb-7f5278ea1b15","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00001.response.json index 8742d9bb96..e363177105 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-a05d-b000-e9b0-134669573d15","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-007d-1001-48eb-7bfdb9a9f9a5","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00002.response.json index bc0625ffbf..92bddc45ef 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-6067-b000-e9b0-19f5c65c2040","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:03:26Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:26Z\u0022,\u0022UniqueId\u0022:\u0022f7d38754-153b-4f7f-91cd-ea0120d40280\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-e082-1001-1a81-39297d35289a","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022UniqueId\u0022:\u0022b8bc0422-98fb-4256-ad09-c410265d3285\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00003.response.json index cd8558d266..42407aaf5f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-2071-b000-e9b0-130bc30b3bcb","SPClientServiceRequestDuration":"111","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_df506190-470b-4b7a-baa4-b26304b92dba\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u00225796b374-5a53-4adb-a1bb-e17bd6aba8e2\u0022}\r\n--batchresponse_df506190-470b-4b7a-baa4-b26304b92dba--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-2088-1001-48eb-724cb2cfab28","SPClientServiceRequestDuration":"83","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_91d6778c-1dd1-4bf5-874f-4364343d223d\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u00220806ffab-e730-40dd-9c81-6455b1cffbbe\u0022}\r\n--batchresponse_91d6778c-1dd1-4bf5-874f-4364343d223d--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00004.response.json index 25815036c6..e18618b7fd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-c081-b000-e9b0-16b92c3e5e43","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:27Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f093-1001-48eb-7b369c51a11e","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:03Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00005.response.json index 94c0dd32b6..c23c55bce1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-808c-b000-e9b0-108ee437b748","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-709a-1001-1a81-3e96b2d154f1","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00006.response.json index 5fb12b2d39..e8ab4945c6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-4097-b000-e9b0-1d8d4136ea88","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:03:27Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:03 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/Shared Documents\u0022},\u0022Id\u0022:\u00225796b374-5a53-4adb-a1bb-e17bd6aba8e2\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f0a0-1001-48eb-7f4ba31f5fc8","SPClientServiceRequestDuration":"32","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:03Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022},\u0022Id\u0022:\u00220806ffab-e730-40dd-9c81-6455b1cffbbe\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00007.response.json index 9432aed61c..57d781ad05 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-00a2-b000-e9b0-118a08dd4ba2","SPClientServiceRequestDuration":"60","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-60a7-1001-48eb-76faf7be3357","SPClientServiceRequestDuration":"39","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00000.response.json index 74b9c251a3..f28cfb25ff 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-b034-b000-e9b0-1cfbc73dc5af","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-d0ae-1001-1a81-37d448f3fe98","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00001.response.json index ff65a4e3a6..b89a2cb57e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-3049-b000-e9b0-19678d72e1bc","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-a0b4-1001-48eb-72eb3dc99dad","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00002.response.json index 7179c7c3bb..59bf855f67 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-e055-b000-e9b0-1c5797ffca8f","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:27Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-60ba-1001-48eb-7b8783edbc0b","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:03Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00003.response.json index 4b937792d6..21ff4c05dd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-9064-b000-e9b0-19493626f15a","SPClientServiceRequestDuration":"55","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:03:55Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:55Z\u0022,\u0022UniqueId\u0022:\u0022dcce0f75-aa64-429d-9bf5-71fe986eb4f7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-70c0-1001-1a81-3f3ef5c1ce68","SPClientServiceRequestDuration":"81","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022UniqueId\u0022:\u0022fb3d5a0b-0bb1-4120-8631-2dbfda59afed\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00000.response.json index f3219f6d7d..555c801fe3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-3073-b000-e9b0-1465d375c220","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-20ca-1001-48eb-7f41b29bb88f","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00001.response.json index 2c2aefdb1e..0ab960193c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-e07f-b000-e9b0-1b319b2efabc","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-70cf-1001-48eb-7cb5a720b61d","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00002.response.json index 73b33e4806..67fb6a1395 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-a08b-b000-e9b0-1a15e283a082","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:03:55Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:55Z\u0022,\u0022UniqueId\u0022:\u0022dcce0f75-aa64-429d-9bf5-71fe986eb4f7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-90d4-1001-1a81-3d798511f7b7","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022UniqueId\u0022:\u0022fb3d5a0b-0bb1-4120-8631-2dbfda59afed\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00003.response.json index fe594d8efb..f31d7e8cbe 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-5099-b000-e9b0-1b50e83241a3","SPClientServiceRequestDuration":"130","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_1fa7f723-57c6-4a42-bee2-6305c96bf402\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u00229944e35b-5116-4e3a-9bfb-6f78eba8a9bb\u0022}\r\n--batchresponse_1fa7f723-57c6-4a42-bee2-6305c96bf402--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f0d9-1001-48eb-78cd74ab5364","SPClientServiceRequestDuration":"72","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_b465f746-025c-41d4-a20b-bff3b9cccda1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u0022ab505deb-5fe7-4b28-a78f-9a614fd0fbe9\u0022}\r\n--batchresponse_b465f746-025c-41d4-a20b-bff3b9cccda1--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00004.response.json index 537d1e0ff0..10485d7c8f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-d0ac-b000-e9b0-136aebde09d9","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:56Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-70e2-1001-48eb-7cb862c1782a","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00005.response.json index 70ef7c0d1c..3d20a4c352 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-70bb-b000-e9b0-1242ac7d1fee","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-00e8-1001-1a81-3815a7123236","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00006.response.json index 5a5fea099e..a234ce974b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-20c9-b000-e9b0-18b506eca98a","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:03:56Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:03 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/Shared Documents\u0022},\u0022Id\u0022:\u00229944e35b-5116-4e3a-9bfb-6f78eba8a9bb\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-e0ed-1001-48eb-78c6ca2444ee","SPClientServiceRequestDuration":"41","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022},\u0022Id\u0022:\u0022ab505deb-5fe7-4b28-a78f-9a614fd0fbe9\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00007.response.json index 1b022d074a..511258d2dd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-d0d7-b000-e9b0-1d1f5bf584cb","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-90f4-1001-48eb-7652a02b40aa","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00000.response.json index 60ad31b1ac..2d9c52e95a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-4095-b000-e9b0-1e573d3fff50","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-70fb-1001-48eb-7d92441b25f6","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00001.response.json index bf59911a44..908a4adba0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-60bb-b000-e9b0-1432c8745898","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-9000-1001-48eb-75594a3b5417","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00002.response.json index 281ecb49ff..0383f13afb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-20c5-b000-e9b0-105023de07c5","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:02:40Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-2006-1001-48eb-79d5288621a3","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00003.response.json index c2310006c5..a59c0c3d9f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-e0cf-b000-e9b0-1df9de119b1b","SPClientServiceRequestDuration":"63","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022UniqueId\u0022:\u0022b06f9a42-e05b-4a1b-b008-ec097f95d6ac\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-f00b-1001-48eb-79dad91c776d","SPClientServiceRequestDuration":"87","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022UniqueId\u0022:\u0022b784c461-6af7-44c9-aaa7-85632af54b1d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00000.response.json index 94516a8969..b1d938f2bc 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-90dc-b000-e9b0-17e594573133","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-d015-1001-48eb-73478fb07b09","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00001.response.json index d5d6e2907b..73f4a9417f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-50e6-b000-e9b0-184289d920aa","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-101b-1001-48eb-7e7dca4283d1","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00002.response.json index 80c32209e3..8a4d6523fa 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-20ef-b000-e9b0-132d6ba3e3f5","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022UniqueId\u0022:\u0022b06f9a42-e05b-4a1b-b008-ec097f95d6ac\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-5020-1001-1a81-3ea78f99a51a","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022UniqueId\u0022:\u0022b784c461-6af7-44c9-aaa7-85632af54b1d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00003.response.json index 15e878e628..aea07cc3b5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-e0f9-b000-e9b0-18d4c0521b2f","SPClientServiceRequestDuration":"157","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u00228d6541ea-fb56-4bce-83d7-a0bf002a1f75\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-d025-1001-48eb-74ea035f1896","SPClientServiceRequestDuration":"84","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u0022bd6db1f3-fbaa-4d9c-a8a9-eb1e00dc55e3\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00004.response.json index bf23918fd2..98d701ea5d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcb889a1-700c-b000-e9b0-187525e1c710","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-202f-1001-48eb-7e68114b6e10","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00005.response.json index df01053ef5..8179aa9f6b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcb889a1-101a-b000-e9b0-1fca9c49f3a6","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-b034-1001-1a81-3cc6b78e521b","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00006.response.json index fe38f6c508..3fe95f1859 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcb889a1-c028-b000-e9b0-1b84dcc7d62c","SPClientServiceRequestDuration":"34","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:03 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/Shared Documents\u0022},\u0022Id\u0022:\u00228d6541ea-fb56-4bce-83d7-a0bf002a1f75\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-c03a-1001-48eb-79c53ffc989f","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022},\u0022Id\u0022:\u0022bd6db1f3-fbaa-4d9c-a8a9-eb1e00dc55e3\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00007.response.json index 6482e83fb3..82fd8eb02f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcb889a1-8033-b000-e9b0-18016ae1960d","SPClientServiceRequestDuration":"50","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-b040-1001-48eb-76ae67e60a07","SPClientServiceRequestDuration":"94","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00000.response.json index 5e43745884..b23baeb303 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-705a-b000-e9b0-109da883d5df","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-004b-1001-1a81-35a612ffdfec","SPClientServiceRequestDuration":"87","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00001.response.json index 35356566a1..7c45dcdc58 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-2068-b000-e9b0-13ea9e944991","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-6054-1001-48eb-7e53dda35cb6","SPClientServiceRequestDuration":"54","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00002.response.json index 4dcaea8032..b6750a5171 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-e071-b000-e9b0-184b0bca6995","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222024-11-18T18:50:01Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-905b-1001-48eb-7ab55b435869","SPClientServiceRequestDuration":"121","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00003.response.json index faf38b4178..dc093da6f6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"02b989a1-a07c-b000-e9b0-19b4a57269da","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"dcad17a2-6067-1001-1a81-3ef937f86dc0","SPClientServiceRequestDuration":"70","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00004.response.json index e5e11984ad..edb97c77c0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-6088-b000-e9b0-103c90c9e1a6","SPClientServiceRequestDuration":"96","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022UniqueId\u0022:\u0022160a7fd7-d43d-40e9-82a2-e0f61d6364f2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-3070-1001-48eb-7b261e076736","SPClientServiceRequestDuration":"109","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022UniqueId\u0022:\u00224a001b93-18b2-4563-a6c8-bf3a18df96c9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00005.response.json index 5bbd74f8cb..78db9a07bd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-0097-b000-e9b0-110821ec116c","SPClientServiceRequestDuration":"73","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022UniqueId\u0022:\u0022d6014a69-02ac-4c1f-a51a-cf727e442e3f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-507b-1001-48eb-724ab27d8a19","SPClientServiceRequestDuration":"140","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022UniqueId\u0022:\u00221b4a7e0f-92d9-41a6-90da-693e49b6e2d6\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00006.response.json index e6372f0a20..ebbb850ea0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-b0a4-b000-e9b0-1a78fdfae765","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022UniqueId\u0022:\u0022d6014a69-02ac-4c1f-a51a-cf727e442e3f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-9088-1001-1a81-328f22e09672","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022UniqueId\u0022:\u00221b4a7e0f-92d9-41a6-90da-693e49b6e2d6\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00007.response.json index 6bd0308f0c..924ced6ba6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-70ae-b000-e9b0-1d1319156978","SPClientServiceRequestDuration":"122","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u0022bf6235b2-bd78-44d5-b09c-e05cc11c24d4\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-e08d-1001-48eb-7365fc9f3b2b","SPClientServiceRequestDuration":"101","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u00229d581463-2093-4994-8dd0-3743d1efe7b9\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00008.response.json index 7497b53a9b..67a0a85953 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00008.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00008.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"02b989a1-10bf-b000-e9b0-11e95eb0cc2c","SPClientServiceRequestDuration":"44","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"dcad17a2-4098-1001-48eb-7b9709aade69","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00009.response.json index 70708f1730..beaeb905fc 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00009.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00009.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-c0cb-b000-e9b0-1df3036155c7","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:05:43Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:05 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/SitePages/sub1\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/SitePages/sub1\u0022},\u0022Id\u0022:\u0022bf6235b2-bd78-44d5-b09c-e05cc11c24d4\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022sub2\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sub2\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022sub2\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-509f-1001-1a81-3c57659cbc1a","SPClientServiceRequestDuration":"35","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/SitePages/sub1\u0022},\u0022Id\u0022:\u00229d581463-2093-4994-8dd0-3743d1efe7b9\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022sub2\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sub2\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022sub2\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00010.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00010.response.json index 48099770c3..b8619a0af7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00010.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00010.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-a0d5-b000-e9b0-13c140920a49","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-b0a5-1001-48eb-7c426f11dd0b","SPClientServiceRequestDuration":"104","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00011.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00011.response.json index 2d541a2469..0e22dc381d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00011.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00011.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-40e1-b000-e9b0-1e03632863ba","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:05:43Z\u0022,\u0022UniqueId\u0022:\u0022160a7fd7-d43d-40e9-82a2-e0f61d6364f2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-30b1-1001-48eb-74dfdc4bda4a","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022UniqueId\u0022:\u00224a001b93-18b2-4563-a6c8-bf3a18df96c9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00012.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00012.response.json index 2ecef506b4..31da8d8286 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00012.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00012.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-00eb-b000-e9b0-192d9e7a7c76","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:05:43Z\u0022,\u0022UniqueId\u0022:\u0022160a7fd7-d43d-40e9-82a2-e0f61d6364f2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-40b7-1001-1a81-347bae4261a3","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022UniqueId\u0022:\u00224a001b93-18b2-4563-a6c8-bf3a18df96c9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00013.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00013.response.json index e2d5f3f1fc..12e13b452e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00013.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00013.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-c0f4-b000-e9b0-14077146c94c","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u0022ee58d9b6-5db3-41bb-b937-dc24b0cc7870\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-d0bd-1001-48eb-734c3f858ab1","SPClientServiceRequestDuration":"89","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u0022a22ba120-3e8e-4c61-9f1c-e7ad7df1359c\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00014.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00014.response.json index c0f16cf94c..49717bd701 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00014.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00014.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"03b989a1-7003-b000-e9b0-153c8a4d2275","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"dcad17a2-80c7-1001-48eb-78ebb5ac549e","SPClientServiceRequestDuration":"69","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00015.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00015.response.json index ce310d1148..6c2b14c949 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00015.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00015.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"03b989a1-200e-b000-e9b0-17f080d1d523","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:05:44Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:05 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/SitePages\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/SitePages\u0022},\u0022Id\u0022:\u0022ee58d9b6-5db3-41bb-b937-dc24b0cc7870\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022sub1\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sub1\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022sub1\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-40d0-1001-1a81-3d52acc7b4c6","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:08Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/SitePages\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/SitePages\u0022},\u0022Id\u0022:\u0022a22ba120-3e8e-4c61-9f1c-e7ad7df1359c\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022sub1\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sub1\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022sub1\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00016.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00016.response.json index d45c35f27f..9629483036 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00016.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00016.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"03b989a1-e018-b000-e9b0-1c4fae6d6181","SPClientServiceRequestDuration":"34","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-00d6-1001-48eb-744bbdc4fa8f","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00000.response.json index 7e843f1d4a..159b3f73dc 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-70ff-7000-3703-986b8862e98e","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-40dd-1001-48eb-73785c9520d1","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00001.response.json index 9f7f577086..4dfe046aa3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-c003-6000-fe75-fb240ef81cad","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-80e2-1001-1a81-3e1d5d64536d","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00002.response.json index 13758fc990..4e5f64e7f0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-4007-7000-3703-9adb7c26abed","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-90e7-1001-48eb-7072a0b9b38c","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:08Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00003.response.json index d7cd881798..4a127c297a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"72e2d3a0-800c-6000-fe75-f3426a83fb42","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"dcad17a2-20ed-1001-48eb-724f9379342b","SPClientServiceRequestDuration":"38","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00004.response.json index 631a023189..167e2e618d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-0011-7000-3703-9a406b845c89","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022UniqueId\u0022:\u002204674fb4-08c7-4d1f-be6b-faf271ab2378\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-d0f3-1001-1a81-3822f0b986f6","SPClientServiceRequestDuration":"74","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022UniqueId\u0022:\u0022cde2b499-ea84-4057-9b4d-b884e84b0b72\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00005.response.json index 7018e6a8fc..50a885a35b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"Cache-Control":"no-store, no-cache","Transfer-Encoding":"chunked","Vary":"Accept-Encoding","Strict-Transport-Security":"max-age=31536000","request-id":"0d8b061d-f9bb-4ff7-970e-1fc7a4ff7d98","client-request-id":"0d8b061d-f9bb-4ff7-970e-1fc7a4ff7d98","x-ms-ags-diagnostic":"{\u0022ServerInfo\u0022:{\u0022DataCenter\u0022:\u0022West Europe\u0022,\u0022Slice\u0022:\u0022E\u0022,\u0022Ring\u0022:\u00225\u0022,\u0022ScaleUnit\u0022:\u0022002\u0022,\u0022RoleInstance\u0022:\u0022AM2PEPF0000BE0F\u0022}}","OData-Version":"4.0","Date":"Fri, 25 Aug 2023 09:15:37 GMT"},"Response":"{\u0022@odata.context\u0022:\u0022https://graph.microsoft.com/v1.0/$metadata#sites(\u0027bertonline.sharepoint.com%2Cf92f9e40-1110-43ef-aa0e-0822e13fb7ba%2C2c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0027)/drives(\u0027b%21QJ4v-RAR70OqDggi4T-3uoakmSzJ1ktKjW-p-qNkySzOUUSHtOFGTIX9pvsCmOGg\u0027)/items/$entity\u0022,\u0022createdDateTime\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022eTag\u0022:\u0022\\\u0022{04674FB4-08C7-4D1F-BE6B-FAF271AB2378},2\\\u0022\u0022,\u0022id\u0022:\u002201O2ADSGNUJ5TQJRYID5G342726JY2WI3Y\u0022,\u0022lastModifiedDateTime\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022name\u0022:\u0022newsub1\u0022,\u0022webUrl\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/SitePages/newsub1\u0022,\u0022cTag\u0022:\u0022\\\u0022c:{04674FB4-08C7-4D1F-BE6B-FAF271AB2378},0\\\u0022\u0022,\u0022size\u0022:\u00220\u0022,\u0022createdBy\u0022:{\u0022application\u0022:{\u0022id\u0022:\u0022c545f9ce-1c11-440b-812b-0b35217d9e83\u0022,\u0022displayName\u0022:\u0022PnpCoreTestApp\u0022},\u0022user\u0022:{\u0022email\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022id\u0022:\u002233aca310-a489-4121-b853-663d0327fe08\u0022,\u0022displayName\u0022:\u0022Bert Jansen (Cloud)\u0022}},\u0022lastModifiedBy\u0022:{\u0022application\u0022:{\u0022id\u0022:\u0022c545f9ce-1c11-440b-812b-0b35217d9e83\u0022,\u0022displayName\u0022:\u0022PnpCoreTestApp\u0022},\u0022user\u0022:{\u0022email\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022id\u0022:\u002233aca310-a489-4121-b853-663d0327fe08\u0022,\u0022displayName\u0022:\u0022Bert Jansen (Cloud)\u0022}},\u0022parentReference\u0022:{\u0022driveType\u0022:\u0022documentLibrary\u0022,\u0022driveId\u0022:\u0022b!QJ4v-RAR70OqDggi4T-3uoakmSzJ1ktKjW-p-qNkySzOUUSHtOFGTIX9pvsCmOGg\u0022,\u0022id\u0022:\u002201O2ADSGN6Y2GOVW7725BZO354PWSELRRZ\u0022,\u0022path\u0022:\u0022/drives/b!QJ4v-RAR70OqDggi4T-3uoakmSzJ1ktKjW-p-qNkySzOUUSHtOFGTIX9pvsCmOGg/root:\u0022,\u0022siteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022},\u0022fileSystemInfo\u0022:{\u0022createdDateTime\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022lastModifiedDateTime\u0022:\u00222023-08-25T09:15:38Z\u0022},\u0022folder\u0022:{\u0022childCount\u0022:0}}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"Cache-Control":"no-store, no-cache","Transfer-Encoding":"chunked","Vary":"Accept-Encoding","Strict-Transport-Security":"max-age=31536000","request-id":"6f8f150e-abb1-48a2-be64-b1a86e118216","client-request-id":"6f8f150e-abb1-48a2-be64-b1a86e118216","x-ms-ags-diagnostic":"{\u0022ServerInfo\u0022:{\u0022DataCenter\u0022:\u0022Sweden Central\u0022,\u0022Slice\u0022:\u0022E\u0022,\u0022Ring\u0022:\u00223\u0022,\u0022ScaleUnit\u0022:\u0022000\u0022,\u0022RoleInstance\u0022:\u0022GVX0EPF00084188\u0022}}","SPLogId":"ddad17a2-9019-1001-733e-28137264b2de","OData-Version":"4.0","Date":"Wed, 27 May 2026 09:08:09 GMT"},"Response":"{\u0022@odata.context\u0022:\u0022https://graph.microsoft.com/v1.0/$metadata#sites(\u00273fgb00.sharepoint.com%2C477b4438-a3a4-4f63-8d6a-c797c26a357d%2C6f2d6824-5143-4222-89cb-1ee645a69f51\u0027)/drives(\u0027b%21OER7R6SjY0-NaseXwmo1fSRoLW9DUSJCicse5kWmn1Gk1e73vgsQS6DYW-E5iy_T\u0027)/items/$entity\u0022,\u0022createdDateTime\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022eTag\u0022:\u0022\\\u0022{CDE2B499-EA84-4057-9B4D-B884E84B0B72},2\\\u0022\u0022,\u0022id\u0022:\u002201FMCGHUUZWTRM3BHKK5AJWTNYQTUEWC3S\u0022,\u0022lastModifiedDateTime\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022name\u0022:\u0022newsub1\u0022,\u0022webUrl\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/SitePages/newsub1\u0022,\u0022cTag\u0022:\u0022\\\u0022c:{CDE2B499-EA84-4057-9B4D-B884E84B0B72},0\\\u0022\u0022,\u0022isAuthoritative\u0022:false,\u0022size\u0022:\u00220\u0022,\u0022createdBy\u0022:{\u0022application\u0022:{\u0022id\u0022:\u0022d9ca09f3-0d1f-4b89-b45d-094e5154cb7a\u0022,\u0022displayName\u0022:\u0022Arams 2025 C7 Integrations PnP SharePoint\u0022},\u0022user\u0022:{\u0022id\u0022:\u00220efcd562-fcae-42ea-8121-5a52c285f686\u0022,\u0022displayName\u0022:\u0022Aram Barzanjeh\u0022}},\u0022lastModifiedBy\u0022:{\u0022application\u0022:{\u0022id\u0022:\u0022d9ca09f3-0d1f-4b89-b45d-094e5154cb7a\u0022,\u0022displayName\u0022:\u0022Arams 2025 C7 Integrations PnP SharePoint\u0022},\u0022user\u0022:{\u0022id\u0022:\u00220efcd562-fcae-42ea-8121-5a52c285f686\u0022,\u0022displayName\u0022:\u0022Aram Barzanjeh\u0022}},\u0022parentReference\u0022:{\u0022driveType\u0022:\u0022documentLibrary\u0022,\u0022driveId\u0022:\u0022b!OER7R6SjY0-NaseXwmo1fSRoLW9DUSJCicse5kWmn1Gk1e73vgsQS6DYW-E5iy_T\u0022,\u0022id\u0022:\u002201FMCGHUV6Y2GOVW7725BZO354PWSELRRZ\u0022,\u0022name\u0022:\u0022SitePages\u0022,\u0022path\u0022:\u0022/drives/b!OER7R6SjY0-NaseXwmo1fSRoLW9DUSJCicse5kWmn1Gk1e73vgsQS6DYW-E5iy_T/root:\u0022,\u0022siteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022},\u0022fileSystemInfo\u0022:{\u0022createdDateTime\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022lastModifiedDateTime\u0022:\u00222026-05-27T09:08:09Z\u0022},\u0022folder\u0022:{\u0022childCount\u0022:0},\u0022shared\u0022:{\u0022scope\u0022:\u0022users\u0022}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00006.response.json index e63e2d4bf0..a3d0a5d56d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-b047-7000-3703-9d8b0e232a8c","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022newsub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/newsub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022UniqueId\u0022:\u002204674fb4-08c7-4d1f-be6b-faf271ab2378\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-802d-1001-48eb-727313c978cb","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022newsub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/newsub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022UniqueId\u0022:\u0022cde2b499-ea84-4057-9b4d-b884e84b0b72\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00007.response.json index a84d4c06fe..40f2804964 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-a04c-7000-3703-9a3744913b30","SPClientServiceRequestDuration":"77","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-7033-1001-48eb-74cbdd5afb52","SPClientServiceRequestDuration":"81","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00000.response.json index 16e3ebc33e..c60d1048b4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-6055-7000-3703-90a055819326","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-403d-1001-1a81-3f1c3d48be72","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00001.response.json index 4885fae9e0..26a53ff83d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-5059-7000-3703-950007d3ac5c","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-7042-1001-48eb-76a916e07cad","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00002.response.json index f5e3c35e24..fed1e666ae 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-305d-7000-3703-9cfbee85b757","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222021-09-11T23:42:33\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222023-08-25T09:15:38\u0022,\u0022vti_x005f_timelastwnssent\u0022:\u00222023-06-29T13:32:48\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:23,\u0022vti_x005f_listrequirecheckout\u0022:\u0022true\u0022,\u0022vti_x005f_listflags2\u0022:229376,\u0022vti_x005f_TemplatesFolderGuid\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022vti_x005f_parentid\u0022:\u0022{695B54D0-9320-4AA3-B5E0-F44E72D9AA44}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Site Pages\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{874451CE-E1B4-4C46-85FD-A6FB0298E1A0}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{714761DC-83F7-428A-AE9B-7801D9C4D235}\u0022,\u0022vti_x005f_listname\u0022:\u0022{874451CE-E1B4-4C46-85FD-A6FB0298E1A0}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222023-08-25T09:15:39\u0022,\u0022vti_x005f_listflags\u0022:\u0022184647585272434824\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:714761DC-83F7-428A-AE9B-7801D9C4D235@00000000023\u0022,\u0022vti_x005f_folderitemcount\u0022:3,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{714761DC-83F7-428A-AE9B-7801D9C4D235},23\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:23,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_listservertemplate\u0022:119,\u0022vti_x005f_listenableminorversions\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222023-08-25T09:10:34\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_searchversion\u0022:1},\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022,\u0022Title\u0022:\u0022Site Pages\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-4047-1001-48eb-73c95b00b8c8","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222026-05-22T21:21:41\u0022,\u0022vti_x005f_contentversionisdirty\u0022:\u0022false\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222026-05-27T09:08:09\u0022,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:6,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:0,\u0022vti_x005f_contentversion\u0022:0,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:0,\u0022vti_x005f_accesscontrolflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{C80E983D-A0B5-448D-9A9F-9CA22A5F0F64}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Site Pages\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{F7EED5A4-0BBE-4B10-A0D8-5BE1398B2FD3}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02}\u0022,\u0022vti_x005f_listname\u0022:\u0022{F7EED5A4-0BBE-4B10-A0D8-5BE1398B2FD3}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222026-05-27T09:08:10\u0022,\u0022vti_x005f_commentcount\u0022:0,\u0022vti_x005f_listflags\u0022:\u0022184647585273221256\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:FC5A6803-A30F-4FA1-B99E-71D7FC40CC02@00000000006\u0022,\u0022vti_x005f_folderitemcount\u0022:1,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_mainlinkdata\u0022:\u0022\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02},6\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:6,\u0022vti_x005f_contenttag\u0022:\u0022{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02},6,0\u0022,\u0022vti_x005f_listservertemplate\u0022:119,\u0022vti_x005f_listenableminorversions\u0022:\u0022true\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|aram@3fgb00.onmicrosoft.com\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222026-05-27T09:03:05\u0022},\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022,\u0022Title\u0022:\u0022Site Pages\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00003.response.json index 0a61a5375a..668585a503 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-1062-7000-3703-9fb0daa1a5b1","SPClientServiceRequestDuration":"66","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"[\r{\r\u0022SchemaVersion\u0022:\u002215.0.0.0\u0022,\u0022LibraryVersion\u0022:\u002216.0.24009.12004\u0022,\u0022ErrorInfo\u0022:null,\u0022TraceCorrelationId\u0022:\u002272e2d3a0-1062-7000-3703-9fb0daa1a5b1\u0022\r}\r]"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-c04d-1001-1a81-3e6d4e3b90c2","SPClientServiceRequestDuration":"146","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"[\r{\r\u0022SchemaVersion\u0022:\u002215.0.0.0\u0022,\u0022LibraryVersion\u0022:\u002216.0.27313.12005\u0022,\u0022ErrorInfo\u0022:null,\u0022TraceCorrelationId\u0022:\u0022ddad17a2-c04d-1001-1a81-3e6d4e3b90c2\u0022\r}\r]"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00000.response.json index bcf0c4ee19..1bbb923ce3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-e069-7000-3703-9348182021e8","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-705b-1001-48eb-74fbfbe2bba0","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00001.response.json index b0c5b59833..3d7543f7c0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-c06e-7000-3703-9efd4fad8f7e","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-d060-1001-48eb-7737e701c189","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00002.response.json index ed4cee2f4c..a0f7dde27f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-b072-7000-3703-9bad5e7b0e52","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:39Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022,\u0022Title\u0022:\u0022Site Pages\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-1066-1001-1a81-39971fc76927","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:10Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022,\u0022Title\u0022:\u0022Site Pages\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00003.response.json index 6a5c784ef4..4db3d86c3c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-9077-7000-3703-953e1f3e88ff","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222021-09-11T23:42:33\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222023-08-25T09:15:38\u0022,\u0022vti_x005f_timelastwnssent\u0022:\u00222023-08-25T09:15:38\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:24,\u0022vti_x005f_listrequirecheckout\u0022:\u0022true\u0022,\u0022vti_x005f_listflags2\u0022:229376,\u0022vti_x005f_TemplatesFolderGuid\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022vti_x005f_parentid\u0022:\u0022{695B54D0-9320-4AA3-B5E0-F44E72D9AA44}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Site Pages\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{874451CE-E1B4-4C46-85FD-A6FB0298E1A0}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022ListPropertiesTest123\u0022:\u0022test123\u0022,\u0022vti_x005f_listname\u0022:\u0022{874451CE-E1B4-4C46-85FD-A6FB0298E1A0}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222023-08-25T09:15:39\u0022,\u0022vti_x005f_listflags\u0022:\u0022184647585272434824\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:714761DC-83F7-428A-AE9B-7801D9C4D235@00000000024\u0022,\u0022vti_x005f_folderitemcount\u0022:3,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_replid\u0022:\u0022rid:{714761DC-83F7-428A-AE9B-7801D9C4D235}\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{714761DC-83F7-428A-AE9B-7801D9C4D235},24\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:24,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_listservertemplate\u0022:119,\u0022vti_x005f_listenableminorversions\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222023-08-25T09:10:34\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_searchversion\u0022:1},\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-706b-1001-48eb-7252753f403f","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222026-05-22T21:21:41\u0022,\u0022vti_x005f_contentversionisdirty\u0022:\u0022false\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222026-05-27T09:08:09\u0022,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:7,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:0,\u0022vti_x005f_contentversion\u0022:0,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:0,\u0022vti_x005f_accesscontrolflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{C80E983D-A0B5-448D-9A9F-9CA22A5F0F64}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Site Pages\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{F7EED5A4-0BBE-4B10-A0D8-5BE1398B2FD3}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022ListPropertiesTest123\u0022:\u0022test123\u0022,\u0022vti_x005f_listname\u0022:\u0022{F7EED5A4-0BBE-4B10-A0D8-5BE1398B2FD3}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222026-05-27T09:08:10\u0022,\u0022vti_x005f_commentcount\u0022:0,\u0022vti_x005f_listflags\u0022:\u0022184647585273221256\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:FC5A6803-A30F-4FA1-B99E-71D7FC40CC02@00000000007\u0022,\u0022vti_x005f_folderitemcount\u0022:1,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_replid\u0022:\u0022rid:{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02}\u0022,\u0022vti_x005f_mainlinkdata\u0022:\u0022\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02},7\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:7,\u0022vti_x005f_contenttag\u0022:\u0022{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02},7,0\u0022,\u0022vti_x005f_listservertemplate\u0022:119,\u0022vti_x005f_listenableminorversions\u0022:\u0022true\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|aram@3fgb00.onmicrosoft.com\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222026-05-27T09:03:06\u0022},\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00004.response.json index cad53fec69..e449e4425d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-707d-7000-3703-92e21e2f9e46","SPClientServiceRequestDuration":"56","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"[\r{\r\u0022SchemaVersion\u0022:\u002215.0.0.0\u0022,\u0022LibraryVersion\u0022:\u002216.0.24009.12004\u0022,\u0022ErrorInfo\u0022:null,\u0022TraceCorrelationId\u0022:\u002272e2d3a0-707d-7000-3703-92e21e2f9e46\u0022\r}\r]"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-7071-1001-48eb-7662d0d54894","SPClientServiceRequestDuration":"73","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"[\r{\r\u0022SchemaVersion\u0022:\u002215.0.0.0\u0022,\u0022LibraryVersion\u0022:\u002216.0.27313.12005\u0022,\u0022ErrorInfo\u0022:null,\u0022TraceCorrelationId\u0022:\u0022ddad17a2-7071-1001-48eb-7662d0d54894\u0022\r}\r]"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00000.response.json index 74cdd20da8..20d9dbea61 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-4084-7000-3703-9e7ea8f412a2","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-407a-1001-1a81-341b26359b59","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00001.response.json index aa441b48fb..9668c1f126 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-2089-7000-3703-9a0f7ed5b49b","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-207f-1001-48eb-782f6ecb2270","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00002.response.json index 51430b1acc..0df591d290 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-108d-7000-3703-99fd3b7553ad","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:39Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022,\u0022Title\u0022:\u0022Site Pages\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-f083-1001-48eb-74e8194c2136","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:11Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022,\u0022Title\u0022:\u0022Site Pages\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00003.response.json index feb583169d..81cbb2e246 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-f090-7000-3703-982e925f0eb5","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222021-09-11T23:42:33\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222023-08-25T09:15:38\u0022,\u0022vti_x005f_timelastwnssent\u0022:\u00222023-08-25T09:15:39\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:25,\u0022vti_x005f_listrequirecheckout\u0022:\u0022true\u0022,\u0022vti_x005f_listflags2\u0022:229376,\u0022vti_x005f_TemplatesFolderGuid\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022vti_x005f_parentid\u0022:\u0022{695B54D0-9320-4AA3-B5E0-F44E72D9AA44}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Site Pages\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{874451CE-E1B4-4C46-85FD-A6FB0298E1A0}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{714761DC-83F7-428A-AE9B-7801D9C4D235}\u0022,\u0022vti_x005f_listname\u0022:\u0022{874451CE-E1B4-4C46-85FD-A6FB0298E1A0}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222023-08-25T09:15:39\u0022,\u0022vti_x005f_listflags\u0022:\u0022184647585272434824\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:714761DC-83F7-428A-AE9B-7801D9C4D235@00000000025\u0022,\u0022vti_x005f_folderitemcount\u0022:3,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{714761DC-83F7-428A-AE9B-7801D9C4D235},25\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:25,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_listservertemplate\u0022:119,\u0022vti_x005f_listenableminorversions\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222023-08-25T09:10:35\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_searchversion\u0022:1},\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-d08a-1001-1a81-37f8a517359c","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222026-05-22T21:21:41\u0022,\u0022vti_x005f_contentversionisdirty\u0022:\u0022false\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222026-05-27T09:08:10\u0022,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:8,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:0,\u0022vti_x005f_contentversion\u0022:0,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:0,\u0022vti_x005f_accesscontrolflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{C80E983D-A0B5-448D-9A9F-9CA22A5F0F64}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Site Pages\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{F7EED5A4-0BBE-4B10-A0D8-5BE1398B2FD3}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02}\u0022,\u0022vti_x005f_listname\u0022:\u0022{F7EED5A4-0BBE-4B10-A0D8-5BE1398B2FD3}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222026-05-27T09:08:11\u0022,\u0022vti_x005f_commentcount\u0022:0,\u0022vti_x005f_listflags\u0022:\u0022184647585273221256\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:FC5A6803-A30F-4FA1-B99E-71D7FC40CC02@00000000008\u0022,\u0022vti_x005f_folderitemcount\u0022:1,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_mainlinkdata\u0022:\u0022\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02},8\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:8,\u0022vti_x005f_contenttag\u0022:\u0022{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02},8,0\u0022,\u0022vti_x005f_listservertemplate\u0022:119,\u0022vti_x005f_listenableminorversions\u0022:\u0022true\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|aram@3fgb00.onmicrosoft.com\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222026-05-27T09:03:06\u0022},\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00000.response.json index 3954e0f88e..21f32f7f46 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-e095-7000-3703-91291d9f949d","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-c090-1001-48eb-7a7e70fc4eaa","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00001.response.json index de82273e59..2fa501b407 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-c09a-7000-3703-94170d24cf6f","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-a095-1001-48eb-737ad91bdac2","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00002.response.json index ffe7ee53a0..72559e20ff 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-a09e-7000-3703-9406561d8203","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-909a-1001-1a81-3a545827e5cd","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00003.response.json index 8dc8ccac44..edb58d4c3e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-80a3-7000-3703-92059e2f7077","SPClientServiceRequestDuration":"68","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:40Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:40Z\u0022,\u0022UniqueId\u0022:\u00226c31e5e5-8645-438c-8ed2-a2f109338d8f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-90a1-1001-48eb-7cc1f745de5d","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:11Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:11Z\u0022,\u0022UniqueId\u0022:\u002246aab085-7b57-48ce-9205-e45eb81b93b2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00004.response.json index 87b6b4043f..34763aeb64 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":204,"Headers":{"SPRequestGuid":"72e2d3a0-40af-7000-310e-46473a491257","SPClientServiceRequestDuration":"76","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":204,"Headers":{"SPRequestGuid":"ddad17a2-30ac-1001-48eb-7eb1809f4e73","SPClientServiceRequestDuration":"159","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00005.response.json index dc5454ac92..d6a4427559 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-10b8-7000-310e-4b09423df6d2","SPClientServiceRequestDuration":"140","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-f0ba-1001-1a81-33bc470d7440","SPClientServiceRequestDuration":"91","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file From 0b2f6734f75dddefcdf087f4f7f9915de8b512eb Mon Sep 17 00:00:00 2001 From: Aram Barzanjeh Date: Thu, 4 Jun 2026 09:07:46 +0200 Subject: [PATCH 4/8] reverting changes in mockdata for FolderTests --- .../AddFolderFromWebFolderTest-0-00000.response.json | 2 +- .../AddFolderFromWebFolderTest-0-00001.response.json | 2 +- .../AddFolderFromWebFolderTest-0-00002.response.json | 2 +- .../AddFolderFromWebFolderTest-0-00003.response.json | 2 +- .../AddFolderFromWebFolderTest-0-00004.response.json | 2 +- .../FoldersTests/AddListFolderAsyncTest-0-00000.response.json | 2 +- .../FoldersTests/AddListFolderAsyncTest-0-00001.response.json | 2 +- .../FoldersTests/AddListFolderAsyncTest-0-00002.response.json | 2 +- .../FoldersTests/AddListFolderAsyncTest-0-00003.response.json | 2 +- .../FoldersTests/AddListFolderAsyncTest-0-00004.response.json | 2 +- .../AddListFolderBatchAsyncTest-0-00000.response.json | 2 +- .../AddListFolderBatchAsyncTest-0-00001.response.json | 2 +- .../AddListFolderBatchAsyncTest-0-00002.response.json | 2 +- .../AddListFolderBatchAsyncTest-0-00003.response.json | 2 +- .../AddListFolderBatchAsyncTest-0-00004.response.json | 2 +- .../FoldersTests/AddListFolderBatchTest-0-00000.response.json | 2 +- .../FoldersTests/AddListFolderBatchTest-0-00001.response.json | 2 +- .../FoldersTests/AddListFolderBatchTest-0-00002.response.json | 2 +- .../FoldersTests/AddListFolderBatchTest-0-00003.response.json | 2 +- .../FoldersTests/AddListFolderBatchTest-0-00004.response.json | 2 +- .../AddListFolderExceptionTest-0-00000.response.json | 2 +- .../AddListFolderExceptionTest-0-00001.response.json | 2 +- .../AddListFolderExceptionTest-0-00002.response.json | 2 +- .../AddListFolderSpecificBatchAsyncTest-0-00000.response.json | 2 +- .../AddListFolderSpecificBatchAsyncTest-0-00001.response.json | 2 +- .../AddListFolderSpecificBatchAsyncTest-0-00002.response.json | 2 +- .../AddListFolderSpecificBatchAsyncTest-0-00003.response.json | 2 +- .../AddListFolderSpecificBatchAsyncTest-0-00004.response.json | 2 +- .../AddListFolderSpecificBatchTest-0-00000.response.json | 2 +- .../AddListFolderSpecificBatchTest-0-00001.response.json | 2 +- .../AddListFolderSpecificBatchTest-0-00002.response.json | 2 +- .../AddListFolderSpecificBatchTest-0-00003.response.json | 2 +- .../AddListFolderSpecificBatchTest-0-00004.response.json | 2 +- .../FoldersTests/AddListFolderTest-0-00000.response.json | 2 +- .../FoldersTests/AddListFolderTest-0-00001.response.json | 2 +- .../FoldersTests/AddListFolderTest-0-00002.response.json | 2 +- .../FoldersTests/AddListFolderTest-0-00003.response.json | 2 +- .../FoldersTests/AddListFolderTest-0-00004.response.json | 2 +- .../AddListSubFolderAsyncTest-0-00000.response.json | 2 +- .../AddListSubFolderAsyncTest-0-00001.response.json | 2 +- .../AddListSubFolderAsyncTest-0-00002.response.json | 2 +- .../AddListSubFolderAsyncTest-0-00003.response.json | 2 +- .../AddListSubFolderAsyncTest-0-00004.response.json | 2 +- .../AddListSubFolderBatchAsyncTest-0-00000.response.json | 2 +- .../AddListSubFolderBatchAsyncTest-0-00001.response.json | 2 +- .../AddListSubFolderBatchAsyncTest-0-00002.response.json | 2 +- .../AddListSubFolderBatchAsyncTest-0-00003.response.json | 2 +- .../AddListSubFolderBatchAsyncTest-0-00004.response.json | 2 +- .../AddListSubFolderBatchTest-0-00000.response.json | 2 +- .../AddListSubFolderBatchTest-0-00001.response.json | 2 +- .../AddListSubFolderBatchTest-0-00002.response.json | 2 +- .../AddListSubFolderBatchTest-0-00003.response.json | 2 +- .../AddListSubFolderBatchTest-0-00004.response.json | 2 +- ...AddListSubFolderSpecificBatchAsyncTest-0-00000.response.json | 2 +- ...AddListSubFolderSpecificBatchAsyncTest-0-00001.response.json | 2 +- ...AddListSubFolderSpecificBatchAsyncTest-0-00002.response.json | 2 +- ...AddListSubFolderSpecificBatchAsyncTest-0-00003.response.json | 2 +- ...AddListSubFolderSpecificBatchAsyncTest-0-00004.response.json | 2 +- .../AddListSubFolderSpecificBatchTest-0-00000.response.json | 2 +- .../AddListSubFolderSpecificBatchTest-0-00001.response.json | 2 +- .../AddListSubFolderSpecificBatchTest-0-00002.response.json | 2 +- .../AddListSubFolderSpecificBatchTest-0-00003.response.json | 2 +- .../AddListSubFolderSpecificBatchTest-0-00004.response.json | 2 +- .../FoldersTests/AddListSubFolderTest-0-00000.response.json | 2 +- .../FoldersTests/AddListSubFolderTest-0-00001.response.json | 2 +- .../FoldersTests/AddListSubFolderTest-0-00002.response.json | 2 +- .../FoldersTests/AddListSubFolderTest-0-00003.response.json | 2 +- .../FoldersTests/AddListSubFolderTest-0-00004.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-0-00000.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-0-00001.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-0-00002.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-0-00003.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-1-00000.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-1-00001.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-1-00002.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-1-00003.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-1-00004.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-1-00005.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-2-00000.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-2-00001.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-2-00002.response.json | 2 +- .../CopyFolderBatchWithOptionsTest-2-00003.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-0-00000.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-0-00001.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-0-00002.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-0-00003.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-1-00000.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-1-00001.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-1-00002.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-1-00003.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-1-00004.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-2-00000.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-2-00001.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-2-00002.response.json | 2 +- .../CopyFolderBatchWithoutOptionAsyncTest-2-00003.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-0-00000.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-0-00001.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-0-00002.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-0-00003.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-1-00000.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-1-00001.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-1-00002.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-1-00003.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-1-00004.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-2-00000.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-2-00001.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-2-00002.response.json | 2 +- .../CopyFolderBatchWithoutOptionTest-2-00003.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-0-00000.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-0-00001.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-0-00002.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-0-00003.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-1-00000.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-1-00001.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-1-00002.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-1-00003.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-1-00004.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-2-00000.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-2-00001.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-2-00002.response.json | 2 +- ...pyFolderSpecificBatchWithoutOptionTest-2-00003.response.json | 2 +- .../CopyFolderWithOptionsTest-0-00000.response.json | 2 +- .../CopyFolderWithOptionsTest-0-00001.response.json | 2 +- .../CopyFolderWithOptionsTest-0-00002.response.json | 2 +- .../CopyFolderWithOptionsTest-0-00003.response.json | 2 +- .../CopyFolderWithOptionsTest-1-00000.response.json | 2 +- .../CopyFolderWithOptionsTest-1-00001.response.json | 2 +- .../CopyFolderWithOptionsTest-1-00002.response.json | 2 +- .../CopyFolderWithOptionsTest-1-00003.response.json | 2 +- .../CopyFolderWithOptionsTest-1-00004.response.json | 2 +- .../CopyFolderWithOptionsTest-1-00005.response.json | 2 +- .../CopyFolderWithOptionsTest-2-00000.response.json | 2 +- .../CopyFolderWithOptionsTest-2-00001.response.json | 2 +- .../CopyFolderWithOptionsTest-2-00002.response.json | 2 +- .../CopyFolderWithOptionsTest-2-00003.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-0-00000.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-0-00001.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-0-00002.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-0-00003.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-1-00000.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-1-00001.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-1-00002.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-1-00003.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-1-00004.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-2-00000.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-2-00001.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-2-00002.response.json | 2 +- .../CopyFolderWithoutOptionAsyncTest-2-00003.response.json | 2 +- .../CopyFolderWithoutOptionTest-0-00000.response.json | 2 +- .../CopyFolderWithoutOptionTest-0-00001.response.json | 2 +- .../CopyFolderWithoutOptionTest-0-00002.response.json | 2 +- .../CopyFolderWithoutOptionTest-0-00003.response.json | 2 +- .../CopyFolderWithoutOptionTest-1-00000.response.json | 2 +- .../CopyFolderWithoutOptionTest-1-00001.response.json | 2 +- .../CopyFolderWithoutOptionTest-1-00002.response.json | 2 +- .../CopyFolderWithoutOptionTest-1-00003.response.json | 2 +- .../CopyFolderWithoutOptionTest-1-00004.response.json | 2 +- .../CopyFolderWithoutOptionTest-2-00000.response.json | 2 +- .../CopyFolderWithoutOptionTest-2-00001.response.json | 2 +- .../CopyFolderWithoutOptionTest-2-00002.response.json | 2 +- .../CopyFolderWithoutOptionTest-2-00003.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00000.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00001.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00002.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00003.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00004.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00005.response.json | 2 +- .../FoldersTests/DeleteFolderTest-0-00006.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00000.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00001.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00002.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00003.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00004.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00005.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00006.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00007.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00008.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00009.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00010.response.json | 2 +- .../FoldersTests/EnsureListFolderDeepTest-0-00011.response.json | 1 + .../FoldersTests/EnsureListFolderDeepTest-0-00012.response.json | 1 + .../EnsureListFolderInExistingHiarchyTest-0-00000.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00001.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00002.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00003.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00004.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00005.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00006.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00007.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00008.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00009.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00010.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00011.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00012.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00013.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00014.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00015.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00016.response.json | 2 +- .../EnsureListFolderInExistingHiarchyTest-0-00017.response.json | 1 + .../EnsureListFolderInExistingHiarchyTest-0-00018.response.json | 1 + .../EnsureListFolderInExistingHiarchyTest-0-00019.response.json | 1 + .../EnsureListFolderSingleLevelTest-0-00000.response.json | 2 +- .../EnsureListFolderSingleLevelTest-0-00001.response.json | 2 +- .../EnsureListFolderSingleLevelTest-0-00002.response.json | 2 +- .../EnsureListFolderSingleLevelTest-0-00003.response.json | 2 +- .../EnsureListFolderSingleLevelTest-0-00004.response.json | 2 +- .../EnsureListFolderSingleLevelTest-0-00005.response.json | 2 +- .../EnsureListFolderSingleLevelTest-0-00006.response.json | 1 + .../FoldersTests/EnsureListFolderTest-0-00000.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00001.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00002.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00003.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00004.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00005.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00006.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00007.response.json | 2 +- .../FoldersTests/EnsureListFolderTest-0-00008.response.json | 1 + .../FoldersTests/EnsureListFolderTest-0-00009.response.json | 1 + .../FoldersTests/GetFolderByIdBatchTest-0-00000.response.json | 2 +- .../FoldersTests/GetFolderByIdBatchTest-0-00001.response.json | 2 +- .../FoldersTests/GetFolderByIdBatchTest-0-00002.response.json | 2 +- .../FoldersTests/GetFolderByIdBatchTest-0-00003.response.json | 2 +- .../FoldersTests/GetFolderByIdTest-0-00000.response.json | 2 +- .../FoldersTests/GetFolderByIdTest-0-00001.response.json | 2 +- .../FoldersTests/GetFolderByIdTest-0-00002.response.json | 2 +- .../FoldersTests/GetFolderByIdTest-0-00003.response.json | 2 +- ...tentFolder_ShouldThrowCorrectException-0-00000.response.json | 2 +- ...tentFolder_ShouldThrowCorrectException-0-00001.response.json | 2 +- ...tentFolder_ShouldThrowCorrectException-0-00002.response.json | 2 +- .../GetFolderByServerRelativeUrlBatchTest-0-00000.response.json | 2 +- .../GetFolderByServerRelativeUrlBatchTest-0-00001.response.json | 2 +- .../GetFolderByServerRelativeUrlBatchTest-0-00002.response.json | 2 +- .../GetFolderByServerRelativeUrlTest-0-00000.response.json | 2 +- .../GetFolderByServerRelativeUrlTest-0-00001.response.json | 2 +- .../GetFolderByServerRelativeUrlTest-0-00002.response.json | 2 +- .../GetFolderByServerRelativeUrlTest-0-00003.response.json | 2 +- ...tentFolder_ShouldThrowCorrectException-0-00000.response.json | 2 +- ...tentFolder_ShouldThrowCorrectException-0-00001.response.json | 2 +- ...tentFolder_ShouldThrowCorrectException-0-00002.response.json | 2 +- .../GetFolderChangesAsyncTest-0-00000.response.json | 2 +- .../GetFolderChangesAsyncTest-0-00001.response.json | 2 +- .../GetFolderChangesAsyncTest-0-00002.response.json | 2 +- .../GetFolderChangesAsyncTest-0-00003.response.json | 2 +- .../FoldersTests/GetFolderChangesTest-0-00000.response.json | 2 +- .../FoldersTests/GetFolderChangesTest-0-00001.response.json | 2 +- .../FoldersTests/GetFolderChangesTest-0-00002.response.json | 2 +- .../FoldersTests/GetFolderChangesTest-0-00003.response.json | 2 +- .../FoldersTests/GetFolderChangesTest-0-00004.response.json | 2 +- .../FoldersTests/GetFolderPropertiesTest-0-00000.response.json | 2 +- .../FoldersTests/GetFolderPropertiesTest-0-00001.response.json | 2 +- .../FoldersTests/GetFolderPropertiesTest-0-00002.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00000.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00001.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00002.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00003.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00004.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00005.response.json | 2 +- .../GetFolderStorageMetricsTest-0-00006.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00000.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00001.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00002.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00003.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00004.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00005.response.json | 2 +- .../GetGraphIdsFromFolderTest-0-00006.response.json | 2 +- .../FoldersTests/GetListRootFolderTest-0-00000.response.json | 2 +- .../FoldersTests/GetListRootFolderTest-0-00001.response.json | 2 +- .../FoldersTests/GetListRootFolderTest-0-00002.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00000.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00001.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00002.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00003.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00004.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00005.response.json | 2 +- .../FoldersTests/GetListSubFoldersTest-0-00006.response.json | 2 +- .../FoldersTests/GetWebFolderDetailsTest-0-00000.response.json | 2 +- .../FoldersTests/GetWebFolderDetailsTest-0-00001.response.json | 2 +- .../FoldersTests/GetWebFolderDetailsTest-0-00002.response.json | 2 +- .../FoldersTests/GetWebFolderTest-0-00000.response.json | 2 +- .../FoldersTests/GetWebFolderTest-0-00001.response.json | 2 +- .../FoldersTests/GetWebFolderTest-0-00002.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-0-00000.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-0-00001.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-0-00002.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-0-00003.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-1-00000.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-1-00001.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-1-00002.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-1-00003.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-1-00004.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-2-00000.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-2-00001.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-2-00002.response.json | 2 +- .../MoveFolderBatchAsyncWithoutOptionTest-2-00003.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-0-00000.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-0-00001.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-0-00002.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-0-00003.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-1-00000.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-1-00001.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-1-00002.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-1-00003.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-1-00004.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-1-00005.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-2-00000.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-2-00001.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-2-00002.response.json | 2 +- .../MoveFolderBatchWithOptionsTest-2-00003.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-0-00000.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-0-00001.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-0-00002.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-0-00003.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-1-00000.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-1-00001.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-1-00002.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-1-00003.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-1-00004.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-2-00000.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-2-00001.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-2-00002.response.json | 2 +- .../MoveFolderBatchWithoutOptionTest-2-00003.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-0-00000.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-0-00001.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-0-00002.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-0-00003.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-1-00000.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-1-00001.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-1-00002.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-1-00003.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-1-00004.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-2-00000.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-2-00001.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-2-00002.response.json | 2 +- ...eFolderSpecificBatchAWithoutOptionTest-2-00003.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-0-00000.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-0-00001.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-0-00002.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-0-00003.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-1-00000.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-1-00001.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-1-00002.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-1-00003.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-1-00004.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-2-00000.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-2-00001.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-2-00002.response.json | 2 +- ...derSpecificBatchAsyncWithoutOptionTest-2-00003.response.json | 2 +- .../MoveFolderWithOptionsTest-0-00000.response.json | 2 +- .../MoveFolderWithOptionsTest-0-00001.response.json | 2 +- .../MoveFolderWithOptionsTest-0-00002.response.json | 2 +- .../MoveFolderWithOptionsTest-0-00003.response.json | 2 +- .../MoveFolderWithOptionsTest-1-00000.response.json | 2 +- .../MoveFolderWithOptionsTest-1-00001.response.json | 2 +- .../MoveFolderWithOptionsTest-1-00002.response.json | 2 +- .../MoveFolderWithOptionsTest-1-00003.response.json | 2 +- .../MoveFolderWithOptionsTest-1-00004.response.json | 2 +- .../MoveFolderWithOptionsTest-1-00005.response.json | 2 +- .../MoveFolderWithOptionsTest-2-00000.response.json | 2 +- .../MoveFolderWithOptionsTest-2-00001.response.json | 2 +- .../MoveFolderWithOptionsTest-2-00002.response.json | 2 +- .../MoveFolderWithOptionsTest-2-00003.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-0-00000.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-0-00001.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-0-00002.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-0-00003.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-1-00000.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-1-00001.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-1-00002.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-1-00003.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-1-00004.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-2-00000.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-2-00001.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-2-00002.response.json | 2 +- .../MoveFolderWithoutOptionAsyncTest-2-00003.response.json | 2 +- .../MoveFolderWithoutOptionTest-0-00000.response.json | 2 +- .../MoveFolderWithoutOptionTest-0-00001.response.json | 2 +- .../MoveFolderWithoutOptionTest-0-00002.response.json | 2 +- .../MoveFolderWithoutOptionTest-0-00003.response.json | 2 +- .../MoveFolderWithoutOptionTest-1-00000.response.json | 2 +- .../MoveFolderWithoutOptionTest-1-00001.response.json | 2 +- .../MoveFolderWithoutOptionTest-1-00002.response.json | 2 +- .../MoveFolderWithoutOptionTest-1-00003.response.json | 2 +- .../MoveFolderWithoutOptionTest-1-00004.response.json | 2 +- .../MoveFolderWithoutOptionTest-2-00000.response.json | 2 +- .../MoveFolderWithoutOptionTest-2-00001.response.json | 2 +- .../MoveFolderWithoutOptionTest-2-00002.response.json | 2 +- .../MoveFolderWithoutOptionTest-2-00003.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-0-00000.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-0-00001.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-0-00002.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-0-00003.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-1-00000.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-1-00001.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-1-00002.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-1-00003.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-2-00000.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-2-00001.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-2-00002.response.json | 2 +- .../FoldersTests/QueryListSubFolderTest-2-00003.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-0-00000.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-0-00001.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-0-00002.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-0-00003.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00000.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00001.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00002.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00003.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00004.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00005.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00006.response.json | 2 +- .../FoldersTests/RecycleFolderAsyncTest-1-00007.response.json | 2 +- .../RecycleFolderBatchAsyncTest-0-00000.response.json | 2 +- .../RecycleFolderBatchAsyncTest-0-00001.response.json | 2 +- .../RecycleFolderBatchAsyncTest-0-00002.response.json | 2 +- .../RecycleFolderBatchAsyncTest-0-00003.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00000.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00001.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00002.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00003.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00004.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00005.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00006.response.json | 2 +- .../RecycleFolderBatchAsyncTest-1-00007.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-0-00000.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-0-00001.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-0-00002.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-0-00003.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00000.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00001.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00002.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00003.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00004.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00005.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00006.response.json | 2 +- .../FoldersTests/RecycleFolderBatchTest-1-00007.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-0-00000.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-0-00001.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-0-00002.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-0-00003.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00000.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00001.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00002.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00003.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00004.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00005.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00006.response.json | 2 +- .../RecycleFolderCurrentBatchAsyncTest-1-00007.response.json | 2 +- .../RecycleFolderCurrentBatchTest-0-00000.response.json | 2 +- .../RecycleFolderCurrentBatchTest-0-00001.response.json | 2 +- .../RecycleFolderCurrentBatchTest-0-00002.response.json | 2 +- .../RecycleFolderCurrentBatchTest-0-00003.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00000.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00001.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00002.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00003.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00004.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00005.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00006.response.json | 2 +- .../RecycleFolderCurrentBatchTest-1-00007.response.json | 2 +- .../FoldersTests/RecycleFolderTest-0-00000.response.json | 2 +- .../FoldersTests/RecycleFolderTest-0-00001.response.json | 2 +- .../FoldersTests/RecycleFolderTest-0-00002.response.json | 2 +- .../FoldersTests/RecycleFolderTest-0-00003.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00000.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00001.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00002.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00003.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00004.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00005.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00006.response.json | 2 +- .../FoldersTests/RecycleFolderTest-1-00007.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00000.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00001.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00002.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00003.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00004.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00005.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00006.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00007.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00008.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00009.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00010.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00011.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00012.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00013.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00014.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00015.response.json | 2 +- .../FoldersTests/RecycleNestedFolderTest-0-00016.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00000.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00001.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00002.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00003.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00004.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00005.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00006.response.json | 2 +- .../FoldersTests/RenameFolderTest-0-00007.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-0-00000.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-0-00001.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-0-00002.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-0-00003.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-2-00000.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-2-00001.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-2-00002.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-2-00003.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-2-00004.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-3-00000.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-3-00001.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-3-00002.response.json | 2 +- .../FoldersTests/SetFolderPropertiesTest-3-00003.response.json | 2 +- .../FoldersTests/UpdateFolderTest-0-00000.response.json | 2 +- .../FoldersTests/UpdateFolderTest-0-00001.response.json | 2 +- .../FoldersTests/UpdateFolderTest-0-00002.response.json | 2 +- .../FoldersTests/UpdateFolderTest-0-00003.response.json | 2 +- .../FoldersTests/UpdateFolderTest-0-00004.response.json | 2 +- .../FoldersTests/UpdateFolderTest-0-00005.response.json | 2 +- 515 files changed, 515 insertions(+), 507 deletions(-) create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00011.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00012.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00017.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00018.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00019.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00006.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00008.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00009.response.json diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00000.response.json index 4d8e00e929..8a4e95d232 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbad17a2-e0d2-1001-48eb-758d556dae29","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"67e2d3a0-f0f5-7000-310e-486d64a665e3","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00001.response.json index 0ee205458f..25b143047f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbad17a2-80de-1001-1a81-3e61f4a8eb4e","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"67e2d3a0-c0fd-7000-310e-43e6750b6760","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00002.response.json index 5d109316b9..0d649d2cd8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbad17a2-b0e6-1001-48eb-783d506192de","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T08:59:29Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-9003-7000-310e-4ce93b2d99e9","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-17T17:12:32Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00003.response.json index 47c4f966b9..76a73389d2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbad17a2-20ef-1001-4178-0fd358b45370","SPClientServiceRequestDuration":"84","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u002294c7d362-a589-4b74-9498-dc73958e1de0\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-7009-7000-310e-44c743fec8dd","SPClientServiceRequestDuration":"81","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u0022afc87d7d-f7f6-4d4e-b1d7-4304c0bacdb4\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00004.response.json index 60d5d48638..31ac903b37 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddFolderFromWebFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbad17a2-20fb-1001-48eb-7cbc861fe372","SPClientServiceRequestDuration":"167","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-3014-7000-310e-47baafbf1dea","SPClientServiceRequestDuration":"368","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00000.response.json index 1502ce57c7..549c673b9b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-200c-1001-1a81-360bcba89981","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-702e-7000-3703-99fdc2997fa0","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00001.response.json index ce34cc35ae..3d5404a8f5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-e012-1001-4178-037f32370bf4","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-7033-7000-310e-4c659389147f","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00002.response.json index eef4c2e049..c0372ac17c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-2019-1001-1a81-3f1241f24c9a","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:33Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-3038-7000-3703-994de532b488","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-07-10T16:50:49Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00003.response.json index bc58b2f65c..7768c27463 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-301f-1001-48eb-71b06155932f","SPClientServiceRequestDuration":"90","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:00Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:00Z\u0022,\u0022UniqueId\u0022:\u0022dc6bd7e6-b335-4f0f-b9f6-ab98d6ec512d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-103c-7000-3703-938bc3702197","SPClientServiceRequestDuration":"93","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u00226e0f192d-aa96-453e-bbd5-2df3c2d490e9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00004.response.json index b8c7bbb262..7988c09f4a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderAsyncTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-8029-1001-4178-04f2f2344b0e","SPClientServiceRequestDuration":"85","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-0045-7000-310e-452aa1ea4df0","SPClientServiceRequestDuration":"301","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00000.response.json index 6f9a99afd7..43ae3ef343 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-3033-1001-48eb-7c8b7d71a01c","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-805b-7000-310e-48e87ce1aed0","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00001.response.json index 88f853fc73..5b7988e270 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-9038-1001-1a81-3abc41079595","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-805f-7000-3e95-51f0d8710079","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00002.response.json index 601f98af5b..98c380232f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-503e-1001-4178-050f38723744","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:00Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-4065-7000-310e-437e9f52e258","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:58Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00003.response.json index 661064c68b..579311d4b3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-d044-1001-48eb-7936e0064c91","SPClientServiceRequestDuration":"71","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_5bc456f9-b71b-421b-8384-f91cd05d6c0c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:00Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:00Z\u0022,\u0022UniqueId\u0022:\u0022ab251e87-5009-4294-8806-b0d2efa201da\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_5bc456f9-b71b-421b-8384-f91cd05d6c0c--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-4069-7000-3e95-5a4aa9fd20e4","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_6f64717b-b0e5-4694-aecd-06f069ac92be\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:14:58Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:58Z\u0022,\u0022UniqueId\u0022:\u00221aba34ab-3eeb-48b6-a9a7-a0d098b3efb1\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_6f64717b-b0e5-4694-aecd-06f069ac92be--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00004.response.json index 028c0a2984..ebaac13844 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchAsyncTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-e04d-1001-1a81-3b479e3a1655","SPClientServiceRequestDuration":"95","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-0070-7000-310e-419779715e44","SPClientServiceRequestDuration":"126","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00000.response.json index e2abcb9d60..4a4b1cd4d5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-6058-1001-48eb-70c5f18064cb","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-d07b-7000-3e95-54cfe8f479b2","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00001.response.json index a8ebb173cc..ff4eb49e7a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-3060-1001-4178-05c018e6cd6b","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-9080-7000-310e-44f8ac62c20c","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00002.response.json index a117aa58bc..1c86a1e4d7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-d065-1001-48eb-7de27a695d56","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:01Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-a084-7000-3e95-5f7f12e4d184","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:58Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00003.response.json index 031fd97c4a..186cef9c83 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-8071-1001-1a81-393b4c30582a","SPClientServiceRequestDuration":"156","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_1b1f5dab-c13d-4228-959c-7eb0c785f1a0\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:01Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:01Z\u0022,\u0022UniqueId\u0022:\u00229be4ac19-0a2c-4389-a6ec-9e6277dfa9e4\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_1b1f5dab-c13d-4228-959c-7eb0c785f1a0--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-6089-7000-310e-4b008c224af0","SPClientServiceRequestDuration":"102","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_334d441f-4096-4e3f-85ad-24e094b441ba\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:14:59Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:59Z\u0022,\u0022UniqueId\u0022:\u0022b641e5b3-8a64-42aa-8f3e-d6e5f9cc889d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_334d441f-4096-4e3f-85ad-24e094b441ba--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00004.response.json index 3649cd4cee..7529850c25 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderBatchTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-907f-1001-4178-0235b569e9fa","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-4093-7000-3e95-5256489ef707","SPClientServiceRequestDuration":"185","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00000.response.json index a165b78d94..ad0949ba7c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-f089-1001-48eb-7da018e493fc","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-c0a2-7000-310e-497b1bec0f0a","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00001.response.json index 5f30f9719a..06fdcc29d5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-4090-1001-1a81-3a8561014da3","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-c0a6-7000-3e95-50158e1f5a36","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00002.response.json index 0d1d27e3d7..74ed1dcbac 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderExceptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-c095-1001-48eb-7e4344f79c6b","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:01Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-90aa-7000-310e-491afba8a979","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:59Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00000.response.json index 6f15946d5c..df180a9e27 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-809c-1001-4178-062a570a629c","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-90af-7000-3e95-5160afef6b55","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00001.response.json index a6ff628a42..c5d1948d83 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-b0a1-1001-48eb-7d14d18d9fe4","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-60b3-7000-310e-42a0fb3f5d89","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00002.response.json index 5d78b031c4..acdb1761c6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-70a7-1001-1a81-323344f2d9ff","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:01Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-60b7-7000-3e95-51429eeca79a","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:59Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00003.response.json index 055b5eba46..df2475a93a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-c0ad-1001-4178-065f089b3a7a","SPClientServiceRequestDuration":"106","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_26ffa029-c3d8-4c69-9cee-746e16a68175\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:02Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:02Z\u0022,\u0022UniqueId\u0022:\u002219a08582-70a2-43c6-9ac2-2dfccca2bb8e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_26ffa029-c3d8-4c69-9cee-746e16a68175--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-30bb-7000-310e-44dc41e4950a","SPClientServiceRequestDuration":"39","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_54f6c233-e23e-46fc-ba4b-4f6d4e2d0b94\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:14:59Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:59Z\u0022,\u0022UniqueId\u0022:\u00223f55316b-eeb7-4c4e-b531-dafa3d232976\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_54f6c233-e23e-46fc-ba4b-4f6d4e2d0b94--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00004.response.json index 7055014e40..42b5ac0e6e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchAsyncTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-c0b8-1001-48eb-7f1afbabfe81","SPClientServiceRequestDuration":"88","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-10c1-7000-310e-4f6a1cde870d","SPClientServiceRequestDuration":"100","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00000.response.json index c91f6ae804..d7badd04f4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-b0c2-1001-1a81-366335bdf22b","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-d0ca-7000-310e-4224e7486eb5","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00001.response.json index 38d40fbed2..d8818065f5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-80c8-1001-48eb-71b5a6eb21f7","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-c0ce-7000-310e-4092e3f07557","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00002.response.json index 30df2e6259..5e96053f0f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-a0cd-1001-4178-04f525f12b7e","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:02Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-a0d2-7000-310e-4667851ba659","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:00Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00003.response.json index 8b80bd8c4c..ec98610b0c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-c0d4-1001-48eb-71ce1e879076","SPClientServiceRequestDuration":"76","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_41333062-f177-456b-bb37-4dbe65635596\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:03Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:03Z\u0022,\u0022UniqueId\u0022:\u0022dfa34e8b-fdf8-4506-b0ac-0bb6abb48d98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_41333062-f177-456b-bb37-4dbe65635596--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-90d6-7000-310e-41202d12d188","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_bde12d8c-2035-40aa-a12e-2a6e7ddd6e85\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:00Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:00Z\u0022,\u0022UniqueId\u0022:\u0022e68ffdcc-fafb-492b-8e61-5c5de673230b\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_bde12d8c-2035-40aa-a12e-2a6e7ddd6e85--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00004.response.json index e39b940cc5..68b2451bfb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderSpecificBatchTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-20de-1001-1a81-38df504e5f7d","SPClientServiceRequestDuration":"91","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-60dc-7000-310e-42b40f43864e","SPClientServiceRequestDuration":"103","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00000.response.json index 49f13fb4ad..eb1eb924cd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-90e8-1001-4178-03bdf674daee","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-00e6-7000-3703-93011ad27cc8","SPClientServiceRequestDuration":"7","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00001.response.json index 0488213cea..92a08f583c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-c0ed-1001-48eb-7fcbe83edff9","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-10eb-7000-310e-4cf89b9305a6","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00002.response.json index 315a3dc41f..555f914442 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-90f4-1001-1a81-3f7898f98d43","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:03Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-d0ee-7000-3703-96077dc47c54","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:00Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00003.response.json index ca78930ed0..c76a492b00 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ccad17a2-b0fa-1001-48eb-7fd78e18a4e3","SPClientServiceRequestDuration":"74","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:03Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:03Z\u0022,\u0022UniqueId\u0022:\u002276478f74-441c-4ed3-bf25-0cbc176858a9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-d0f3-7000-310e-49d05db6522d","SPClientServiceRequestDuration":"41","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:00Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:00Z\u0022,\u0022UniqueId\u0022:\u00225d0b8ebe-082d-4084-a20f-b9b5af2985cc\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00004.response.json index 405e51e33a..2c1b5fd6a9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-1004-1001-4178-09c0d8c38496","SPClientServiceRequestDuration":"159","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"68e2d3a0-90f9-7000-3703-91695afb3490","SPClientServiceRequestDuration":"152","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00000.response.json index 6aba855739..4288bc52f4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-3014-1001-48eb-710a8ba395b3","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-6006-7000-310e-4b19883c44c2","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00001.response.json index 76b900067d..9cc2cb88e5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-3019-1001-1a81-34731c64eb2c","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-200a-7000-3703-951222f1b983","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00002.response.json index 26f770974c..2e76d2081f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-a01e-1001-4178-037bbd5230c4","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:04Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-300e-7000-310e-46313bb2beb2","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:01Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00003.response.json index 693124c477..0133b6722a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-c024-1001-48eb-7af3f80ddc0f","SPClientServiceRequestDuration":"76","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:04Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:04Z\u0022,\u0022UniqueId\u0022:\u00225ff23026-62ef-4744-8dad-32505780b910\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-1013-7000-310e-48502568e011","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:01Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:01Z\u0022,\u0022UniqueId\u0022:\u0022163fa18d-bea7-489a-8a9a-6eb422ddfc48\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00004.response.json index 12f07524c4..37d220bd81 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderAsyncTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-d02d-1001-1a81-3fc0b78febc5","SPClientServiceRequestDuration":"88","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-f019-7000-310e-43a9d8a80dab","SPClientServiceRequestDuration":"115","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00000.response.json index 5c1d4fbfd1..12cd36d78a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-b037-1001-48eb-74d54d6814a1","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-802a-7000-310e-428c949b9a39","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00001.response.json index 7bb16f2373..eecf9e9a6e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-a03d-1001-4178-0feaa0b411f7","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-5033-7000-310e-48cbb76857fa","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00002.response.json index b6f8731ecd..a63e58d5f4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-b042-1001-48eb-7b6ca5d1cedb","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:04Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-3039-7000-310e-4f90a4c563a4","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:01Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00003.response.json index ad1c963c4a..06b3d957de 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-8048-1001-1a81-3360f8cdc4e7","SPClientServiceRequestDuration":"74","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_903a61c3-9594-41f8-9833-4b8d3141f79b\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:05Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:05Z\u0022,\u0022UniqueId\u0022:\u002274c1cc49-ece5-4e65-9a22-6132d9cb72de\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_903a61c3-9594-41f8-9833-4b8d3141f79b--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-103e-7000-310e-49b4516411cc","SPClientServiceRequestDuration":"559","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_94ebd985-55be-453b-ba50-2773adeb6115\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:02Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:02Z\u0022,\u0022UniqueId\u0022:\u0022d0e66849-3796-40a6-9b3d-96d6f1a33b79\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_94ebd985-55be-453b-ba50-2773adeb6115--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00004.response.json index 143fb6a608..dfc6704ef6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchAsyncTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-3051-1001-4178-0e3870d341bf","SPClientServiceRequestDuration":"99","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-2065-7000-310e-42cdd62bfc0a","SPClientServiceRequestDuration":"116","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00000.response.json index 8b1bec8968..7ab2be9b67 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-805c-1001-48eb-74289af093cc","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-506f-7000-3703-95902a7177aa","SPClientServiceRequestDuration":"6","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00001.response.json index e29d5d115e..2bf6029c12 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-1063-1001-1a81-3ad02b3943b7","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-c074-7000-310e-4c5334cd62f9","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00002.response.json index f422b59df9..1047e1e6f0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-c069-1001-48eb-7d183394e77c","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:05Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-2078-7000-3703-9af1566b5134","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:02Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00003.response.json index 2b6bd2c04b..c7c3bdc09f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-3070-1001-4178-07f0c048eea6","SPClientServiceRequestDuration":"91","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_22aa6635-6643-4c8e-a60c-a88553f39d08\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:05Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:05Z\u0022,\u0022UniqueId\u0022:\u00222e671988-6131-4db9-a0d9-6a9e23f5bd8c\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_22aa6635-6643-4c8e-a60c-a88553f39d08--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-907c-7000-310e-4d9fc41d6414","SPClientServiceRequestDuration":"48","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_881f8ac8-b72e-4afc-a2c8-903565905615\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022UniqueId\u0022:\u00225f882790-5936-4c53-8ede-d147c90775d0\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_881f8ac8-b72e-4afc-a2c8-903565905615--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00004.response.json index d3965da3d7..a01be1d73b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderBatchTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-307a-1001-48eb-7b592ddca451","SPClientServiceRequestDuration":"88","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-d082-7000-3703-9a9f0362d176","SPClientServiceRequestDuration":"163","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00000.response.json index a329e9da59..85f86c0cf8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-9083-1001-1a81-3236e21c973e","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-1091-7000-310e-48d0835e3187","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00001.response.json index 60ce84a398..3ce1da56c6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-5089-1001-4178-0f61edb89230","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-6095-7000-3703-910eb680e593","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00002.response.json index 79a4d9e6c3..9ab7e150b7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-108f-1001-48eb-76b16cf9c637","SPClientServiceRequestDuration":"32","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:05Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-e099-7000-310e-444f2eed8839","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00003.response.json index 6aa62908ca..f716eea781 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-5095-1001-1a81-36f982694aee","SPClientServiceRequestDuration":"85","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_14c35e4e-0fba-4d34-a967-607387e7eb3a\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:06Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:06Z\u0022,\u0022UniqueId\u0022:\u0022bf0ade7f-a8cf-4ff4-97f0-647de8091dc7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_14c35e4e-0fba-4d34-a967-607387e7eb3a--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-309d-7000-3703-9a02240b4f33","SPClientServiceRequestDuration":"49","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_573d3eb8-f426-4736-878b-ced0e850b42a\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022UniqueId\u0022:\u0022d0214e5d-00f4-4c06-bfd8-898e224028fb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_573d3eb8-f426-4736-878b-ced0e850b42a--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00004.response.json index d32f439ed4..f2c1900611 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchAsyncTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-009f-1001-48eb-7e08756bb7dc","SPClientServiceRequestDuration":"89","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-a0a3-7000-310e-4e82a5d26670","SPClientServiceRequestDuration":"110","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00000.response.json index 0bcf500e97..ac459288e3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-30a9-1001-4178-096324e092c5","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-60ae-7000-310e-4ac5a398d944","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00001.response.json index 60b68e2d11..a69ce8d921 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-50ae-1001-48eb-7ce3a150dc5b","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-40b2-7000-310e-48d09ac509a0","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00002.response.json index ee389cf76a..58b42c9738 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-60b3-1001-1a81-365bc701b3e8","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:06Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-30b5-7000-310e-4de9e589ac5e","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00003.response.json index c1d2409b45..7bed50b4c2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-d0b9-1001-4178-0a025a22dac4","SPClientServiceRequestDuration":"75","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_5b65811c-1a69-4553-a853-074bcebc560e\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:06Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:06Z\u0022,\u0022UniqueId\u0022:\u0022f2ede6ff-a062-4551-9432-0530cebe9e19\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_5b65811c-1a69-4553-a853-074bcebc560e--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-10ba-7000-310e-49638fc7b020","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_0a61375c-e5df-41ae-848a-9ac77d396928\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:03Z\u0022,\u0022UniqueId\u0022:\u00222182b95a-6c8d-4619-bd53-de25f7343435\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_0a61375c-e5df-41ae-848a-9ac77d396928--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00004.response.json index 956c3df176..1a179df890 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderSpecificBatchTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-f0c2-1001-48eb-72ffcee05d58","SPClientServiceRequestDuration":"88","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-f0bf-7000-310e-4e80018fea48","SPClientServiceRequestDuration":"102","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00000.response.json index 5116548d42..efa6ae9a27 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-70cd-1001-1a81-3057a847b94a","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-b0ca-7000-310e-4940c2af9a69","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00001.response.json index f02bfe587c..5f3af4eb84 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-80d2-1001-48eb-75f426f6710f","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-a0ce-7000-310e-4e2a665d8d85","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00002.response.json index c0ef487ac9..2ccd1d5cda 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-40d8-1001-4178-0fb8b6513a87","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:06Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-80d2-7000-310e-437349fb77a4","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:04Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00003.response.json index 99d3a9ae1b..2e63099e42 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-80de-1001-48eb-71bc9e3d04f7","SPClientServiceRequestDuration":"70","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:07Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:07Z\u0022,\u0022UniqueId\u0022:\u002292a24bf9-76cd-4f03-a2a2-111f84ef8026\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-70d7-7000-310e-474a76bcb145","SPClientServiceRequestDuration":"46","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:04Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:04Z\u0022,\u0022UniqueId\u0022:\u0022931c2c6f-f820-4df6-94af-883c28fb4473\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00004.response.json index 733a4b383b..3c14ad42ab 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/AddListSubFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cdad17a2-50e7-1001-1a81-3d515bd44c85","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-40dd-7000-310e-4ef68ca99d0d","SPClientServiceRequestDuration":"102","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00000.response.json index 5bf3534974..172833f100 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-500e-1001-4178-06e8f8b01e3d","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-90f9-7000-310e-443499a9eb7c","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00001.response.json index 1070671588..69bc75ebfe 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-5014-1001-48eb-70cbd2f32a96","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"69e2d3a0-70fe-7000-310e-4d8568a5c4b5","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00002.response.json index 6420f523d6..e36397cde4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-3019-1001-1a81-34ffe7d2cff8","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-6002-7000-310e-4f450717de7d","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:04Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00003.response.json index 2304ea2cad..abb059ea1c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-701f-1001-4178-0964d34d0774","SPClientServiceRequestDuration":"71","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022UniqueId\u0022:\u0022f67f1cda-2743-4972-b92c-3f2e3f1dfda4\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-4006-7000-310e-41f47be013ff","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022UniqueId\u0022:\u0022980b950a-9ddd-4e0f-b51b-96c6b2d71db1\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00000.response.json index dcc8a7d337..c1e84869ae 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-1028-1001-48eb-7fbe41bf3f1d","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-200d-7000-310e-4560763636d3","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00001.response.json index 88d5cf2662..db9cb6dd60 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-602d-1001-1a81-3181933a5e32","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-0011-7000-310e-4111511ed1e8","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00002.response.json index 87929d0e40..9b91d3899f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-a032-1001-48eb-7f6570066f93","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022UniqueId\u0022:\u0022663291f9-1ba7-4029-ace9-716b14005598\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-e015-7000-310e-4e59fb16bb24","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:04Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:04Z\u0022,\u0022UniqueId\u0022:\u00229e115c4d-9cea-476f-8e18-ecef6fa23f27\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00003.response.json index ec77c5156b..87e62bda9f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-103a-1001-4178-0abef569642f","SPClientServiceRequestDuration":"168","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_06e21e1f-2072-4570-9c3d-d4462969498a\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_06e21e1f-2072-4570-9c3d-d4462969498a--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-c01a-7000-310e-4b2ba285ecc5","SPClientServiceRequestDuration":"138","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_8aeea4c6-e307-4486-8ef9-1975b9349c1e\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_8aeea4c6-e307-4486-8ef9-1975b9349c1e--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00004.response.json index fc48f3d2c4..ce7282f2c6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-404b-1001-48eb-7138f05aae8d","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:24,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-8026-7000-310e-452227e0e4e6","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:5,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00005.response.json index 084cee1567..1a099ac708 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-4051-1001-1a81-37c5f3e5022a","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022UniqueId\u0022:\u00226e488cdd-0726-457c-94dc-b839b665edf1\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-602b-7000-310e-41b20719f1f1","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022UniqueId\u0022:\u00223617ba14-0deb-4a61-877c-982ebbe03cf6\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00000.response.json index 987564a072..5e84d4cbcc 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-4091-1001-48eb-7a663fd7b4cc","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-305e-7000-310e-4a79f91df246","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00001.response.json index b1bcba1ff8..6258dc9295 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-d096-1001-1a81-3d4d631e81d5","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-1062-7000-310e-4904c7048027","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00002.response.json index 7e8661ebeb..d9571de8f5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-509c-1001-48eb-79acd4a41708","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:08Z\u0022,\u0022UniqueId\u0022:\u00226e488cdd-0726-457c-94dc-b839b665edf1\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-0066-7000-310e-4d85841c333a","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:05Z\u0022,\u0022UniqueId\u0022:\u00223617ba14-0deb-4a61-877c-982ebbe03cf6\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00003.response.json index b7eb01529b..d62c53df55 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithOptionsTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-e0a2-1001-4178-04846fd5b923","SPClientServiceRequestDuration":"84","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-d06b-7000-310e-44ba49b9de91","SPClientServiceRequestDuration":"125","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00000.response.json index 2802633b51..b5f9c816c9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-d0ac-1001-48eb-71df670c497b","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-9076-7000-310e-4892acb2e33a","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00001.response.json index d69ae4f3ed..9350fcd6e5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-50b2-1001-1a81-3c9c55a7c8d0","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-707b-7000-310e-4d3bdae574bf","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00002.response.json index fa03c8e13b..ca3f67dab6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-d0b7-1001-4178-020b91427802","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-607f-7000-310e-457e9234268b","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:06Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00003.response.json index ba655809d8..b16d4b6022 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-60be-1001-48eb-7266c7024ed4","SPClientServiceRequestDuration":"66","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022UniqueId\u0022:\u00221590501d-fc98-4e8f-ad2d-6bedf71811cb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-3086-7000-310e-44acea66e2a8","SPClientServiceRequestDuration":"72","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022UniqueId\u0022:\u0022c8ef3c45-7ee7-4a00-8cf9-c30768b151eb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00000.response.json index 534d0f1808..154e4bbe5f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-c0c6-1001-1a81-37d818e9ad46","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-008e-7000-310e-412aed4c570a","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00001.response.json index 15148f5ab5..8f5aee0487 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-d0cb-1001-48eb-7070146ca158","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-f091-7000-310e-438f103c27f9","SPClientServiceRequestDuration":"35","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00002.response.json index 28e8586893..335202f216 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-30d1-1001-4178-0017e8139001","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022UniqueId\u0022:\u00221590501d-fc98-4e8f-ad2d-6bedf71811cb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-d097-7000-310e-458385810c46","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022UniqueId\u0022:\u0022c8ef3c45-7ee7-4a00-8cf9-c30768b151eb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00003.response.json index 127c2a4d73..b3753f8e8c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-50d7-1001-48eb-7ee336961b07","SPClientServiceRequestDuration":"126","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_9b212946-fcf9-47f4-82bb-c8d90142967b\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_9b212946-fcf9-47f4-82bb-c8d90142967b--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-b09c-7000-310e-4a52b032ce33","SPClientServiceRequestDuration":"101","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_278475c3-f212-4728-9800-dc03a447209a\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_278475c3-f212-4728-9800-dc03a447209a--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00004.response.json index 340789de10..3d3cff8d4d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cead17a2-10e4-1001-1a81-3f8e0ec8c70e","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:11Z\u0022,\u0022UniqueId\u0022:\u00222ad6ec6c-eff2-4922-a358-bc57285a6f4a\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-70a6-7000-310e-4a403b0c1fc7","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022UniqueId\u0022:\u0022afd5533f-4070-46b9-be85-6e423a300d8f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00000.response.json index ffdf742c3a..e0a8c0fe8b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-4005-1001-4178-08917717635b","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-c0c3-7000-310e-4c0d86b89ed1","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00001.response.json index 7e17e898e9..055b197ff7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-a00a-1001-48eb-77235135ac98","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-a0c7-7000-310e-422b3010b414","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00002.response.json index b9b7e1485c..506072b337 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-0010-1001-1a81-35a05e5fcb6c","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:10Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:11Z\u0022,\u0022UniqueId\u0022:\u00222ad6ec6c-eff2-4922-a358-bc57285a6f4a\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-90cb-7000-310e-4e7af5f195c7","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:07Z\u0022,\u0022UniqueId\u0022:\u0022afd5533f-4070-46b9-be85-6e423a300d8f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00003.response.json index e392b6b53b..e6a43e5c08 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionAsyncTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-e015-1001-4178-0979de7a60e7","SPClientServiceRequestDuration":"87","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-70d0-7000-310e-48e25903fe6d","SPClientServiceRequestDuration":"117","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00000.response.json index 621b80638f..f35a22b3b3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-d01f-1001-48eb-7e3f1233d96a","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-30db-7000-310e-478f7451f500","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00001.response.json index 23c6a9fdb7..8553792d3f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-c025-1001-1a81-373e452ca914","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-10e0-7000-310e-409aaa4228aa","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00002.response.json index 2bc325e628..64feeee974 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-502b-1001-48eb-7aae4c5f0bdd","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-00e3-7000-310e-410766156e68","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00003.response.json index de6cbc3f96..45e5710e3a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-0032-1001-4178-0b6fcfd0efce","SPClientServiceRequestDuration":"79","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022UniqueId\u0022:\u0022244402ec-96d7-472f-856c-83a91fed0462\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-d0e8-7000-310e-4ac8e5e7b14f","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022UniqueId\u0022:\u0022d9e46909-4eab-4f0d-b999-180e5c850631\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00000.response.json index 59e8536f68..55f4b363ed 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-603b-1001-48eb-7645caa9d2fd","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-b0ef-7000-310e-438a8d75a6ae","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00001.response.json index 117a23ecfd..d12f014858 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-b040-1001-1a81-3cdd1ba32d69","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-90f3-7000-310e-49d2e8b3c5fa","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00002.response.json index 66d32fe426..823eeda257 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-2046-1001-4178-089acbb3ecf3","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022UniqueId\u0022:\u0022244402ec-96d7-472f-856c-83a91fed0462\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-80f7-7000-310e-4dfff5af04f9","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022UniqueId\u0022:\u0022d9e46909-4eab-4f0d-b999-180e5c850631\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00003.response.json index 9fb5c178f6..e7a86cbb6b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-f04b-1001-48eb-72ccc80d1976","SPClientServiceRequestDuration":"207","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_9766e9f4-6235-4b33-8945-371678be8034\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_9766e9f4-6235-4b33-8945-371678be8034--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ae2d3a0-60fb-7000-310e-4d2794143876","SPClientServiceRequestDuration":"78","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_6503dc93-dc6b-47ff-99b0-28d079913c6f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_6503dc93-dc6b-47ff-99b0-28d079913c6f--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00004.response.json index c6b5cb844e..3a785518ab 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-e05d-1001-1a81-3313d0c7d3ed","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:13Z\u0022,\u0022UniqueId\u0022:\u00225f4f64ec-c152-4252-818e-4d62c739f287\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-3003-7000-310e-48f1776198c7","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:09Z\u0022,\u0022UniqueId\u0022:\u00229ad483c9-c487-4821-9492-42230a29d7c8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00000.response.json index dd07a53f97..995aacc1da 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-b07f-1001-48eb-73399b61274a","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-8021-7000-310e-4a1b10b9621d","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00001.response.json index ebf35a9fa3..46625ab5db 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-3085-1001-1a81-35a46ba91059","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-7024-7000-310e-4ad0b73f4523","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00002.response.json index a518ed5f6a..9df7ac80be 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-608a-1001-48eb-7d9b2fcf85eb","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:12Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:13Z\u0022,\u0022UniqueId\u0022:\u00225f4f64ec-c152-4252-818e-4d62c739f287\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-5028-7000-310e-483b15ff36d7","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:08Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:09Z\u0022,\u0022UniqueId\u0022:\u00229ad483c9-c487-4821-9492-42230a29d7c8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00003.response.json index 33cdefc7c2..78f1317988 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderBatchWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-2090-1001-4178-03f40c60335c","SPClientServiceRequestDuration":"100","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-302d-7000-310e-41c52422980e","SPClientServiceRequestDuration":"143","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00000.response.json index de2541e756..3c45bbb492 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-409b-1001-48eb-7c6cb7a16435","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-403d-7000-310e-4c5d43dc79b7","SPClientServiceRequestDuration":"7","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00001.response.json index 0445f147e3..d669edd531 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-70a0-1001-1a81-3eac62805528","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-2042-7000-310e-49b268cda143","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00002.response.json index 8265157083..f151f43ab6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-c0a5-1001-4178-0af8799da575","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:21,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-1046-7000-310e-427ea10bf3ea","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00003.response.json index 05a3eb9511..2f8c780f90 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-10ac-1001-48eb-73b322550383","SPClientServiceRequestDuration":"95","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022UniqueId\u0022:\u00223e302f43-0c08-4af6-98b8-31b457ddde30\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-f049-7000-310e-4a9f7dbc0900","SPClientServiceRequestDuration":"64","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022UniqueId\u0022:\u00229699a7a4-7a32-4c47-a78c-9f527b4eadee\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00000.response.json index b78f62bd17..87b91461e8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-e0b6-1001-1a81-338fbc559d70","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-c051-7000-310e-4e15b8f666ed","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00001.response.json index e6928b3342..34b8026c21 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-80bc-1001-48eb-72ab42334f51","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-b054-7000-310e-46fccb0df167","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00002.response.json index 3abf79ca14..cb7efade3d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-d0c1-1001-4178-0377aa9d253c","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022UniqueId\u0022:\u00223e302f43-0c08-4af6-98b8-31b457ddde30\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-9059-7000-310e-43cc4e7ae71f","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022UniqueId\u0022:\u00229699a7a4-7a32-4c47-a78c-9f527b4eadee\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00003.response.json index 4262ce8ba0..974c8a5db0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-20c7-1001-48eb-7123439bee89","SPClientServiceRequestDuration":"123","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_0574a281-6b6c-4feb-8176-108d15d69a9a\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_0574a281-6b6c-4feb-8176-108d15d69a9a--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-805d-7000-310e-4f3c0a090cd7","SPClientServiceRequestDuration":"177","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_4d83d81e-cadf-4922-8152-0738762355f5\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_4d83d81e-cadf-4922-8152-0738762355f5--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00004.response.json index 43327bbba6..5bbc5004bf 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-30d3-1001-1a81-3b6bca3c9dd4","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:15Z\u0022,\u0022UniqueId\u0022:\u00226b64b3f5-3a14-44ea-8b1e-7c2b82386dde\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-506c-7000-310e-44b5dd0a5216","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022UniqueId\u0022:\u002255d8f218-1143-4780-85e7-89e447d71904\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00000.response.json index bef9de9285..21905cf874 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-40f4-1001-4178-04df7192d872","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-608b-7000-310e-4e759ccf9ba6","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00001.response.json index e78892b4dd..4b3c63f21e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-f0f9-1001-48eb-7f6176e95897","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-508f-7000-310e-44e722ead6df","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00002.response.json index e79f31c51d..322ebfa0b7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cfad17a2-a0ff-1001-1a81-36fc4ae7c0c5","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:14Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:15Z\u0022,\u0022UniqueId\u0022:\u00226b64b3f5-3a14-44ea-8b1e-7c2b82386dde\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-6093-7000-310e-45daa090e579","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:10Z\u0022,\u0022UniqueId\u0022:\u002255d8f218-1143-4780-85e7-89e447d71904\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00003.response.json index 2ee893c378..8b5c42814a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderSpecificBatchWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-b005-1001-4178-019c69d86450","SPClientServiceRequestDuration":"81","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-2097-7000-310e-4192d2b4e938","SPClientServiceRequestDuration":"118","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00000.response.json index d493f16ab7..8642cafadb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-6029-1001-48eb-7790b2dcda86","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-60b4-7000-310e-47573a90bf2a","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00001.response.json index ac9b707afb..ea46444847 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-602e-1001-1a81-3283a0ec9d06","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-40b9-7000-310e-4805fddec7fe","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00002.response.json index dcbce63503..7dd7c936c9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-5034-1001-4178-0629020d54d8","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:16Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-30bc-7000-310e-4536b8fc64a4","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:11Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00003.response.json index 5540d7a189..6e22c8a3d8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-403a-1001-48eb-7fa1ba13a379","SPClientServiceRequestDuration":"77","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022UniqueId\u0022:\u0022ab9fa9c8-53e0-4335-98a7-e614e0e6d08a\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-10c1-7000-310e-4d03ff96d068","SPClientServiceRequestDuration":"49","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022UniqueId\u0022:\u0022f8306ad1-62f0-42a6-acf7-b391a64b6a10\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00000.response.json index 5f7c8ff90f..4477e6bf3d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-b043-1001-1a81-3c8734adf187","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-f0c7-7000-310e-45bf0c8dfbd5","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00001.response.json index ec98a0ef16..869cb53137 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-d048-1001-48eb-78aebf49ed87","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-d0cb-7000-310e-4cae846a5bb9","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00002.response.json index 9926e89efd..c4b1604197 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-704e-1001-4178-0ba408d5dbe1","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:16Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:16Z\u0022,\u0022UniqueId\u0022:\u00227d77f184-01b1-4edf-b6c1-be63a4d29414\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-c0ce-7000-310e-4f49e8e0699e","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:11Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:11Z\u0022,\u0022UniqueId\u0022:\u0022b226a2ad-b8d8-4038-b875-be78279410a8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00003.response.json index 13995e9a75..7f5bf18f7c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-5054-1001-48eb-796ad95be25b","SPClientServiceRequestDuration":"124","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-a0d3-7000-310e-4c30ee0146f8","SPClientServiceRequestDuration":"71","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00004.response.json index 811566a8f1..1514801c3f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-e061-1001-1a81-38474c5db6d1","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:24,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-80da-7000-310e-4d4e46de67e4","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:5,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00005.response.json index f6437dfd39..ff8f10823c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-c067-1001-4178-01ed39dcbd40","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022UniqueId\u0022:\u0022b8f7f9e5-a19c-4668-b218-6c42f4fa3bc9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-60df-7000-310e-457541c6e23c","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022UniqueId\u0022:\u0022323e1a96-893c-4e24-93b6-454daa35236e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00000.response.json index 224bc59d2e..f1ffe9a3a1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-e08b-1001-48eb-7ecdcfd3fc27","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6be2d3a0-a0fd-7000-310e-4d746aa60c45","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00001.response.json index 995ae81a2e..1d6cb9a002 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-3091-1001-1a81-3a3a60c3453c","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-8002-7000-310e-499686016ffb","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00002.response.json index e1a4858763..7331320116 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-a096-1001-4178-0a6e9f46d7c8","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022UniqueId\u0022:\u0022b8f7f9e5-a19c-4668-b218-6c42f4fa3bc9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-7005-7000-310e-475d4c66df73","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022UniqueId\u0022:\u0022323e1a96-893c-4e24-93b6-454daa35236e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00003.response.json index deef2813d4..ba0378c27d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithOptionsTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-509d-1001-48eb-7f7f828ca10e","SPClientServiceRequestDuration":"94","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-6009-7000-310e-4349fd604b1d","SPClientServiceRequestDuration":"102","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00000.response.json index 130b15dc42..b2bd2444b3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-a0a7-1001-1a81-3d640432ce2e","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-2013-7000-310e-48b9d99f8d95","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00001.response.json index 1b7dc9b133..90607bed85 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-d0ac-1001-48eb-75db179d01ed","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-0018-7000-310e-4b6d7bde3da6","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00002.response.json index 6d5e3bcce4..04b017f39b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-20b3-1001-4178-06c5a9f4a5c8","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:18Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-f01b-7000-310e-4c0341c21cd8","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00003.response.json index 908827fed1..c443f43758 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-20b9-1001-48eb-72f7b02fbcd2","SPClientServiceRequestDuration":"70","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022UniqueId\u0022:\u0022f00954c6-7cea-4250-8093-e5bef7a30eab\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-d020-7000-310e-487d5d74a4e7","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022UniqueId\u0022:\u0022da4b2685-9e89-435c-bae9-8e072c079e22\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00000.response.json index 1255687b57..001f206bef 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-b0c1-1001-1a81-3e62acd99a00","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-b026-7000-310e-45765608f674","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00001.response.json index 29b378bf4d..6150b80165 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-c0c6-1001-4178-0057c29d1c8f","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-902a-7000-310e-42a23e74604e","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00002.response.json index 464b9e2c2f..4742c25e2c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-80cc-1001-48eb-7ebf0678c974","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022UniqueId\u0022:\u0022f00954c6-7cea-4250-8093-e5bef7a30eab\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-802e-7000-310e-48a27d8e5e80","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022UniqueId\u0022:\u0022da4b2685-9e89-435c-bae9-8e072c079e22\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00003.response.json index 0fdf60fe15..b496ddc568 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-00d5-1001-1a81-3dd8a35c231b","SPClientServiceRequestDuration":"155","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-6032-7000-310e-40fb1af04e4c","SPClientServiceRequestDuration":"68","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00004.response.json index 4285c26394..f615972b24 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d0ad17a2-20e3-1001-48eb-7d441464e6ea","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022UniqueId\u0022:\u002286d9bb8d-98df-4cf2-b293-f09e8d3904bf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-303a-7000-310e-4521478fcb77","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:14Z\u0022,\u0022UniqueId\u0022:\u0022c5d36f41-ec0f-4a38-9f23-9762158a5361\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00000.response.json index 8e3d8e43d8..3050944416 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-0005-1001-48eb-740a4a02bcb8","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-6059-7000-3703-94ea8f57b474","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00001.response.json index b1ceb0354d..fbaa5fed7e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-300a-1001-1a81-33135defdaf5","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-605d-7000-310e-424aeec6d39c","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00002.response.json index 94ce520cd3..6133a3c3f6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-900f-1001-48eb-75950bb147b2","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:19Z\u0022,\u0022UniqueId\u0022:\u002286d9bb8d-98df-4cf2-b293-f09e8d3904bf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-3061-7000-3703-98fb55cb698a","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:13Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:14Z\u0022,\u0022UniqueId\u0022:\u0022c5d36f41-ec0f-4a38-9f23-9762158a5361\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00003.response.json index 26a21e9966..11f4095a26 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionAsyncTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-3015-1001-4178-0dd687c74716","SPClientServiceRequestDuration":"102","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-3065-7000-310e-4a2eac8f2668","SPClientServiceRequestDuration":"145","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00000.response.json index f4c887e663..5efd954eba 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-501f-1001-48eb-746cdc049c41","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-d071-7000-3703-92eae5c11b5f","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00001.response.json index 3441b9e0d8..76bad2ce66 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-d024-1001-1a81-3b871f9a3486","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-c075-7000-310e-46f32aa84120","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00002.response.json index 05340f87ba..3446a50b3e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-c029-1001-4178-0ce43b82fa9a","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:20Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-a079-7000-3703-9cfbb704c936","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00003.response.json index bda61f1eae..b25ac0b19c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-0030-1001-48eb-7390d2509e37","SPClientServiceRequestDuration":"117","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022UniqueId\u0022:\u0022ae24e075-6f3e-45a4-b63c-b464e41320f2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-907d-7000-310e-49a2c4461f67","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022UniqueId\u0022:\u0022a621af2d-064d-4404-87e9-e294f778777e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00000.response.json index f60544b27e..54e2ff6596 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-003c-1001-1a81-392a2be4caa0","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-6084-7000-3703-90ce69413edf","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00001.response.json index 0a0b0d6290..d45661574c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-6041-1001-48eb-72863293dea0","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-4088-7000-3703-924607f31fda","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00002.response.json index 615e9cbaed..4afa2d830a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-5046-1001-4178-08e331d45e39","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022UniqueId\u0022:\u0022ae24e075-6f3e-45a4-b63c-b464e41320f2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-408c-7000-310e-4e76d2aa1165","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022UniqueId\u0022:\u0022a621af2d-064d-4404-87e9-e294f778777e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00003.response.json index 388ecaaa6b..74adee3bf5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-a04c-1001-48eb-7b5a98bc0cfb","SPClientServiceRequestDuration":"119","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-1090-7000-3703-99b4ee78321e","SPClientServiceRequestDuration":"76","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00004.response.json index c505b2dad4..1eaaede3f6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-3058-1001-1a81-3b85ec136679","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022UniqueId\u0022:\u00223c21eab6-8433-4b22-aaa5-4c5633ad287f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-f097-7000-310e-437e9b517110","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022UniqueId\u0022:\u0022b2239535-bbc4-4e60-b7dd-af45d01116fb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00000.response.json index db21b2b62d..ec1b285049 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-507a-1001-4178-04c0379a5693","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-40b2-7000-3703-9d73b3930d83","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00001.response.json index 55e14e4837..eb00b13151 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-0080-1001-48eb-70e5d91e9713","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-20b6-7000-3703-97fda266279e","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00002.response.json index 3d468f19c7..7a0c0236db 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-3085-1001-1a81-362901601929","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:21Z\u0022,\u0022UniqueId\u0022:\u00223c21eab6-8433-4b22-aaa5-4c5633ad287f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-20b9-7000-310e-472e7df13a1f","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPIED_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPIED_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:15Z\u0022,\u0022UniqueId\u0022:\u0022b2239535-bbc4-4e60-b7dd-af45d01116fb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00003.response.json index eee8613009..b45150d9a5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/CopyFolderWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-208b-1001-4178-0d598cd5121c","SPClientServiceRequestDuration":"104","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-f0bd-7000-3703-9f41e15f8ad9","SPClientServiceRequestDuration":"103","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00000.response.json index 4facbd5263..c32259a726 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-2096-1001-48eb-79aa1f52bddf","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-d0c7-7000-310e-47546adb7366","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00001.response.json index c8c11d676a..d5b67cfc00 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-609c-1001-1a81-378806d95a53","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-a0cb-7000-3703-9eab8f70b35d","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00002.response.json index 64a050972b..7dad7f9a11 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-c0a1-1001-48eb-7e04488ed5c1","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:22Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-a0cf-7000-310e-464439f4c16d","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00003.response.json index 1e9f04a0df..dd922dfb6c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-60a9-1001-4178-07610b03d7ca","SPClientServiceRequestDuration":"93","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO DELETE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO DELETE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:22Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:22Z\u0022,\u0022UniqueId\u0022:\u0022e0ca305c-7aee-4950-9da3-8c3f12163ffb\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-70d4-7000-3703-96c6e5c5a13b","SPClientServiceRequestDuration":"49","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO DELETE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO DELETE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022UniqueId\u0022:\u002256afcd44-2c5a-4795-ae09-512aed25d88b\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00004.response.json index aabb30b7b1..3b64ecc7c1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-00b4-1001-48eb-76190ca49344","SPClientServiceRequestDuration":"106","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-50da-7000-3703-961e8331982f","SPClientServiceRequestDuration":"107","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00005.response.json index f2b09dc826..51e0842386 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-50bf-1001-1a81-36d4d89660cd","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-10e5-7000-3703-94d58b22cb19","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00006.response.json index 211f9d47b6..fc43cfee03 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/DeleteFolderTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d1ad17a2-80c5-1001-4178-03e00250c9b7","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-00e9-7000-310e-46ab1c308c98","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00000.response.json index ac379102c9..40efe82bb6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-e06f-1001-48eb-79f4d539e199","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-d0ed-7000-3703-93f59e72f47e","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00001.response.json index 1e880a5ba3..2bb0d15af8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-7075-1001-1a81-3b86906dd22e","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-d0f1-7000-310e-4218af187ab1","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00002.response.json index d59389e36d..ada2666665 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-e07a-1001-48eb-7fdf1375e246","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:25Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-a0f5-7000-3703-95e87220c454","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:10:35Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00003.response.json index 9aa5d9ed31..d8248cda21 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d2ad17a2-b080-1001-48eb-7d0df750bebb","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"6ce2d3a0-90fa-7000-310e-4b4c94ebc082","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00004.response.json index cf32b40fb8..aee35754ce 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-4088-1001-1a81-349519f62cac","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022UniqueId\u0022:\u00223fd63855-24af-448a-9e4b-5b9cf3a60903\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ce2d3a0-10ff-7000-3703-990a028cf561","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022UniqueId\u0022:\u0022e63cec00-d561-404f-97fe-5f98d58bb276\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00005.response.json index f6e0f5529d..a7590a8b73 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-b092-1001-48eb-7c7d691bc15b","SPClientServiceRequestDuration":"98","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022UniqueId\u0022:\u0022939682a4-5caf-428e-8510-09a5743f5266\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-4005-7000-3703-9244de26bf4f","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022UniqueId\u0022:\u002297c203b1-378e-4ee4-ad11-ec6ec359b407\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00006.response.json index 4d602830dd..bfeecbcc66 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-209d-1001-48eb-79248ff4e654","SPClientServiceRequestDuration":"84","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022UniqueId\u0022:\u00225de2d3a9-2ec0-48c9-916f-373c619c9a8c\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-d00b-7000-3703-9122b5cec14f","SPClientServiceRequestDuration":"47","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022UniqueId\u0022:\u0022bb286103-8175-40aa-8d81-956ae34c0573\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00007.response.json index 967e6595bf..b464ded36c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-20a7-1001-1a81-3b73209ea337","SPClientServiceRequestDuration":"75","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub4\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3/sub4\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:27Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:27Z\u0022,\u0022UniqueId\u0022:\u00222961641f-3c3a-4b6e-9fba-4ad382bc5339\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-f011-7000-3703-91a17b809e9f","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub4\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3/sub4\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022UniqueId\u0022:\u00224f09df46-6d44-4259-a14c-8800529a8ac6\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00008.response.json index 2f3257ac5b..02c86c2cef 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00008.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00008.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-40b0-1001-48eb-733a99ff2c85","SPClientServiceRequestDuration":"86","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub5\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3/sub4/sub5\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:27Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:27Z\u0022,\u0022UniqueId\u0022:\u0022fb30dd3d-61a8-4aca-a668-cc7822ab6905\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-e017-7000-310e-4966f543f52f","SPClientServiceRequestDuration":"64","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub5\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3/sub4/sub5\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022UniqueId\u0022:\u00225dfbd50b-af47-4029-885f-ebf26cf4346a\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00009.response.json index 721d52ac31..79cd73f72d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00009.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00009.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-a0b9-1001-48eb-7e685a418c74","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:26Z\u0022,\u0022UniqueId\u0022:\u00223fd63855-24af-448a-9e4b-5b9cf3a60903\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-501f-7000-3703-9338eac44ea6","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:17Z\u0022,\u0022UniqueId\u0022:\u0022e63cec00-d561-404f-97fe-5f98d58bb276\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00010.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00010.response.json index bc4d058857..88939b7f32 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00010.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00010.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-d0c1-1001-1a81-30cb27102579","SPClientServiceRequestDuration":"111","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-8024-7000-3703-93e0dc6de6de","SPClientServiceRequestDuration":"79","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00011.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00011.response.json new file mode 100644 index 0000000000..7f7964abb2 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00011.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-0031-3000-787b-48233d6665df","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Templates\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Templates\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T08:21:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:54Z\u0022,\u0022UniqueId\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Forms\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:38Z\u0022,\u0022UniqueId\u0022:\u0022f37d4ad2-b342-4938-b2c5-de1f58083341\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222021-12-15T08:40:18Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-15T08:40:18Z\u0022,\u0022UniqueId\u0022:\u002268f6d3bb-e422-4422-82b3-e9bb2e384393\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00012.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00012.response.json new file mode 100644 index 0000000000..4ecefbe059 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderDeepTest-0-00012.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-e033-3000-787b-4c42aa79efbf","SPClientServiceRequestDuration":"61","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00000.response.json index da2408fc27..755a6bbc42 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-d02f-1001-48eb-761755a9472f","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-9007-9000-c10d-14d372c6ece2","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00001.response.json index ccde9a44fd..963693ca56 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-3036-1001-1a81-3e6ff0d1b0d2","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-001d-9000-c10d-1bf632bf5f4a","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00002.response.json index e3879812b7..193b9e82c7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-a03b-1001-48eb-76bca8cc0249","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-b02b-9000-c10d-1f5023fa69ba","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:19Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00003.response.json index d36ade1640..aa2f684588 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d3ad17a2-4041-1001-48eb-7f895873d090","SPClientServiceRequestDuration":"39","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"ac2b51a1-5039-9000-c10d-11be40737313","SPClientServiceRequestDuration":"50","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00004.response.json index d402c4218b..aad21759e2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-f047-1001-1a81-3b1f628fc14d","SPClientServiceRequestDuration":"93","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u0022ec774c82-0f8d-4363-a751-e58b18d949ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-9059-9000-c10d-127c9183e5f5","SPClientServiceRequestDuration":"70","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:54Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:54Z\u0022,\u0022UniqueId\u0022:\u00227df8b5f4-953c-43fa-a5b9-7c43082f1b33\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00005.response.json index 032ecee5b3..7f86e181d2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-5052-1001-48eb-769596bfdba0","SPClientServiceRequestDuration":"110","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u00221ed902c4-c66c-4e3b-809b-250cdd1b626d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-306a-9000-c10d-17d4992e0cff","SPClientServiceRequestDuration":"61","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022UniqueId\u0022:\u00226c716239-6881-4141-944a-3353c51c3f62\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00006.response.json index 551afb31f5..abed782554 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-805d-1001-48eb-7eeec5f68e02","SPClientServiceRequestDuration":"82","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3a\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3a\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u0022a17c354e-da4a-4fbc-ac87-37df8c16e8c1\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-c07a-9000-c10d-16d825df4e20","SPClientServiceRequestDuration":"57","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3a\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3a\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022UniqueId\u0022:\u002260fd7967-a2db-4cec-a08f-54be5485e4ea\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00007.response.json index 4ccf503b08..38ff65e503 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-3067-1001-1a81-33c1362f7f0c","SPClientServiceRequestDuration":"80","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub4a\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3a/sub4a\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:30Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:30Z\u0022,\u0022UniqueId\u0022:\u0022988e46eb-60e7-4cad-9d31-adfc63eb9f44\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-608a-9000-c10d-18298495fdd2","SPClientServiceRequestDuration":"67","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub4a\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3a/sub4a\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022UniqueId\u0022:\u002242f9aa98-62fc-4c66-842a-ffdf5775d609\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00008.response.json index d46e24b6e3..3b6f9795f4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00008.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00008.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-6070-1001-48eb-75d7c183043b","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u0022ec774c82-0f8d-4363-a751-e58b18d949ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-009b-9000-c10d-156378026be1","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:54Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022UniqueId\u0022:\u00227df8b5f4-953c-43fa-a5b9-7c43082f1b33\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00009.response.json index 820297eaed..1e7bdc30b1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00009.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00009.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-2076-1001-48eb-7c51a7dba667","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u00221ed902c4-c66c-4e3b-809b-250cdd1b626d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-a0a9-9000-c10d-19e2275a8b7f","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022UniqueId\u0022:\u00226c716239-6881-4141-944a-3353c51c3f62\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00010.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00010.response.json index 60245b5e71..77e221d206 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00010.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00010.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d3ad17a2-907b-1001-1a81-39078ba8d734","SPClientServiceRequestDuration":"46","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"ac2b51a1-50b7-9000-c10d-190c7ea932ba","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00011.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00011.response.json index f63867f010..25d2ea1e78 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00011.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00011.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-a082-1001-48eb-73bba697c1d5","SPClientServiceRequestDuration":"78","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3b\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3b\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:30Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:30Z\u0022,\u0022UniqueId\u0022:\u0022aaf9e6cc-71f3-4e63-a91b-118b19590a5c\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-a0d3-9000-c10d-182810e491e5","SPClientServiceRequestDuration":"52","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3b\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3b\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:56Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:56Z\u0022,\u0022UniqueId\u0022:\u00225cefa903-9ccb-4021-a7ac-2053a2c54ab7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00012.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00012.response.json index 1be16ffae3..972d19c15e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00012.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00012.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-b08b-1001-48eb-75d053e85322","SPClientServiceRequestDuration":"101","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub4b\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3b/sub4b\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:30Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:30Z\u0022,\u0022UniqueId\u0022:\u002292b8954b-7653-44ee-acbd-f5f9bf8cd983\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-40e3-9000-c10d-115828a91d64","SPClientServiceRequestDuration":"52","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub4b\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2/sub3b/sub4b\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:57Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:57Z\u0022,\u0022UniqueId\u0022:\u0022ff78ca74-5de5-4fee-878d-3e408da016f8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00013.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00013.response.json index 00046f7094..9d35f062e5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00013.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00013.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-5097-1001-1a81-3ebdd3adde6d","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022UniqueId\u0022:\u0022ec774c82-0f8d-4363-a751-e58b18d949ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ac2b51a1-e0f3-9000-c10d-1885825fe486","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222024-09-17T15:15:54Z\u0022,\u0022TimeLastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022UniqueId\u0022:\u00227df8b5f4-953c-43fa-a5b9-7c43082f1b33\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00014.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00014.response.json index 9f33ce4f62..03b1325602 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00014.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00014.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-c09c-1001-48eb-7dd5aad46903","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022StorageMetrics\u0022:{\u0022AdditionalFileStreamSize\u0022:\u00220\u0022,\u0022LastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TotalFileCount\u0022:\u00220\u0022,\u0022TotalFileStreamSize\u0022:\u00220\u0022,\u0022TotalSize\u0022:\u0022152\u0022},\u0022Name\u0022:\u0022sub1\u0022,\u0022UniqueId\u0022:\u0022ec774c82-0f8d-4363-a751-e58b18d949ce\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"b42b51a1-a028-9000-c10d-18d959b79743","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022StorageMetrics\u0022:{\u0022AdditionalFileStreamSize\u0022:\u00220\u0022,\u0022LastModified\u0022:\u00222024-09-17T15:15:54Z\u0022,\u0022TotalFileCount\u0022:\u00220\u0022,\u0022TotalFileStreamSize\u0022:\u00220\u0022,\u0022TotalSize\u0022:\u0022152\u0022},\u0022Name\u0022:\u0022sub1\u0022,\u0022UniqueId\u0022:\u00227df8b5f4-953c-43fa-a5b9-7c43082f1b33\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00015.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00015.response.json index 1a20667cfc..ba289ca598 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00015.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00015.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-90a2-1001-48eb-7c0f07366a0f","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022StorageMetrics\u0022:{\u0022AdditionalFileStreamSize\u0022:\u00220\u0022,\u0022LastModified\u0022:\u00222026-05-27T09:07:29Z\u0022,\u0022TotalFileCount\u0022:\u00220\u0022,\u0022TotalFileStreamSize\u0022:\u00220\u0022,\u0022TotalSize\u0022:\u0022152\u0022},\u0022Name\u0022:\u0022sub2\u0022,\u0022UniqueId\u0022:\u00221ed902c4-c66c-4e3b-809b-250cdd1b626d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"b42b51a1-5036-9000-c10d-136b7378854d","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022StorageMetrics\u0022:{\u0022AdditionalFileStreamSize\u0022:\u00220\u0022,\u0022LastModified\u0022:\u00222024-09-17T15:15:55Z\u0022,\u0022TotalFileCount\u0022:\u00220\u0022,\u0022TotalFileStreamSize\u0022:\u00220\u0022,\u0022TotalSize\u0022:\u0022152\u0022},\u0022Name\u0022:\u0022sub2\u0022,\u0022UniqueId\u0022:\u00226c716239-6881-4141-944a-3353c51c3f62\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00016.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00016.response.json index 48368e7883..f1c9b77dc9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00016.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00016.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-80a8-1001-1a81-39800e8016c1","SPClientServiceRequestDuration":"95","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cc2b51a1-10c0-9000-e1aa-d701a96f0081","SPClientServiceRequestDuration":"214","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00017.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00017.response.json new file mode 100644 index 0000000000..bcb1731f76 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00017.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-107e-3000-787b-4ef8fe0c8466","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Folders\u0022:[{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222021-12-15T08:40:19Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-15T08:40:19Z\u0022,\u0022UniqueId\u0022:\u002266e34e07-5be6-4111-ae6d-23a4bd91ea04\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Templates\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Templates\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T08:21:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:54Z\u0022,\u0022UniqueId\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Forms\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:38Z\u0022,\u0022UniqueId\u0022:\u0022f37d4ad2-b342-4938-b2c5-de1f58083341\u0022,\u0022WelcomePage\u0022:\u0022\u0022}],\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00018.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00018.response.json new file mode 100644 index 0000000000..3b57371699 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00018.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-1081-3000-787b-49b264db4ef0","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222021-12-15T08:40:19Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-15T08:40:19Z\u0022,\u0022UniqueId\u0022:\u002266e34e07-5be6-4111-ae6d-23a4bd91ea04\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Templates\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Templates\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T08:21:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:54Z\u0022,\u0022UniqueId\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Forms\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:38Z\u0022,\u0022UniqueId\u0022:\u0022f37d4ad2-b342-4938-b2c5-de1f58083341\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00019.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00019.response.json new file mode 100644 index 0000000000..dfb78e1f1a --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderInExistingHiarchyTest-0-00019.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-f083-3000-787b-48a75a6f9a96","SPClientServiceRequestDuration":"47","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00000.response.json index 954e0763e5..93dbf37ef1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-e0b2-1001-48eb-70087315d3ff","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-8094-7000-3703-9cc5b0b9d7b5","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00001.response.json index 50ecd2d15f..f0eec4658f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-e0b8-1001-48eb-775be88fbdd0","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-d098-7000-310e-41e57d188eee","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00002.response.json index 305fff6bda..91f30c3ffb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-40be-1001-1a81-3b8030393209","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:31Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-509c-7000-3703-9f9169d208c1","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:19Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00003.response.json index 5ba09afde9..9f7b605f0f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d3ad17a2-10c4-1001-48eb-7dd2c9b768f9","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"6de2d3a0-a0a0-7000-310e-4df56ee83c95","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00004.response.json index 32711de875..2aafb9ae4b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-50cb-1001-48eb-76115f660c50","SPClientServiceRequestDuration":"97","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:31Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:31Z\u0022,\u0022UniqueId\u0022:\u0022adb730b3-c18d-4d9d-84b1-0bd232c50836\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-d0a5-7000-3e95-5c6e78f1be14","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022UniqueId\u0022:\u00229941890b-3c3c-4f0a-a3fb-dab460a7e5af\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00005.response.json index cbd5ab78f7..38123f02e0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-d0d5-1001-1a81-35b0b1cd70f2","SPClientServiceRequestDuration":"120","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-f0ac-7000-3703-94d2f3b25c42","SPClientServiceRequestDuration":"103","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00006.response.json new file mode 100644 index 0000000000..3e042ea3a3 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderSingleLevelTest-0-00006.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-609e-3000-787b-4e632e58909b","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00000.response.json index a5ed17ad4a..83369ba909 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-f0e1-1001-48eb-7f01946c35cb","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-60b6-7000-3e95-58fd41e4e2cd","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00001.response.json index d77920a6b5..c701af5cbe 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-f0e6-1001-48eb-77a91d561348","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-90bb-7000-3703-90f99d8bb993","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00002.response.json index 19887e453d..0c0ab92b5d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-70ec-1001-1a81-36883724342a","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:31Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-30bf-7000-3e95-50507651cad1","SPClientServiceRequestDuration":"47","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00003.response.json index 4aacc48598..668f56e920 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d3ad17a2-a0f2-1001-48eb-7a33dca22537","SPClientServiceRequestDuration":"39","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"6de2d3a0-50c7-7000-3703-92d279468358","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00004.response.json index 5a664a74f1..82fd344317 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-80f9-1001-48eb-70821257cdee","SPClientServiceRequestDuration":"73","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u00228945fac2-7627-4e55-9188-1c36570b4543\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-e0cb-7000-3e95-5edcfed8c6f6","SPClientServiceRequestDuration":"74","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022UniqueId\u0022:\u002252f6265c-221a-4103-9f96-0f597fd32e6b\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00005.response.json index 8e5efa98e7..dd26b37f60 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-6002-1001-1a81-3abe6b0608ca","SPClientServiceRequestDuration":"76","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u00223628c6d3-d2bb-41b8-995b-95c311760423\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-00d4-7000-3703-9ce437a6ea7b","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022UniqueId\u0022:\u002208170c22-9d87-4daf-8000-ec72fa7ba09f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00006.response.json index 0b0b2f0247..d2bdf9d647 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-600b-1001-48eb-7562273f1e26","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u00228945fac2-7627-4e55-9188-1c36570b4543\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-90da-7000-3e95-551f16bedad9","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:20Z\u0022,\u0022UniqueId\u0022:\u002252f6265c-221a-4103-9f96-0f597fd32e6b\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00007.response.json index a3229aa609..063c4dd4ff 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-8010-1001-48eb-7058be0fc768","SPClientServiceRequestDuration":"120","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-70de-7000-3e95-5d5a89623c7e","SPClientServiceRequestDuration":"89","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00008.response.json new file mode 100644 index 0000000000..7630d1563b --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00008.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-80bf-3000-787b-4d33c3b2076f","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222021-12-15T08:40:21Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-15T08:40:21Z\u0022,\u0022UniqueId\u0022:\u002247c7f684-4b41-4726-b6fa-33da110dd591\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Templates\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Templates\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T08:21:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:54Z\u0022,\u0022UniqueId\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/Forms\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222021-12-14T14:38:38Z\u0022,\u0022UniqueId\u0022:\u0022f37d4ad2-b342-4938-b2c5-de1f58083341\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00009.response.json new file mode 100644 index 0000000000..ae8dcf70a1 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderTest-0-00009.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"cbf60ca0-70c3-3000-787b-451062f725fe","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00000.response.json index 10100d6bdf..8a807cb51d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-0049-1001-1a81-33da7d59d61a","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-80e7-7000-3703-97b493aee579","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00001.response.json index 0003a046af..503da57ea6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-204e-1001-48eb-7e2f5e9c6099","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-10ef-7000-3e95-5ebdd58a0b84","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00002.response.json index dccd02d16c..1acad241ea 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-e053-1001-48eb-78ddd45681ef","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-40f3-7000-3703-9298b666647a","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00003.response.json index fbb431df5f..c4af57de59 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-b059-1001-1a81-3a67f25c9934","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-e0f6-7000-3e95-58635f14a12f","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00000.response.json index 888e4b6ec6..0285f2618b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-1060-1001-48eb-7903f86bd77a","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6de2d3a0-10fc-7000-3703-92d7feeb28cc","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00001.response.json index 1681245ca2..8356b462b5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-9065-1001-48eb-70e110851e30","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-a000-7000-3e95-56366dfbb8b6","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00002.response.json index aff7ff9624..2c623adc93 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-e06a-1001-1a81-387513216ec5","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-d005-7000-3703-9e49cb2d11af","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00003.response.json index 0c6e1699e4..c9569dc486 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByIdTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-3070-1001-48eb-7227c55bd599","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-7009-7000-3e95-524074ad1820","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json index 76da8ee2a9..a9d4cd3d84 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-6037-1001-1a81-3957a58585ff","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226bcf4857-8375-4d9c-9c9b-79bad742fbbc\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktest\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"2884f2a1-60ce-f000-6d2c-b32d16c7e3e4","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00220299607f-1525-4d06-9f59-76a814d85b0d\u0022,\u0022Url\u0022:\u0022https://ejazhussain.sharepoint.com/sites/pnpcoresdktest\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json index 6000e2f8f2..fa8c7bcefd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-d03c-1001-48eb-7d64c6e74a71","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u002200000000-0000-0000-0000-000000000000\u0022,\u0022Id\u0022:\u0022f6f1a80c-049d-44fb-9995-f5f137b788a9\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"2884f2a1-a0d8-f000-3a2b-5319bbd88cef","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u002200000000-0000-0000-0000-000000000000\u0022,\u0022Id\u0022:\u0022dc9ac6af-e7e8-4ae3-88e1-e158b99dd3d0\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json index cbbc87a67f..5cdf0307fd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderById_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d4ad17a2-7042-1001-48eb-770c255240fb","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"2884f2a1-90dd-f000-6d2c-b8c237347733","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00000.response.json index e376546d7b..c02438b84c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-b08d-1001-48eb-7c82f1f7ac80","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-900e-7000-3703-95580dfb2bd2","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00001.response.json index c50240bbef..b9e5af3001 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-3093-1001-1a81-3a900d2cba93","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-3012-7000-3e95-537ab9055574","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00002.response.json index d80d83916e..d99928a761 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-f097-1001-48eb-726d63abb02e","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_e1716145-5243-45f8-89cc-43ef64c2cc53\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_e1716145-5243-45f8-89cc-43ef64c2cc53\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_e1716145-5243-45f8-89cc-43ef64c2cc53--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-6016-7000-3703-915fa1bc7fed","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_ae09245e-71dd-472b-9a17-d184f39f5682\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_ae09245e-71dd-472b-9a17-d184f39f5682\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022}\r\n--batchresponse_ae09245e-71dd-472b-9a17-d184f39f5682--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00000.response.json index 726226f116..3afbb15874 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-d09d-1001-48eb-7e6dc881c121","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-001b-7000-3e95-58f6ab1710f2","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00001.response.json index f3cbe283c1..c4381ff542 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-b0a3-1001-1a81-3b90525ad3a7","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-3020-7000-3703-904cc653fbbe","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00002.response.json index 0e7a8698d1..935905f9de 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-b0a8-1001-48eb-7efc1985ad53","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-c023-7000-3e95-5206cf3f3476","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00003.response.json index e7fe604884..ea75dde557 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrlTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-f0ad-1001-48eb-712f71d08ce2","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-0028-7000-3703-9969e571f68b","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json index af22972c17..dd0b981789 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-4075-1001-48eb-73f15b90a264","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226bcf4857-8375-4d9c-9c9b-79bad742fbbc\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktest\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"3c84f2a1-4025-f000-3a2b-5c64f2f2c87e","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00220299607f-1525-4d06-9f59-76a814d85b0d\u0022,\u0022Url\u0022:\u0022https://ejazhussain.sharepoint.com/sites/pnpcoresdktest\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json index 24d978e210..5f631db82b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-d07a-1001-1a81-3d1ad01f4c1a","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u002200000000-0000-0000-0000-000000000000\u0022,\u0022Id\u0022:\u0022f6f1a80c-049d-44fb-9995-f5f137b788a9\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"3c84f2a1-002f-f000-3a2b-59e8c82c7cd0","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u002200000000-0000-0000-0000-000000000000\u0022,\u0022Id\u0022:\u0022dc9ac6af-e7e8-4ae3-88e1-e158b99dd3d0\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json index 0f24567c93..3ed4540cf8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderByServerRelativeUrl_NonExistentFolder_ShouldThrowCorrectException-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d4ad17a2-d07f-1001-48eb-7dfab3b3c642","SPClientServiceRequestDuration":"151","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"3c84f2a1-e033-f000-6d2c-bacb6b3c2940","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00000.response.json index cea2ad4339..f176b17822 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-80b4-1001-1a81-3a7b127d5b83","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-902c-7000-3e95-51ca46f76561","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00001.response.json index cae50a5812..1bb7ca5416 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-70b9-1001-48eb-74dd95445e3e","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-c030-7000-3703-96e72a95a900","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00002.response.json index 6fb79ed4e8..a43d3c1fc4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-60be-1001-48eb-72ff9c0d6007","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-6035-7000-3e95-54de0cd745ec","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00003.response.json index 6060962d24..0f2094302f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-20c6-1001-1a81-39ad56fcde85","SPClientServiceRequestDuration":"59","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022d\u0022:{\u0022results\u0022:[{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem92509209-42f8-4588-ae23-b25e34a0d04a\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem92509209-42f8-4588-ae23-b25e34a0d04a\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857210670000;975524460\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem0b3529c3-ae84-41b1-bb46-69da7ed5e5b4\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem0b3529c3-ae84-41b1-bb46-69da7ed5e5b4\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857211530000;975524462\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:48:42Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem7220c8aa-72c2-49e4-9be0-92f841fff792\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem7220c8aa-72c2-49e4-9be0-92f841fff792\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857543230000;975524703\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:49:14Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:2,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00224386096b-1ceb-43b0-9e77-098785c1ea28\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemb0d62c81-a12f-4a71-bd71-239aa773c892\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemb0d62c81-a12f-4a71-bd71-239aa773c892\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153999902270000;975606159\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T13:46:31Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:3,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u0022c6d2d653-c9ec-4974-bb2d-620bfd62660a\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemf0e1f8b2-9d02-4f3e-9bc4-5b4bfe21cdf8\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemf0e1f8b2-9d02-4f3e-9bc4-5b4bfe21cdf8\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153999936370000;975606185\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T13:46:33Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022}]}}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-803b-7000-3703-9f83b8783d0e","SPClientServiceRequestDuration":"240","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022d\u0022:{\u0022results\u0022:[{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem844dac05-ca47-4d58-bd71-34c56b589f85\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem844dac05-ca47-4d58-bd71-34c56b589f85\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638237099088270000;784106669\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-06-30T08:18:29Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:76,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00222e276f47-5f88-46c5-b3b3-494c3f978194\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd073aea9-e7e8-47c5-9884-a620f819dc17\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd073aea9-e7e8-47c5-9884-a620f819dc17\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891351070000;798603780\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:15Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem7ed00226-e9fb-4d5a-b654-82c26208af70\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem7ed00226-e9fb-4d5a-b654-82c26208af70\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891451770000;798603819\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:25Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem2ec299fe-523c-43b1-8461-e10d3936d27b\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem2ec299fe-523c-43b1-8461-e10d3936d27b\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891523500000;798603834\u0022},\u0022ChangeType\u0022:3,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:32Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem5e3fc9c8-bd27-470a-acb3-d7da675fc662\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem5e3fc9c8-bd27-470a-acb3-d7da675fc662\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278923437470000;798619187\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T18:05:44Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:76,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00222e276f47-5f88-46c5-b3b3-494c3f978194\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022}]}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00000.response.json index c6378b227a..ac8d8218f0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-70cf-1001-48eb-74386beea62a","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-c04d-7000-3e95-54797ec0f845","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00001.response.json index de85c7bf52..e58a71b71e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-90d4-1001-48eb-79c9a74ccbb8","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-0052-7000-3703-91b78c9f0e49","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00002.response.json index d0427ea90c..4f1dbb0b44 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-40da-1001-1a81-3a84727c6637","SPClientServiceRequestDuration":"32","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-9056-7000-3e95-59a9aff168f6","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00003.response.json index 345f91b1cf..3c331072f9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-d0e0-1001-48eb-703b5ea1595b","SPClientServiceRequestDuration":"51","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022d\u0022:{\u0022results\u0022:[{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem25cbadf7-5a79-4f65-a6df-0b7b931d0bb9\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem25cbadf7-5a79-4f65-a6df-0b7b931d0bb9\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857210670000;975524460\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem083b3020-3c5d-4de4-a95d-907a9bfa3766\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem083b3020-3c5d-4de4-a95d-907a9bfa3766\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857211530000;975524462\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:48:42Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem34e3b3bc-1dd5-4fac-adc5-3b1a87eebe95\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem34e3b3bc-1dd5-4fac-adc5-3b1a87eebe95\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857543230000;975524703\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:49:14Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:2,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00224386096b-1ceb-43b0-9e77-098785c1ea28\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItembbfa9311-045e-4cd2-a78d-a7334d9f8786\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItembbfa9311-045e-4cd2-a78d-a7334d9f8786\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153999902270000;975606159\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T13:46:31Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:3,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u0022c6d2d653-c9ec-4974-bb2d-620bfd62660a\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemf0dc083a-7804-48b2-95ca-bb049a6f7013\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemf0dc083a-7804-48b2-95ca-bb049a6f7013\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153999936370000;975606185\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T13:46:33Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022}]}}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-c05a-7000-3703-9b31e97db8e4","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022d\u0022:{\u0022results\u0022:[{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd1e4a9f0-1d58-43dc-84ee-3906d9d65fa4\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd1e4a9f0-1d58-43dc-84ee-3906d9d65fa4\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638237099088270000;784106669\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-06-30T08:18:29Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:76,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00222e276f47-5f88-46c5-b3b3-494c3f978194\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeIteme681c566-3172-4c82-a073-912bed186746\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeIteme681c566-3172-4c82-a073-912bed186746\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891351070000;798603780\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:15Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemb5a97d72-182e-4bc9-9e7b-ef4bbc3a3e5e\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemb5a97d72-182e-4bc9-9e7b-ef4bbc3a3e5e\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891451770000;798603819\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:25Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd15991cc-bb99-45ab-8b5e-31047e9e3235\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd15991cc-bb99-45ab-8b5e-31047e9e3235\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891523500000;798603834\u0022},\u0022ChangeType\u0022:3,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:32Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem2e558835-59a5-4ab3-acbb-5cc0822f03ca\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem2e558835-59a5-4ab3-acbb-5cc0822f03ca\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278923437470000;798619187\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T18:05:44Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:76,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00222e276f47-5f88-46c5-b3b3-494c3f978194\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022}]}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00004.response.json index 910c0e8f35..b9ab65fd8f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderChangesTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-90e8-1001-48eb-78e83fdc7bd6","SPClientServiceRequestDuration":"54","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_6e216778-1b9f-4c04-9e7a-668d7ad2eb6c\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=verbose;charset=utf-8\r\n\r\n{\u0022d\u0022:{\u0022results\u0022:[{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem9615ab65-e86a-49ca-ab0c-364ef3bc2c9d\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem9615ab65-e86a-49ca-ab0c-364ef3bc2c9d\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857210670000;975524460\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemaad2858c-2abc-4325-a7b2-bd909bed3eac\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItemaad2858c-2abc-4325-a7b2-bd909bed3eac\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857211530000;975524462\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:48:42Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem82672a02-55d5-46b4-9126-259eb32db5b3\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem82672a02-55d5-46b4-9126-259eb32db5b3\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153857543230000;975524703\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T09:49:14Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:2,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00224386096b-1ceb-43b0-9e77-098785c1ea28\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem337ddc02-076d-4c78-9150-aa7a52afe663\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem337ddc02-076d-4c78-9150-aa7a52afe663\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153999902270000;975606159\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T13:46:31Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:3,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u0022c6d2d653-c9ec-4974-bb2d-620bfd62660a\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem7c88cd84-0f31-4a11-8e26-3f03d5140346\u0022,\u0022uri\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/_api/SP.ChangeItem7c88cd84-0f31-4a11-8e26-3f03d5140346\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;67280ed5-99dc-4e71-89ab-687a6ce76129;639153999936370000;975606185\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022,\u0022Time\u0022:\u00222026-05-26T13:46:33Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:1,\u0022ListId\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u002210bfe8ef-bb8e-4032-8e7b-d8aceec33e13\u0022,\u0022WebId\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022}]}}\r\n--batchresponse_6e216778-1b9f-4c04-9e7a-668d7ad2eb6c--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-a061-7000-3703-9d5e633856c4","SPClientServiceRequestDuration":"39","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_60865fc8-fb31-4fcf-98cf-d28762c72b8e\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=verbose;charset=utf-8\r\n\r\n{\u0022d\u0022:{\u0022results\u0022:[{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem3e1ddffe-d1a5-45f2-baad-8bae507e343b\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem3e1ddffe-d1a5-45f2-baad-8bae507e343b\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638237099088270000;784106669\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-06-30T08:18:29Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:76,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00222e276f47-5f88-46c5-b3b3-494c3f978194\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemf710c91b-8fda-47ec-9b18-ef6983d70b05\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemf710c91b-8fda-47ec-9b18-ef6983d70b05\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891351070000;798603780\u0022},\u0022ChangeType\u0022:1,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:15Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem1d21beb3-c7f3-40a7-bb97-9c744c84e20e\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItem1d21beb3-c7f3-40a7-bb97-9c744c84e20e\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891451770000;798603819\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:25Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd814f0d7-0eaf-4849-9d02-ba445f38208b\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItemd814f0d7-0eaf-4849-9d02-ba445f38208b\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278891523500000;798603834\u0022},\u0022ChangeType\u0022:3,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T17:12:32Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:88,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00228c4a1395-cb8f-48da-ad3c-7f51ed492c20\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022},{\u0022__metadata\u0022:{\u0022id\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItembb087bec-14b5-4e00-8dfe-55bf1f0dec16\u0022,\u0022uri\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/_api/SP.ChangeItembb087bec-14b5-4e00-8dfe-55bf1f0dec16\u0022,\u0022type\u0022:\u0022SP.ChangeItem\u0022},\u0022ChangeToken\u0022:{\u0022__metadata\u0022:{\u0022type\u0022:\u0022SP.ChangeToken\u0022},\u0022StringValue\u0022:\u00221;3;ac73faf0-a863-41e6-a565-6c9f705f2d84;638278923437470000;798619187\u0022},\u0022ChangeType\u0022:2,\u0022SiteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022,\u0022Time\u0022:\u00222023-08-17T18:05:44Z\u0022,\u0022Editor\u0022:\u0022\u0022,\u0022EditorEmailHint\u0022:null,\u0022ItemId\u0022:76,\u0022ListId\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022,\u0022ServerRelativeUrl\u0022:\u0022\u0022,\u0022SharedByUser\u0022:null,\u0022SharedWithUsers\u0022:null,\u0022UniqueId\u0022:\u00222e276f47-5f88-46c5-b3b3-494c3f978194\u0022,\u0022WebId\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022}]}}\r\n--batchresponse_60865fc8-fb31-4fcf-98cf-d28762c72b8e--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00000.response.json index a0b0c6a50b..747c30631f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-d0f0-1001-1a81-301427cb6c0a","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-8067-7000-3703-9c560a98e58e","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00001.response.json index 29189141b5..74c49c70a2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-20f6-1001-48eb-7e36aa097be4","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-606b-7000-3703-925ffffa05d4","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00002.response.json index a3d1329b79..4f52e1e56c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderPropertiesTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d4ad17a2-20fc-1001-48eb-7942d5940db8","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222026-05-22T21:21:40\u0022,\u0022vti_x005f_contentversionisdirty\u0022:\u0022false\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222026-05-27T09:07:22\u0022,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:5,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:229392,\u0022vti_x005f_contentversion\u0022:0,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:9,\u0022vti_x005f_accesscontrolflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{C80E983D-A0B5-448D-9A9F-9CA22A5F0F64}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Documents\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{B892811A-1A19-42E9-BAD0-705E666F47E7}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{5AE9D725-2C62-418F-BF0A-F361345D8DE5}\u0022,\u0022vti_x005f_listname\u0022:\u0022{B892811A-1A19-42E9-BAD0-705E666F47E7}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222026-05-27T09:07:23\u0022,\u0022vti_x005f_commentcount\u0022:0,\u0022vti_x005f_listflags\u0022:\u002236028797027356812\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:5AE9D725-2C62-418F-BF0A-F361345D8DE5@00000000005\u0022,\u0022vti_x005f_folderitemcount\u0022:22,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_mainlinkdata\u0022:\u0022\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{5AE9D725-2C62-418F-BF0A-F361345D8DE5},5\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:5,\u0022vti_x005f_contenttag\u0022:\u0022{5AE9D725-2C62-418F-BF0A-F361345D8DE5},5,0\u0022,\u0022vti_x005f_listservertemplate\u0022:101,\u0022vti_x005f_listenableminorversions\u0022:\u0022false\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|aram@3fgb00.onmicrosoft.com\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222026-05-27T09:02:31\u0022},\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-4071-7000-3703-9009668926c5","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222021-09-11T23:42:33\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222023-08-25T09:15:16\u0022,\u0022vti_x005f_timelastwnssent\u0022:\u00222022-08-26T09:54:57\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:8,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:229392,\u0022vti_x005f_storagemetricstotalfilestreamsize\u0022:235131,\u0022vti_x005f_listservertemplate\u0022:101,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:2,\u0022vti_x005f_parentid\u0022:\u0022{695B54D0-9320-4AA3-B5E0-F44E72D9AA44}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Documents\u0022,\u0022vti_x005f_storagemetricslastmodified\u0022:\u00222022-06-22T16:46:08\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{13326E70-58BA-4E0E-9B30-08189F21D555}\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{EE07FD66-8537-446F-A7D8-9FD90393188F}\u0022,\u0022vti_x005f_listname\u0022:\u0022{13326E70-58BA-4E0E-9B30-08189F21D555}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222023-08-25T09:15:16\u0022,\u0022vti_x005f_vroom_x005f_CustomFacets\u0022:\u0022{\\\u0022teachingBubbles_oneDrive\\\u0022:{\\\u0022dcd7409f-bd4d-4b95-aeb4-f1156656b0ab\\\u0022:{\\\u0022d\\\u0022:false,\\\u0022v\\\u0022:1}}}\u0022,\u0022vti_x005f_listflags\u0022:\u002236028797027356812\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_folderitemcount\u0022:3,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_storagemetricstotalsize\u0022:624035,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{EE07FD66-8537-446F-A7D8-9FD90393188F},8\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:8,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_storagemetricsmetadatasize\u0022:4521,\u0022vti_x005f_listenableminorversions\u0022:\u0022false\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:EE07FD66-8537-446F-A7D8-9FD90393188F@00000000008\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222023-08-25T09:10:18\u0022,\u0022vti_x005f_storagemetricstotalfilecount\u0022:4,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_searchversion\u0022:1},\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00000.response.json index 717fbc5381..83aa108da1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-2003-1001-1a81-3efd6fd5cbf1","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-1077-7000-3703-9efbc6f19386","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00001.response.json index a85275ce82..ea382dd9b9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-e009-1001-48eb-741d288bcb39","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-007b-7000-3703-913019a31579","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00002.response.json index 704eb9a2a9..8e10285fac 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-600f-1001-48eb-778ed87cb78b","SPClientServiceRequestDuration":"48","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022AllowContentTypes\u0022:true,\u0022BaseTemplate\u0022:101,\u0022BaseType\u0022:1,\u0022ContentTypesEnabled\u0022:false,\u0022CrawlNonDefaultViews\u0022:false,\u0022Created\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022CurrentChangeToken\u0022:{\u0022StringValue\u0022:\u00221;3;b892811a-1a19-42e9-bad0-705e666f47e7;639154696563200000;975854867\u0022},\u0022DefaultContentApprovalWorkflowId\u0022:\u002200000000-0000-0000-0000-000000000000\u0022,\u0022DefaultItemOpenUseListSetting\u0022:false,\u0022Description\u0022:\u0022\u0022,\u0022Direction\u0022:\u0022none\u0022,\u0022DisableCommenting\u0022:false,\u0022DisableGridEditing\u0022:false,\u0022DocumentTemplateUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/Forms/template.dotx\u0022,\u0022DraftVersionVisibility\u0022:0,\u0022EnableAttachments\u0022:false,\u0022EnableFolderCreation\u0022:true,\u0022EnableMinorVersions\u0022:false,\u0022EnableModeration\u0022:false,\u0022EnableRequestSignOff\u0022:true,\u0022EnableVersioning\u0022:true,\u0022EntityTypeName\u0022:\u0022Shared_x0020_Documents\u0022,\u0022ExemptFromBlockDownloadOfNonViewableFiles\u0022:false,\u0022FileSavePostProcessingEnabled\u0022:false,\u0022ForceCheckout\u0022:false,\u0022HasExternalDataSource\u0022:false,\u0022Hidden\u0022:false,\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022,\u0022ImagePath\u0022:{\u0022DecodedUrl\u0022:\u0022/_layouts/15/images/itdl.png?rev=50\u0022},\u0022ImageUrl\u0022:\u0022/_layouts/15/images/itdl.png?rev=50\u0022,\u0022DefaultSensitivityLabelForLibrary\u0022:\u0022\u0022,\u0022SensitivityLabelToEncryptOnDownloadForLibrary\u0022:null,\u0022IrmEnabled\u0022:false,\u0022IrmExpire\u0022:false,\u0022IrmReject\u0022:false,\u0022IsApplicationList\u0022:false,\u0022IsCatalog\u0022:false,\u0022IsPrivate\u0022:false,\u0022ItemCount\u0022:22,\u0022LastItemDeletedDate\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022LastItemModifiedDate\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022LastItemUserModifiedDate\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022ListExperienceOptions\u0022:1,\u0022ListItemEntityTypeFullName\u0022:\u0022SP.Data.Shared_x0020_DocumentsItem\u0022,\u0022MajorVersionLimit\u0022:500,\u0022MajorWithMinorVersionsLimit\u0022:0,\u0022MultipleDataList\u0022:false,\u0022NoCrawl\u0022:false,\u0022ParentWebPath\u0022:{\u0022DecodedUrl\u0022:\u0022/sites/pnpcoresdktestgroup\u0022},\u0022ParentWebUrl\u0022:\u0022/sites/pnpcoresdktestgroup\u0022,\u0022ParserDisabled\u0022:false,\u0022ServerTemplateCanCreateFolders\u0022:true,\u0022TemplateFeatureId\u0022:\u002200bfea71-e717-4e80-aa17-d0c71b360101\u0022,\u0022Title\u0022:\u0022Documents\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-e07e-7000-3703-9722f0659fa9","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022AllowContentTypes\u0022:true,\u0022BaseTemplate\u0022:101,\u0022BaseType\u0022:1,\u0022ContentTypesEnabled\u0022:false,\u0022CrawlNonDefaultViews\u0022:false,\u0022Created\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022CurrentChangeToken\u0022:{\u0022StringValue\u0022:\u00221;3;13326e70-58ba-4e0e-9b30-08189f21d555;638285517205370000;800429109\u0022},\u0022DefaultContentApprovalWorkflowId\u0022:\u002200000000-0000-0000-0000-000000000000\u0022,\u0022DefaultItemOpenUseListSetting\u0022:false,\u0022Description\u0022:\u0022\u0022,\u0022Direction\u0022:\u0022none\u0022,\u0022DisableCommenting\u0022:false,\u0022DisableGridEditing\u0022:false,\u0022DocumentTemplateUrl\u0022:\u0022/sites/prov-2/Shared Documents/Forms/template.dotx\u0022,\u0022DraftVersionVisibility\u0022:0,\u0022EnableAttachments\u0022:false,\u0022EnableFolderCreation\u0022:true,\u0022EnableMinorVersions\u0022:false,\u0022EnableModeration\u0022:false,\u0022EnableRequestSignOff\u0022:true,\u0022EnableVersioning\u0022:true,\u0022EntityTypeName\u0022:\u0022Shared_x0020_Documents\u0022,\u0022ExemptFromBlockDownloadOfNonViewableFiles\u0022:false,\u0022FileSavePostProcessingEnabled\u0022:false,\u0022ForceCheckout\u0022:false,\u0022HasExternalDataSource\u0022:false,\u0022Hidden\u0022:false,\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022,\u0022ImagePath\u0022:{\u0022DecodedUrl\u0022:\u0022/_layouts/15/images/itdl.png?rev=47\u0022},\u0022ImageUrl\u0022:\u0022/_layouts/15/images/itdl.png?rev=47\u0022,\u0022DefaultSensitivityLabelForLibrary\u0022:\u0022\u0022,\u0022SensitivityLabelToEncryptOnDOwnloadForLibrary\u0022:null,\u0022IrmEnabled\u0022:false,\u0022IrmExpire\u0022:false,\u0022IrmReject\u0022:false,\u0022IsApplicationList\u0022:false,\u0022IsCatalog\u0022:false,\u0022IsPrivate\u0022:false,\u0022ItemCount\u0022:4,\u0022LastItemDeletedDate\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022LastItemModifiedDate\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022LastItemUserModifiedDate\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022ListExperienceOptions\u0022:1,\u0022ListItemEntityTypeFullName\u0022:\u0022SP.Data.Shared_x0020_DocumentsItem\u0022,\u0022MajorVersionLimit\u0022:500,\u0022MajorWithMinorVersionsLimit\u0022:0,\u0022MultipleDataList\u0022:false,\u0022NoCrawl\u0022:false,\u0022ParentWebPath\u0022:{\u0022DecodedUrl\u0022:\u0022/sites/prov-2\u0022},\u0022ParentWebUrl\u0022:\u0022/sites/prov-2\u0022,\u0022ParserDisabled\u0022:false,\u0022ServerTemplateCanCreateFolders\u0022:true,\u0022TemplateFeatureId\u0022:\u002200bfea71-e717-4e80-aa17-d0c71b360101\u0022,\u0022Title\u0022:\u0022Documents\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00003.response.json index 38975afbdb..1833b99d3a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-4017-1001-1a81-3db99b941c9a","SPClientServiceRequestDuration":"32","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:23Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-c085-7000-3703-929c8dbb3170","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:16Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00004.response.json index 9cb44919f7..f8caa0160b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-801d-1001-48eb-767e5b52f60f","SPClientServiceRequestDuration":"73","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_STORAGE_METRICS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_STORAGE_METRICS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:37Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:37Z\u0022,\u0022UniqueId\u0022:\u00227194a794-d0c4-4b3b-93da-b925389b7b93\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-a08a-7000-3703-9b9d33d4c5f2","SPClientServiceRequestDuration":"50","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_STORAGE_METRICS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_STORAGE_METRICS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:23Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:23Z\u0022,\u0022UniqueId\u0022:\u0022458aabeb-a3cc-405b-ad0c-cdb9b26ba3ba\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00005.response.json index 4ef75c3e7b..9cb7059010 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-1026-1001-48eb-75b2a4e302f3","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022StorageMetrics\u0022:{\u0022AdditionalFileStreamSize\u0022:\u00220\u0022,\u0022LastModified\u0022:\u00222026-05-27T09:07:37Z\u0022,\u0022TotalFileCount\u0022:\u00220\u0022,\u0022TotalFileStreamSize\u0022:\u00220\u0022,\u0022TotalSize\u0022:\u0022152\u0022},\u0022UniqueId\u0022:\u00227194a794-d0c4-4b3b-93da-b925389b7b93\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-f091-7000-3e95-5b4d7ab51953","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022StorageMetrics\u0022:{\u0022LastModified\u0022:\u00222023-08-25T09:15:23Z\u0022,\u0022TotalFileCount\u0022:\u00220\u0022,\u0022TotalFileStreamSize\u0022:\u00220\u0022,\u0022TotalSize\u0022:\u0022152\u0022},\u0022UniqueId\u0022:\u0022458aabeb-a3cc-405b-ad0c-cdb9b26ba3ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00006.response.json index 13c2635420..15a6ee4c81 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetFolderStorageMetricsTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-002c-1001-1a81-3db4fa43711c","SPClientServiceRequestDuration":"136","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-5096-7000-3703-9a0beb5dda87","SPClientServiceRequestDuration":"147","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00000.response.json index 12377bfab5..0192d02d69 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-4039-1001-48eb-704b4a4f4964","SPClientServiceRequestDuration":"95","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-00a4-7000-3703-924e266f30cc","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00001.response.json index 9a963308eb..5d8cf90d4e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-6043-1001-48eb-7f070dd825eb","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-70a7-7000-3e95-52534aa99ec5","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00002.response.json index d2d024da05..69999bb78c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-2049-1001-1a81-3b29b13c470f","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-d0ab-7000-3703-9762b9b383db","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00003.response.json index f7dadd9e80..89ef1d4a6a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-604f-1001-48eb-713f6b198b34","SPClientServiceRequestDuration":"50","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222026-05-26T09:48:41\u0022,\u0022vti_x005f_contentversionisdirty\u0022:\u0022false\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222026-05-27T09:06:59\u0022,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:2,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:0,\u0022vti_x005f_contentversion\u0022:0,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022vti_x005f_accesscontrolflags\u0022:0,\u0022IsAttachmentLibrary\u0022:1,\u0022vti_x005f_listtitle\u0022:\u0022Site Assets\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{67280ED5-99DC-4E71-89AB-687A6CE76129}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{FEDBE107-CE83-487A-9F35-D90FDC8FDB98}\u0022,\u0022vti_x005f_listname\u0022:\u0022{67280ED5-99DC-4E71-89AB-687A6CE76129}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222026-05-27T09:06:59\u0022,\u0022vti_x005f_commentcount\u0022:0,\u0022vti_x005f_listflags\u0022:\u002240532396654727304\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:FEDBE107-CE83-487A-9F35-D90FDC8FDB98@00000000002\u0022,\u0022vti_x005f_folderitemcount\u0022:3,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{C80E983D-A0B5-448D-9A9F-9CA22A5F0F64}\u0022,\u0022vti_x005f_mainlinkdata\u0022:\u0022\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{FEDBE107-CE83-487A-9F35-D90FDC8FDB98},2\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:2,\u0022vti_x005f_contenttag\u0022:\u0022{FEDBE107-CE83-487A-9F35-D90FDC8FDB98},2,0\u0022,\u0022vti_x005f_listservertemplate\u0022:101,\u0022vti_x005f_listenableminorversions\u0022:\u0022false\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022SHAREPOINT\\\\system\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222026-05-27T09:02:32\u0022},\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-30b1-7000-3e95-5d058108421b","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222021-10-04T07:41:22\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222023-08-25T09:14:57\u0022,\u0022vti_x005f_timelastwnssent\u0022:\u00222022-08-26T09:54:57\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:6,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:229376,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022IsAttachmentLibrary\u0022:1,\u0022vti_x005f_listtitle\u0022:\u0022Site Assets\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{AC73FAF0-A863-41E6-A565-6C9F705F2D84}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{41F6E832-6AA3-41E1-9754-C56290074888}\u0022,\u0022vti_x005f_listname\u0022:\u0022{AC73FAF0-A863-41E6-A565-6C9F705F2D84}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222023-08-25T09:14:57\u0022,\u0022vti_x005f_listflags\u0022:\u002240532396654727304\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:41F6E832-6AA3-41E1-9754-C56290074888@00000000006\u0022,\u0022vti_x005f_folderitemcount\u0022:2,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{695B54D0-9320-4AA3-B5E0-F44E72D9AA44}\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{41F6E832-6AA3-41E1-9754-C56290074888},6\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:6,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_listservertemplate\u0022:101,\u0022vti_x005f_listenableminorversions\u0022:\u0022false\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222023-08-25T09:10:19\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_searchversion\u0022:1},\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00004.response.json index 90d1d48de2..04fc4be23a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-2057-1001-48eb-76125f70d16b","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222026-05-26T09:48:41\u0022,\u0022vti_x005f_contentversionisdirty\u0022:\u0022false\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222026-05-27T09:06:59\u0022,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:2,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:0,\u0022vti_x005f_contentversion\u0022:0,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022vti_x005f_accesscontrolflags\u0022:0,\u0022IsAttachmentLibrary\u0022:1,\u0022vti_x005f_listtitle\u0022:\u0022Site Assets\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{67280ED5-99DC-4E71-89AB-687A6CE76129}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{FEDBE107-CE83-487A-9F35-D90FDC8FDB98}\u0022,\u0022vti_x005f_listname\u0022:\u0022{67280ED5-99DC-4E71-89AB-687A6CE76129}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222026-05-27T09:06:59\u0022,\u0022vti_x005f_commentcount\u0022:0,\u0022vti_x005f_listflags\u0022:\u002240532396654727304\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:FEDBE107-CE83-487A-9F35-D90FDC8FDB98@00000000002\u0022,\u0022vti_x005f_folderitemcount\u0022:3,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{C80E983D-A0B5-448D-9A9F-9CA22A5F0F64}\u0022,\u0022vti_x005f_mainlinkdata\u0022:\u0022\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{FEDBE107-CE83-487A-9F35-D90FDC8FDB98},2\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:2,\u0022vti_x005f_contenttag\u0022:\u0022{FEDBE107-CE83-487A-9F35-D90FDC8FDB98},2,0\u0022,\u0022vti_x005f_listservertemplate\u0022:101,\u0022vti_x005f_listenableminorversions\u0022:\u0022false\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022SHAREPOINT\\\\system\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222026-05-27T09:02:32\u0022},\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-90b5-7000-3703-9b18d2937d18","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222021-10-04T07:41:22\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222023-08-25T09:14:57\u0022,\u0022vti_x005f_timelastwnssent\u0022:\u00222022-08-26T09:54:57\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:6,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:229376,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022IsAttachmentLibrary\u0022:1,\u0022vti_x005f_listtitle\u0022:\u0022Site Assets\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{AC73FAF0-A863-41E6-A565-6C9F705F2D84}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{41F6E832-6AA3-41E1-9754-C56290074888}\u0022,\u0022vti_x005f_listname\u0022:\u0022{AC73FAF0-A863-41E6-A565-6C9F705F2D84}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222023-08-25T09:14:57\u0022,\u0022vti_x005f_listflags\u0022:\u002240532396654727304\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:41F6E832-6AA3-41E1-9754-C56290074888@00000000006\u0022,\u0022vti_x005f_folderitemcount\u0022:2,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{695B54D0-9320-4AA3-B5E0-F44E72D9AA44}\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{41F6E832-6AA3-41E1-9754-C56290074888},6\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:6,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_listservertemplate\u0022:101,\u0022vti_x005f_listenableminorversions\u0022:\u0022false\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222023-08-25T09:10:19\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_searchversion\u0022:1},\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00005.response.json index 6688e6cb59..f9d2390e86 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-205d-1001-1a81-3e1fdfc377c0","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002267280ed5-99dc-4e71-89ab-687a6ce76129\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-00ba-7000-3e95-56ab36c8cc2d","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022ac73faf0-a863-41e6-a565-6c9f705f2d84\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00006.response.json index 24fb55cd3d..9525fd2aca 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetGraphIdsFromFolderTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-1063-1001-48eb-7bf712d4ef4b","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Folders\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:true,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022PnP Microsoft 365 library test with group Notebook\u0022,\u0022ProgID\u0022:\u0022OneNote.Notebook\u0022,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets/PnP Microsoft 365 library test with group Notebook\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:49:14Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T09:49:14Z\u0022,\u0022UniqueId\u0022:\u00224386096b-1ceb-43b0-9e77-098785c1ea28\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets/Forms\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022UniqueId\u0022:\u0022741d6741-9be5-4fb4-a5e3-d610c98a5271\u0022,\u0022WelcomePage\u0022:\u0022\u0022}],\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-e0bd-7000-3e95-5d4b92e99dbb","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Folders\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets/Forms\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022UniqueId\u0022:\u0022beaaa33c-c2fd-4f2b-a176-59711e0efacb\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:true,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022prov-2 Notebook\u0022,\u0022ProgID\u0022:\u0022OneNote.Notebook\u0022,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets/prov-2 Notebook\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:43:54Z\u0022,\u0022TimeLastModified\u0022:\u00222021-10-04T07:43:54Z\u0022,\u0022UniqueId\u0022:\u002269fbe9cd-2f9a-43ec-95a2-d72d2f9cf5ac\u0022,\u0022WelcomePage\u0022:\u0022\u0022}],\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00000.response.json index f45875847d..f7e22ec125 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-f068-1001-48eb-7db5ac1ddf80","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-40c3-7000-3703-954ebbb12b9a","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00001.response.json index fa2518060c..f8a7bf66c9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-a06e-1001-1a81-3164e6ab0034","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-a0c7-7000-3e95-5814f37e1c9f","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00002.response.json index 052a1e06e6..f0330ca02e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListRootFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-c073-1001-48eb-78117278ae7a","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:37Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-10cb-7000-3703-9cd90f836ee4","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:24Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00000.response.json index 3b3294e765..b0c69548e2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-9079-1001-48eb-719517e489af","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-70cf-7000-3e95-5a5aeeb48579","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00001.response.json index 77ca909e49..fc3800c22c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-007f-1001-1a81-38503d8e411f","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-e0d3-7000-3703-9717a1be65ed","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00002.response.json index 529d5bb72d..c4f55e01c2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-3084-1001-48eb-757fa4b3ae38","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:37Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-40d8-7000-3e95-50e7f6f45e91","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:24Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00003.response.json index 8be97e0798..539d96de3b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-e089-1001-48eb-7ac6f5751613","SPClientServiceRequestDuration":"82","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:38Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:38Z\u0022,\u0022UniqueId\u0022:\u002281123da4-d5ec-42e0-8f75-5ea0669cf60f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-b0dc-7000-3703-9683fa0b924b","SPClientServiceRequestDuration":"53","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:25Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:25Z\u0022,\u0022UniqueId\u0022:\u00223f58eaa3-4e54-486e-a604-1e282a1eecf6\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00004.response.json index 8c4f9550d4..92ef38f7e5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-a093-1001-1a81-3fd47968ae35","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:23,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:38Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-00e3-7000-3e95-5c11350793aa","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:25Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00005.response.json index ac8d9af377..e4cb387bc4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-7099-1001-48eb-7bea29f17413","SPClientServiceRequestDuration":"46","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingInvitationTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingInvitationTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:44:55Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:44:55Z\u0022,\u0022UniqueId\u0022:\u00220b0fbc6f-a688-4165-a7df-097b85459cd1\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/Forms\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022UniqueId\u0022:\u00220f3489fd-6be4-4358-b1de-44ef8eb2beb4\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingLinkUsersReadPermissionsAndGrantPermissionsTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingLinkUsersReadPermissionsAndGrantPermissionsTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:45:02Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:45:02Z\u0022,\u0022UniqueId\u0022:\u00225faf2af4-7655-48ee-bec6-58c2434196d9\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:38Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:38Z\u0022,\u0022UniqueId\u0022:\u002281123da4-d5ec-42e0-8f75-5ea0669cf60f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingLinkAnonymousWithEditPermissionsAndPasswordTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingLinkAnonymousWithEditPermissionsAndPasswordTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:44:56Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:44:56Z\u0022,\u0022UniqueId\u0022:\u00221ff0b101-d8ff-4f57-9b05-9a98dd74e914\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingLinkUsersReadPermissionsAndRevokePermissionsTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingLinkUsersReadPermissionsAndRevokePermissionsTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:45:05Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:45:05Z\u0022,\u0022UniqueId\u0022:\u002216be8aa4-31fe-4ccf-b093-9ce48812b804\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingLinkUsersReadPermissionsAndRevokePermissionsExceptionTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingLinkUsersReadPermissionsAndRevokePermissionsExceptionTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:45:03Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:45:03Z\u0022,\u0022UniqueId\u0022:\u0022169eca91-98ff-4ecb-8817-b87f4535f402\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022General\u0022,\u0022ProgID\u0022:\u0022Team.Channel\u0022,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/General\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:49:12Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T09:49:12Z\u0022,\u0022UniqueId\u0022:\u00227738957a-3e45-4d87-9f9e-d163bcb72cdb\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingLinkUsersReadPermissionsAndGrantPermissionsExceptionTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingLinkUsersReadPermissionsAndGrantPermissionsExceptionTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:45:01Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:45:01Z\u0022,\u0022UniqueId\u0022:\u002292327450-0062-4c06-bbff-e21b55b33016\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_COPY2_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:17Z\u0022,\u0022UniqueId\u0022:\u0022ab9fa9c8-53e0-4335-98a7-e614e0e6d08a\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022ShareFolderUsingLinkAnonymousWithReadPermissionsAndAllowingDownloadIncludingPasswordTest\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/ShareFolderUsingLinkAnonymousWithReadPermissionsAndAllowingDownloadIncludingPasswordTest\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T13:44:58Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-26T13:44:58Z\u0022,\u0022UniqueId\u0022:\u0022ec8a349f-1b35-410b-a10c-e802e008778e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-90e7-7000-310e-4ef80c956a71","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:25Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:25Z\u0022,\u0022UniqueId\u0022:\u00223f58eaa3-4e54-486e-a604-1e282a1eecf6\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022General\u0022,\u0022ProgID\u0022:\u0022Team.Channel\u0022,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/General\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:43:52Z\u0022,\u0022TimeLastModified\u0022:\u00222023-06-30T08:22:08Z\u0022,\u0022UniqueId\u0022:\u002201793891-c1f8-441d-a982-603f3f8ae98b\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_COPY2_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_COPY2_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:12Z\u0022,\u0022UniqueId\u0022:\u0022f8306ad1-62f0-42a6-acf7-b391a64b6a10\u0022,\u0022WelcomePage\u0022:\u0022\u0022},{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022Forms\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/Forms\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-04-21T15:31:00Z\u0022,\u0022UniqueId\u0022:\u002252a2441a-b965-4226-896d-d365d386a6fa\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00006.response.json index 1098625686..1b62253278 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetListSubFoldersTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-90a0-1001-48eb-73fde3be584a","SPClientServiceRequestDuration":"91","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-40ed-7000-3703-937c9e40fb3d","SPClientServiceRequestDuration":"125","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00000.response.json index c1ec74c067..a416cf4dca 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-00ab-1001-1a81-316e9f8a3df2","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-20f9-7000-310e-4f08db8e2074","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00001.response.json index 79efb59685..c28492bbf6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-70b2-1001-48eb-759ee505b806","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6ee2d3a0-e0fc-7000-3703-9264b3f1161b","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00002.response.json index 4416218cb2..14dc0ddfaa 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderDetailsTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-90b7-1001-48eb-7fa9545cce69","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-f000-7000-310e-43c50be9fbf9","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00000.response.json index 25cf7d4743..2fc9a7eae7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-b0bd-1001-1a81-338faba09d2d","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-b005-7000-3703-9267140a5f5a","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00001.response.json index 388c5d7758..b3dd5e2055 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-a0c2-1001-48eb-7392f099daf9","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-c009-7000-310e-4cea6b90e621","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00002.response.json index 4133518c5b..58b9d6a617 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/GetWebFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-a0c7-1001-48eb-79bbe5728688","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222026-05-26T09:48:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:06:59Z\u0022,\u0022UniqueId\u0022:\u0022fedbe107-ce83-487a-9f35-d90fdc8fdb98\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-800d-7000-3703-9f9a18dc4d08","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:2,\u0022Name\u0022:\u0022SiteAssets\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SiteAssets\u0022,\u0022TimeCreated\u0022:\u00222021-10-04T07:41:22Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:14:57Z\u0022,\u0022UniqueId\u0022:\u002241f6e832-6aa3-41e1-9754-c56290074888\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00000.response.json index d9f4a64fe5..13f424463c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-c0cd-1001-1a81-3b8e3a92d60c","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-6011-7000-3703-9f53870577c2","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00001.response.json index 2ff1a07970..222f5b18de 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-a0d2-1001-48eb-746e1a5f78a7","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-8015-7000-310e-4487fc43fe44","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00002.response.json index 7ea6ad0d15..483aead278 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-60d8-1001-48eb-76150f7b8a91","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:39Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-301a-7000-3703-96d1eb51964c","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:25Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00003.response.json index 119c85f654..b57756dbf8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-20de-1001-1a81-30ec4f7dded8","SPClientServiceRequestDuration":"77","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022UniqueId\u0022:\u00221d82f036-394f-4a71-8d71-7ec85aae703f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-401e-7000-310e-4564d4585981","SPClientServiceRequestDuration":"50","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022UniqueId\u0022:\u00225b52f7d7-9192-4547-9b1d-5fa776a90579\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00000.response.json index 720a91baf1..d2d85ab366 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-40e7-1001-48eb-7af6e4a71261","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-f023-7000-3703-992964787983","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00001.response.json index a280f3f252..9741786a41 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-70ec-1001-48eb-790f5bd0b7ca","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-0029-7000-310e-49f4520325f8","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00002.response.json index c2bba0eb3f..c7834a2dc1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-10f2-1001-1a81-31aafc32e4f9","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022UniqueId\u0022:\u00221d82f036-394f-4a71-8d71-7ec85aae703f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-c02c-7000-3703-92cf9eb72188","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022UniqueId\u0022:\u00225b52f7d7-9192-4547-9b1d-5fa776a90579\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00003.response.json index f3d2912709..ef412de6c1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5ad17a2-30f8-1001-48eb-768cb6f54dc8","SPClientServiceRequestDuration":"149","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_125e0baa-d4ea-4f4e-b26d-b7b780460524\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_125e0baa-d4ea-4f4e-b26d-b7b780460524--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-d031-7000-310e-42e5c7b8ff15","SPClientServiceRequestDuration":"200","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_f70e66b5-c4e3-48bc-841d-06346decac7f\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_f70e66b5-c4e3-48bc-841d-06346decac7f--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00004.response.json index 923bda90c0..2f6ffbcd32 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-9005-1001-48eb-7c88fb0883a9","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022UniqueId\u0022:\u00221d82f036-394f-4a71-8d71-7ec85aae703f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-4042-7000-3703-98ef5b864421","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022UniqueId\u0022:\u00225b52f7d7-9192-4547-9b1d-5fa776a90579\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00000.response.json index 2a7ffddaaf..a7ccb552c9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-300b-1001-1a81-3361b19ea30e","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-5046-7000-310e-46f38c5edc7e","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00001.response.json index e7b69de49d..eebe36c010 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-5010-1001-48eb-72bcf314c9a0","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-004b-7000-3703-931003f6fe91","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00002.response.json index 8dc843a36f..a190575f42 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-0015-1001-48eb-79cbfc84b110","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:40Z\u0022,\u0022UniqueId\u0022:\u00221d82f036-394f-4a71-8d71-7ec85aae703f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-104f-7000-310e-437d95e85f61","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:26Z\u0022,\u0022UniqueId\u0022:\u00225b52f7d7-9192-4547-9b1d-5fa776a90579\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00003.response.json index ddf9e34285..0dc2d26ae8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchAsyncWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-a01a-1001-1a81-34648d9095b1","SPClientServiceRequestDuration":"172","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-d052-7000-3703-9688562b6afd","SPClientServiceRequestDuration":"118","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00000.response.json index 67db0f715e..2fcacf2e22 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-8048-1001-48eb-76f89bdf0298","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-4071-7000-310e-492714dceed3","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00001.response.json index 06a9265204..9f05731e7b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-204e-1001-1a81-3f07d719a80e","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-0076-7000-3703-9a5e2f52e812","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00002.response.json index 52c607825a..15940afbca 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-5053-1001-48eb-73d30ed882e5","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:23,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:41Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-e079-7000-3703-924166ccea0f","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00003.response.json index 569f47c392..a590942ca7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-3059-1001-48eb-7fc6be8b3441","SPClientServiceRequestDuration":"141","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_EXISTING_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:42Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:42Z\u0022,\u0022UniqueId\u0022:\u0022642a5375-a9aa-41ad-8ec1-9a8d88a4f826\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-c07e-7000-3703-920e1d518bdc","SPClientServiceRequestDuration":"52","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_EXISTING_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022UniqueId\u0022:\u002260d36915-cc25-478f-9589-ed5c75b39ae1\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00000.response.json index 2e214df291..33d293ee35 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-a067-1001-1a81-3173b732253a","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-9086-7000-3703-9e3bbff8aab0","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00001.response.json index e60fdd4212..de8d3172f5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-e06c-1001-48eb-72d1a8553071","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-808a-7000-3703-943363e1902b","SPClientServiceRequestDuration":"8","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00002.response.json index cdc0cbecca..8bbd8b9d10 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-0073-1001-48eb-7f7a42ea09de","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:41Z\u0022,\u0022UniqueId\u0022:\u00223340ec62-0f37-42b7-8066-30133e530bbd\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-608e-7000-310e-41a283d29a26","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022UniqueId\u0022:\u0022e2c8a73d-8c32-416e-b612-b9837c400530\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00003.response.json index 9fac60475e..ead7882dbb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-707a-1001-1a81-337a3433eb44","SPClientServiceRequestDuration":"171","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_ff35a260-e3bb-44f0-af15-9db2824fdd18\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_ff35a260-e3bb-44f0-af15-9db2824fdd18--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-5093-7000-3703-94f51e94d595","SPClientServiceRequestDuration":"117","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_aece1142-39da-4587-bf4b-ef90871d4337\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_aece1142-39da-4587-bf4b-ef90871d4337--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00004.response.json index a023f9495e..d756e8d1e7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-3089-1001-48eb-76d63056046a","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:24,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:42Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-f09e-7000-310e-4a76203d9fac","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:5,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00005.response.json index 536ae3ed7b..b5dd7d515e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-008f-1001-48eb-77596b1a5230","SPClientServiceRequestDuration":"34","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:42Z\u0022,\u0022UniqueId\u0022:\u00223340ec62-0f37-42b7-8066-30133e530bbd\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-e0a3-7000-3703-952302bf8e28","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:28Z\u0022,\u0022UniqueId\u0022:\u0022e2c8a73d-8c32-416e-b612-b9837c400530\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00000.response.json index 4bdfddbbad..d97e8d4940 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-10af-1001-48eb-74ebb897ada2","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-20c0-7000-310e-436167402ffd","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00001.response.json index c0063fd22b..09241cb603 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-70b4-1001-48eb-7bd6594d2b09","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-20c4-7000-3703-9ad2ea644501","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00002.response.json index c1415e04a6..422844ed66 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-80b9-1001-1a81-318f3ea863ca","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:42Z\u0022,\u0022UniqueId\u0022:\u00223340ec62-0f37-42b7-8066-30133e530bbd\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-00c8-7000-310e-435b40581bfc","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_EXISTING_BATCH_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:27Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:28Z\u0022,\u0022UniqueId\u0022:\u0022e2c8a73d-8c32-416e-b612-b9837c400530\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00003.response.json index bead84c5d8..07d5cb68ae 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithOptionsTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-10bf-1001-48eb-7afdfbe866d0","SPClientServiceRequestDuration":"97","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-f0cb-7000-3703-9daf95132a9f","SPClientServiceRequestDuration":"104","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00000.response.json index a2e7c5bce4..0cee49aa54 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-60c9-1001-48eb-76b15dec75ea","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-a0d5-7000-310e-4144e51582a8","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00001.response.json index 23d706b6ae..c3dc98be56 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-f0ce-1001-1a81-3891c7eebf08","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-a0d9-7000-3703-9f5fde7231fd","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00002.response.json index b8e704547b..169551e4d3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-e0d3-1001-48eb-7f48793c7230","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:43Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-70de-7000-310e-4f557e7bccdb","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:28Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00003.response.json index e2d434a2e4..37ea60b666 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-a0d9-1001-48eb-74e47b6fe85d","SPClientServiceRequestDuration":"85","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022UniqueId\u0022:\u0022dbe276ac-fe48-4422-ab80-d85334b365ec\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-60e2-7000-3703-9e6660613825","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022UniqueId\u0022:\u0022c348b310-a286-4855-a475-ff549c0aa3b3\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00000.response.json index d0a5e4c932..cb6b88dc43 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-e0e3-1001-1a81-3d63685dc6c9","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-40e9-7000-3703-90928e6034b2","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00001.response.json index 5ace625d47..18f1b7cb10 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-90e8-1001-48eb-7e2132958658","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-10ed-7000-310e-4034614b5515","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00002.response.json index 648d88094e..7093449056 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-d0ed-1001-48eb-77dc94ab3b44","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022UniqueId\u0022:\u0022dbe276ac-fe48-4422-ab80-d85334b365ec\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-10f1-7000-3703-911141e81e62","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022UniqueId\u0022:\u0022c348b310-a286-4855-a475-ff549c0aa3b3\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00003.response.json index dc3a8f9777..6883da738a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-c0f2-1001-1a81-3a03ead67dad","SPClientServiceRequestDuration":"134","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_c0c04a76-685c-47c6-819b-98e121af84f1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_c0c04a76-685c-47c6-819b-98e121af84f1--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"6fe2d3a0-f0f4-7000-3703-9da1b83f110a","SPClientServiceRequestDuration":"106","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_fbeedf8b-efca-47a6-9079-8d5d7105bab6\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_fbeedf8b-efca-47a6-9079-8d5d7105bab6--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00004.response.json index 6778cfcc78..234ce92be7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6ad17a2-f0ff-1001-48eb-7dbfdf7253ac","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022UniqueId\u0022:\u0022dbe276ac-fe48-4422-ab80-d85334b365ec\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-b000-7000-3703-93fdf0d261fc","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022UniqueId\u0022:\u0022c348b310-a286-4855-a475-ff549c0aa3b3\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00000.response.json index 42ae1a1828..7e3ac7a4f9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-6005-1001-48eb-71fbf7c0a9a8","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-8005-7000-310e-416a690adfb6","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00001.response.json index c69e975c07..c28eda2628 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-500a-1001-1a81-361b2ad698ef","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-700a-7000-3703-9539861f5fdd","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00002.response.json index 888e699f78..035fcdefba 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-3010-1001-48eb-7a2004f0eb95","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:44Z\u0022,\u0022UniqueId\u0022:\u0022dbe276ac-fe48-4422-ab80-d85334b365ec\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-500e-7000-3703-9483098eda5e","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:29Z\u0022,\u0022UniqueId\u0022:\u0022c348b310-a286-4855-a475-ff549c0aa3b3\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00003.response.json index cbf831d2e5..f61b575703 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderBatchWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-a015-1001-48eb-79af54ca8541","SPClientServiceRequestDuration":"84","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-4013-7000-3703-9ae498ca51ff","SPClientServiceRequestDuration":"105","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00000.response.json index ee91d4380a..cda193bc16 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-507a-1001-48eb-7dac76e27842","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-001d-7000-3703-975722caa54d","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00001.response.json index b554d650ec..717079a888 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-507f-1001-48eb-7e2c2260bae9","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-e020-7000-3703-9416793f511e","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00002.response.json index d00b827eb2..bf07fee88b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-4084-1001-1a81-33428bc092e3","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:46Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-d024-7000-3703-94c4a29b0108","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00003.response.json index 5ad7fb4e93..c27337f27a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-b089-1001-48eb-72181818a9b5","SPClientServiceRequestDuration":"73","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022UniqueId\u0022:\u0022bb4f5463-3f66-4f0b-9c4d-46eaeb513b77\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-b029-7000-3703-9f5ebc335ed1","SPClientServiceRequestDuration":"43","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022UniqueId\u0022:\u0022dd24d560-3fda-4813-9dd8-25037ff0e423\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00000.response.json index bac918f3e7..cc796207e1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-e091-1001-48eb-7f5b667e4b7a","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-902f-7000-3703-95d4a3148ea0","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00001.response.json index 81aded710f..1585ca1430 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-9097-1001-1a81-35815c1866b7","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-a033-7000-3e95-59f0b006cfce","SPClientServiceRequestDuration":"6","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00002.response.json index 1ecd4db18c..f238a8e99c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-b09b-1001-48eb-7f86a5b8d018","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022UniqueId\u0022:\u0022bb4f5463-3f66-4f0b-9c4d-46eaeb513b77\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-5038-7000-3703-9c9ceb0bd6af","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022UniqueId\u0022:\u0022dd24d560-3fda-4813-9dd8-25037ff0e423\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00003.response.json index bbc2f4acee..a49185bf8a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-20a2-1001-48eb-76329f87b1da","SPClientServiceRequestDuration":"143","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_45b3676a-4573-4270-a3a2-c54394ecadf9\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_45b3676a-4573-4270-a3a2-c54394ecadf9--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-603d-7000-3e95-563d3d6cfdfb","SPClientServiceRequestDuration":"150","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_bb71de9d-b596-4104-bc54-30f7939f07dc\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_bb71de9d-b596-4104-bc54-30f7939f07dc--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00004.response.json index c05f395ea0..4b6fe18580 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-70ae-1001-1a81-37b60fee50d8","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022UniqueId\u0022:\u0022bb4f5463-3f66-4f0b-9c4d-46eaeb513b77\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-f049-7000-3703-94cebf01881b","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022UniqueId\u0022:\u0022dd24d560-3fda-4813-9dd8-25037ff0e423\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00000.response.json index baf0e77f76..4202263032 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-60b7-1001-48eb-74f7be9e9fa8","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-004e-7000-3e95-52a363e9cf49","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00001.response.json index 4547191628..79913aa54c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-30bc-1001-48eb-7347fa690a13","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-b052-7000-3703-9806f73f29a6","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00002.response.json index 16a3d650bb..be15ed7e20 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-60c1-1001-1a81-3f1d47fd9f05","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:47Z\u0022,\u0022UniqueId\u0022:\u0022bb4f5463-3f66-4f0b-9c4d-46eaeb513b77\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-d056-7000-3e95-572dc9553737","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:30Z\u0022,\u0022UniqueId\u0022:\u0022dd24d560-3fda-4813-9dd8-25037ff0e423\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00003.response.json index d62a28bb42..8ea24a288a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-d0c6-1001-48eb-774ad4670cdf","SPClientServiceRequestDuration":"82","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-805b-7000-3703-946f0772bf2a","SPClientServiceRequestDuration":"124","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00000.response.json index e28863b5e3..183fe48b7a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-501f-1001-1a81-3740c6555636","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-7066-7000-3e95-542f5760c4f0","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00001.response.json index 373f63f22f..465951f8ba 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-a024-1001-48eb-7f624306c233","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-206a-7000-3703-902afcbd18a3","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00002.response.json index c047199669..332d9b00eb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-d029-1001-48eb-7fa8a6a681a3","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-306f-7000-3e95-5fdecbb2ce23","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00003.response.json index 62f25aab2a..62d6d33247 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-d02f-1001-1a81-313f100b7bdf","SPClientServiceRequestDuration":"98","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022UniqueId\u0022:\u0022406e46f3-f424-42d0-8f0a-55900eb643ed\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-f072-7000-3703-9d86a4d2d1d8","SPClientServiceRequestDuration":"46","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022UniqueId\u0022:\u0022340a31ab-5d86-475c-8166-5b46466ee1ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00000.response.json index 6347af389b..2a9ec64986 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-303a-1001-48eb-72270b4d7821","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-f07a-7000-3e95-54be4ba58c8b","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00001.response.json index 19367060e1..c3bc7ade1d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-303f-1001-48eb-737d69b13a7f","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-9082-7000-3703-9a4af9b98dae","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00002.response.json index f96cc609ec..088e15b71d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-8044-1001-1a81-33b4db3faa43","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022UniqueId\u0022:\u0022406e46f3-f424-42d0-8f0a-55900eb643ed\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-a087-7000-3e95-5762687572dc","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022UniqueId\u0022:\u0022340a31ab-5d86-475c-8166-5b46466ee1ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00003.response.json index f3c39293d3..c81736da38 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-404a-1001-48eb-7ebfc8261bed","SPClientServiceRequestDuration":"139","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_7fb83bea-3154-41de-9508-1419286a54c8\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_7fb83bea-3154-41de-9508-1419286a54c8--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-608b-7000-3703-9455418320aa","SPClientServiceRequestDuration":"102","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_6b0ee64e-3a68-4566-a8da-152fc4f88fb3\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022odata.null\u0022:true}\r\n--batchresponse_6b0ee64e-3a68-4566-a8da-152fc4f88fb3--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00004.response.json index 30852d0037..b3fa9bbcec 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-0057-1001-48eb-70bbf504c063","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:46Z\u0022,\u0022UniqueId\u0022:\u0022406e46f3-f424-42d0-8f0a-55900eb643ed\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-5095-7000-3e95-5e87b167b098","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022UniqueId\u0022:\u0022340a31ab-5d86-475c-8166-5b46466ee1ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00000.response.json index 836b371249..df15280165 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-005d-1001-1a81-33cfd40a6f8c","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-0099-7000-3703-9cf83fb879d4","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00001.response.json index 29e05f17e0..8f6a9fa752 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-3065-1001-48eb-783d6569fef4","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-109e-7000-3e95-504f1e9245ec","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00002.response.json index 38221a17a0..8eeb5d60fc 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-606a-1001-48eb-72cd86315ff0","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:45Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:46Z\u0022,\u0022UniqueId\u0022:\u0022406e46f3-f424-42d0-8f0a-55900eb643ed\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-d0a1-7000-3703-9921405f5359","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_BATCH_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:31Z\u0022,\u0022UniqueId\u0022:\u0022340a31ab-5d86-475c-8166-5b46466ee1ce\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00003.response.json index 82ad4696ae..fa94e2674d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderSpecificBatchAsyncWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-0070-1001-1a81-356d11480884","SPClientServiceRequestDuration":"90","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-e0a5-7000-3e95-595a1b94087c","SPClientServiceRequestDuration":"125","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00000.response.json index a996f33c71..7afbf898f7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-90ea-1001-1a81-320e4fcf9a70","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-e0c7-7000-3703-9207f0a13c42","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00001.response.json index 14b5ab2053..5f62895c87 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-a0ef-1001-48eb-7bb11619eee1","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-d0cc-7000-3703-970b811c055b","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00002.response.json index 2fab5acb34..bea8e30216 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-00f5-1001-48eb-762de16deda1","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:23,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-b0d0-7000-3703-9300eec345a7","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:32Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00003.response.json index b7f69687bb..267a8b8f95 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d7ad17a2-70fb-1001-1a81-36dc424e19b1","SPClientServiceRequestDuration":"80","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_EXISTING_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022UniqueId\u0022:\u00220b796e08-e27e-4a36-9f16-3b95b6581984\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-90d5-7000-3703-984131279f8c","SPClientServiceRequestDuration":"63","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_EXISTING_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:33Z\u0022,\u0022UniqueId\u0022:\u00222ecd8291-72b9-4d0e-bdc6-a1045ba7c36e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00000.response.json index 7a9ec5eb26..fc72c2ce91 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-c004-1001-48eb-7a4269596997","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-60dd-7000-3703-9b772b76808d","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00001.response.json index 506bb0773b..4a33e6ec9e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-f009-1001-48eb-71e0a1a3f70b","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-50e1-7000-3703-9d00c8e704b8","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00002.response.json index d7afdff7f0..573622ab48 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-900f-1001-1a81-361adf040d77","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022UniqueId\u0022:\u0022034ade05-eb35-4cd6-b54d-34974588fc20\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-20e7-7000-3703-9d9d7711b3fd","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:32Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:32Z\u0022,\u0022UniqueId\u0022:\u00229a2e7d27-c2f5-44ca-bb8d-792a5b829934\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00003.response.json index ca242aae36..7e824efa2b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-b015-1001-48eb-771b8c962f5e","SPClientServiceRequestDuration":"143","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-10ec-7000-3703-933116d4899f","SPClientServiceRequestDuration":"132","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00004.response.json index 2d40fc4ae1..7c4d6b55c4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-5026-1001-48eb-799686eaa21d","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:24,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-c0f7-7000-3703-95e4040a0877","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:5,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:33Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00005.response.json index c3629254a2..b01b4f821a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-f02c-1001-1a81-3ea4c160d276","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:49Z\u0022,\u0022UniqueId\u0022:\u0022034ade05-eb35-4cd6-b54d-34974588fc20\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"70e2d3a0-a0fc-7000-3703-98f15bc95b00","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:32Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:33Z\u0022,\u0022UniqueId\u0022:\u00229a2e7d27-c2f5-44ca-bb8d-792a5b829934\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00000.response.json index a1451bf1b7..5eccac8fde 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-7054-1001-48eb-70bff3ff40a8","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-f018-7000-3703-9b6e20bccc84","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00001.response.json index da5899159e..6a63f3e1e7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-105a-1001-1a81-3a1a2c2ecc5f","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-e01c-7000-3703-9abbe0ac52b5","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00002.response.json index 91226ff26e..5a609360f6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-005f-1001-48eb-784ebcd7d031","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:48Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:49Z\u0022,\u0022UniqueId\u0022:\u0022034ade05-eb35-4cd6-b54d-34974588fc20\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-c021-7000-3703-94082c0e5a50","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_EXISTING_OPTIONS1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:32Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:33Z\u0022,\u0022UniqueId\u0022:\u00229a2e7d27-c2f5-44ca-bb8d-792a5b829934\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00003.response.json index 84da60fb48..cfb880f053 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithOptionsTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-6065-1001-48eb-79d2e58c8a02","SPClientServiceRequestDuration":"90","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-a026-7000-3703-9c25513a5fda","SPClientServiceRequestDuration":"128","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00000.response.json index 0b7f5b4943..c1c29a06a5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-e06f-1001-1a81-3c904b0c722c","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-6032-7000-3703-94a7a510c398","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00001.response.json index be63c7fd0c..a848b5ac75 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-4075-1001-48eb-74ad68b6397e","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-4036-7000-3703-994875f2309a","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00002.response.json index c3a70f57f1..b99ae1c433 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-107a-1001-48eb-7d70a797dbb9","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-303a-7000-3703-98c4b0c2dc8d","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00003.response.json index 031841b496..cbac554a56 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-8082-1001-1a81-3e3e9f169ba1","SPClientServiceRequestDuration":"116","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022UniqueId\u0022:\u002294b15700-f615-4668-9679-0f8c64563bde\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-103e-7000-3703-982daaa20c08","SPClientServiceRequestDuration":"55","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022UniqueId\u0022:\u0022e9db7b39-3722-4d74-bc4d-7eaea4291fe7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00000.response.json index b7401301f3..d5d7f87a4d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-308e-1001-48eb-7a4a5d96abb1","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-e045-7000-3703-932999f5f7f4","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00001.response.json index bd060054f5..46c6ad0482 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-2093-1001-48eb-767d2f7ff7d2","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-d049-7000-3703-91d3d3ba4f53","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00002.response.json index 9bf805ec19..3ecb3ebd70 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-e098-1001-1a81-3cc0e7d2613a","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022UniqueId\u0022:\u002294b15700-f615-4668-9679-0f8c64563bde\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-b04e-7000-3703-9e1e1ed4ef78","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022UniqueId\u0022:\u0022e9db7b39-3722-4d74-bc4d-7eaea4291fe7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00003.response.json index 33a6ce952d..1321d5ef16 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-809f-1001-48eb-75a58f2b17da","SPClientServiceRequestDuration":"168","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-9052-7000-3703-9033f90bece5","SPClientServiceRequestDuration":"131","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00004.response.json index eee52b19b8..9c2cbb5e58 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-30ae-1001-48eb-7a42c37ceecf","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:51Z\u0022,\u0022UniqueId\u0022:\u002294b15700-f615-4668-9679-0f8c64563bde\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-b05e-6000-fe75-f769f67b64d6","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022UniqueId\u0022:\u0022e9db7b39-3722-4d74-bc4d-7eaea4291fe7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00000.response.json index 8649be8396..26273b4c29 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-70b4-1001-1a81-3e3ef24e4251","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-3063-7000-3703-9e3c41ded559","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00001.response.json index facd63abc5..b33756c76a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-50ba-1001-48eb-70a6a126ea5f","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-8067-6000-fe75-f7f3ba65ab47","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00002.response.json index e476e47f5b..817ae98936 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-b0bf-1001-48eb-7e31cd921392","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:50Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:51Z\u0022,\u0022UniqueId\u0022:\u002294b15700-f615-4668-9679-0f8c64563bde\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-006b-7000-3703-9dc6d4f331f1","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:34Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022UniqueId\u0022:\u0022e9db7b39-3722-4d74-bc4d-7eaea4291fe7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00003.response.json index 195e10581d..3cc9072735 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionAsyncTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-a0c5-1001-1a81-339da3903db1","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-506f-6000-fe75-fe891e233ad8","SPClientServiceRequestDuration":"170","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00000.response.json index 7ffb23ea4e..cae24b4e0c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-d0cf-1001-48eb-724bfdd81bfa","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-907d-7000-3703-938e4fac5ec4","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00001.response.json index 878ed8f8c4..902dd3b325 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-a0d5-1001-48eb-70cec43de7a1","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-e081-6000-fe75-f48a1fe59c19","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00002.response.json index 8f871c6614..e484ea0ac2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-30db-1001-1a81-3ea5216d228a","SPClientServiceRequestDuration":"32","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-6085-7000-3703-9ff15ce6c8a5","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00003.response.json index 91895f8f77..edeabad907 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-60e1-1001-48eb-7a8ff43bd7e0","SPClientServiceRequestDuration":"73","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022UniqueId\u0022:\u00226cc5df37-8a96-4297-8b87-76154be609a8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-b089-6000-fe75-fb2ff121f8b7","SPClientServiceRequestDuration":"46","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022UniqueId\u0022:\u0022f1fa4492-bd2a-4afa-8c0e-78ab0abb503d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00000.response.json index 91727d60ee..ac2fd0c38f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-50ea-1001-48eb-79acdd753530","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-8090-6000-fe75-f1d14c90802b","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00001.response.json index 122a70dd64..e26429c017 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-c0ef-1001-1a81-35787ddc154c","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-0094-7000-3703-9a06b37f9f36","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00002.response.json index 8932bcf7f3..d1314df665 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-10f5-1001-48eb-7a3dbfb1f6ed","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022UniqueId\u0022:\u00226cc5df37-8a96-4297-8b87-76154be609a8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-5098-6000-fe75-fe82c7c56fb5","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVE_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVE_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022UniqueId\u0022:\u0022f1fa4492-bd2a-4afa-8c0e-78ab0abb503d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00003.response.json index 8ea691080e..7ccf198860 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d8ad17a2-f0fa-1001-48eb-7070f765fa74","SPClientServiceRequestDuration":"151","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-d09c-7000-3703-933b22882448","SPClientServiceRequestDuration":"95","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.null\u0022:true}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00004.response.json index 4e9c9063ea..6ee905f63c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-a008-1001-1a81-37b3d928f128","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022UniqueId\u0022:\u00226cc5df37-8a96-4297-8b87-76154be609a8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-00a6-6000-fe75-f55af7e91800","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:36Z\u0022,\u0022UniqueId\u0022:\u0022f1fa4492-bd2a-4afa-8c0e-78ab0abb503d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00000.response.json index 52b09986b5..c4cc57e1a7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-300e-1001-48eb-7b069f0edb9f","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-80aa-7000-3703-95328fcd1395","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00001.response.json index 0f524072e8..ef80b7048e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-3013-1001-48eb-7ad29385a87d","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-d0ae-6000-fe75-f12f99e20827","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00002.response.json index d370b61721..22fedb0be3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-4018-1001-1a81-31e836c15bd1","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:52Z\u0022,\u0022UniqueId\u0022:\u00226cc5df37-8a96-4297-8b87-76154be609a8\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-50b2-7000-3703-937a9a4dbeba","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_MOVED_FOLDER_NO_OPTIONS\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:35Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:36Z\u0022,\u0022UniqueId\u0022:\u0022f1fa4492-bd2a-4afa-8c0e-78ab0abb503d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00003.response.json index bd268ee0f3..2d72eb8d58 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/MoveFolderWithoutOptionTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-c01d-1001-48eb-7b3058f76516","SPClientServiceRequestDuration":"171","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-90b6-6000-fe75-f4d216cff64a","SPClientServiceRequestDuration":"123","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00000.response.json index 8b3f597dcf..c1d5635ebe 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-b02c-1001-48eb-7dab8be5fb75","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-f0c1-7000-3703-91190356f2ba","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00001.response.json index db4ac6ab7b..18dc2db004 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-7032-1001-1a81-38ab24e05b3c","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-30c6-6000-fe75-fa04988362a3","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00002.response.json index 1068a77090..8f2c920bbd 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-b037-1001-48eb-7f772d30a203","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-b0ca-7000-3703-911a550189a5","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:36Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00003.response.json index 138ecd07a5..40e2ce8a5f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-703d-1001-48eb-76931c79a8f5","SPClientServiceRequestDuration":"90","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_QUERY\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_QUERY\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022UniqueId\u0022:\u00228e6fce64-26e0-4eac-8fe0-11abc44428cf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-00cf-6000-fe75-f7e69d8ae8e2","SPClientServiceRequestDuration":"55","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_QUERY\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_QUERY\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022UniqueId\u0022:\u00221661d4a5-dca9-41f0-95b3-3cf0cdfea294\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00000.response.json index 059a9f30f4..abee79be24 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-6047-1001-1a81-3ba30b461eb0","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-70d5-7000-3703-9315e80a4b87","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00001.response.json index 8530f74ea8..1c656d825f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-404c-1001-48eb-7525146a8c20","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-c0d9-6000-fe75-f7c4eca4c7d7","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00002.response.json index 425a9284c5..e9c2a487b3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-7051-1001-48eb-753890a2804b","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:23,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-40de-7000-3703-9c437fe39fb9","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00003.response.json index c0c20fe627..b1922ee746 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-4057-1001-1a81-3eac79e53f55","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_QUERY\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_QUERY\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022UniqueId\u0022:\u00228e6fce64-26e0-4eac-8fe0-11abc44428cf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-90e2-6000-fe75-f27d2ed9644d","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_QUERY\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_QUERY\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022UniqueId\u0022:\u00221661d4a5-dca9-41f0-95b3-3cf0cdfea294\u0022,\u0022WelcomePage\u0022:\u0022\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00000.response.json index 48451c3f6e..10e8dd0402 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-505d-1001-48eb-799c85a29b35","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-00e7-7000-3703-9783b70450cf","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00001.response.json index ba97eda9c0..d04f94bcc4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-7062-1001-48eb-775f4f0ad2b3","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-50ec-6000-fe75-f30776d4aa23","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00002.response.json index 3a2fcdfbb5..4ea8ac3c83 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-6067-1001-1a81-3c7a667f2cba","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_QUERY\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST_QUERY\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:53Z\u0022,\u0022UniqueId\u0022:\u00228e6fce64-26e0-4eac-8fe0-11abc44428cf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-d0f0-7000-3703-91c749880617","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST_QUERY\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST_QUERY\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022UniqueId\u0022:\u00221661d4a5-dca9-41f0-95b3-3cf0cdfea294\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00003.response.json index ca17611584..e782ac6af7 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/QueryListSubFolderTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d9ad17a2-c06c-1001-48eb-7877d13baac8","SPClientServiceRequestDuration":"100","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-10f5-6000-fe75-ff27e517010d","SPClientServiceRequestDuration":"111","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00000.response.json index 7a31d6b687..efd128edd6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-5013-1001-48eb-7a11017c66fb","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-205e-b000-e9b0-1c2b6c1761d9","SPClientServiceRequestDuration":"588","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00001.response.json index 252961ace2..6df3b34730 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-0068-1001-48eb-72ac7978133a","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-40ac-b000-e9b0-1bb4ceef1dcc","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00002.response.json index 3deae0fd39..cce540c811 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-506d-1001-48eb-77842e386cd9","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:54Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-00b6-b000-e9b0-192c24b3a47a","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222024-11-25T09:11:27Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00003.response.json index 76d0ae1f51..ce70c49262 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-6076-1001-1a81-3e637210f4a3","SPClientServiceRequestDuration":"88","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:58Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:58Z\u0022,\u0022UniqueId\u0022:\u00223a2140cc-5443-4237-a5a7-4355e75ad577\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-c0c1-b000-e9b0-1995307b2be5","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:02:39Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:02:39Z\u0022,\u0022UniqueId\u0022:\u00221f101c22-6ac6-46e3-a877-ecdcaa66ced9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00000.response.json index 92f84343ec..630f216a4c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-d080-1001-48eb-7e411652d8ee","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-70cf-b000-e9b0-1a96bc4fbb8c","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00001.response.json index cd2bb74c75..234b9d801d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-4086-1001-48eb-77d8457a227a","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-30da-b000-e9b0-112eb0dc6dc8","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00002.response.json index 9721603265..f7b0332624 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-508b-1001-1a81-3705feddbf08","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:58Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:58Z\u0022,\u0022UniqueId\u0022:\u00223a2140cc-5443-4237-a5a7-4355e75ad577\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-f0e2-b000-e9b0-15b711ebe6ee","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:02:39Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:02:39Z\u0022,\u0022UniqueId\u0022:\u00221f101c22-6ac6-46e3-a877-ecdcaa66ced9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00003.response.json index abe164bfa0..cfd8062437 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-d091-1001-48eb-7deed529ef2f","SPClientServiceRequestDuration":"75","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u0022ad8b9d36-91c9-49f7-9292-9a066024d662\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d5b889a1-b0ed-b000-e9b0-1df7ff71a153","SPClientServiceRequestDuration":"373","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u0022fb7caefe-f1f9-4897-a22b-0293f7f53a24\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00004.response.json index b18ca28eef..7cdb24eef2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-409e-1001-48eb-74b140bcec81","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:59Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6b889a1-f00d-b000-e9b0-12022539f19d","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:02:40Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00005.response.json index 51b2824f1d..6267610a59 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-00a4-1001-1a81-34099cd2dbc8","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6b889a1-a019-b000-e9b0-1e042a3f4b52","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00006.response.json index 1f07f8961c..ed39c2ebb5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-c0aa-1001-48eb-7bfe0083e9bc","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:07:59Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:07 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022},\u0022Id\u0022:\u0022ad8b9d36-91c9-49f7-9292-9a066024d662\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6b889a1-6024-b000-e9b0-145e6405ccfa","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:02:40Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:02 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/Shared Documents\u0022},\u0022Id\u0022:\u0022fb7caefe-f1f9-4897-a22b-0293f7f53a24\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00007.response.json index a4605040ab..fa3e5dab2d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderAsyncTest-1-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-e0b0-1001-48eb-75c27937986d","SPClientServiceRequestDuration":"111","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d6b889a1-202f-b000-e9b0-14985da2469f","SPClientServiceRequestDuration":"384","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00000.response.json index e66beaa3e0..dc7159aa1f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-a0bd-1001-1a81-3e862a935ce0","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"edb889a1-10e8-b000-e9b0-1e98bba1d529","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00001.response.json index e6b495fbe3..1cffaa29a2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-60c2-1001-48eb-79686bca6a4f","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-200b-b000-e9b0-1968471df9d2","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00002.response.json index 6d75cd9b65..e95994b927 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-20c7-1001-48eb-7c94026180e8","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:59Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-502d-b000-e9b0-1e013b5b9b97","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:56Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00003.response.json index 23464f5c85..425e92e3db 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-50cd-1001-1a81-331ae94c3f27","SPClientServiceRequestDuration":"97","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022UniqueId\u0022:\u0022a51d8d71-6b5d-4619-91ae-c22a5bf4cf30\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-1037-b000-e9b0-19b53e3de5c5","SPClientServiceRequestDuration":"60","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:04:19Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:19Z\u0022,\u0022UniqueId\u0022:\u0022eaccf198-6c0b-4ffd-b288-458d8c88715e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00000.response.json index b19bab01d8..a59063fabe 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-b0d7-1001-48eb-7b2d108b7073","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-c043-b000-e9b0-1c970f428ab8","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00001.response.json index 44027dd154..2526a185fe 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-10dd-1001-48eb-71b91716a214","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-804d-b000-e9b0-196f19fdcf7a","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00002.response.json index ffd16e480b..63f8a4d832 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-90e2-1001-1a81-3990c8bd5a12","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022UniqueId\u0022:\u0022a51d8d71-6b5d-4619-91ae-c22a5bf4cf30\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-5056-b000-e9b0-19bead32a944","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:04:19Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:19Z\u0022,\u0022UniqueId\u0022:\u0022eaccf198-6c0b-4ffd-b288-458d8c88715e\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00003.response.json index 9477f51638..8b54b2c5eb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-10e8-1001-48eb-7816d82dacf3","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_f85e85d3-8102-4141-b75e-013ee4978eb9\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u0022fe0ab5d3-4679-4086-b8e3-545cbf7b6453\u0022}\r\n--batchresponse_f85e85d3-8102-4141-b75e-013ee4978eb9--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-1061-b000-e9b0-14654ca7e463","SPClientServiceRequestDuration":"137","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_4801a967-3a4f-4b10-a313-08fa4486f6bd\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u0022699adc3e-3ad2-4522-ba4f-a0a0c74c540f\u0022}\r\n--batchresponse_4801a967-3a4f-4b10-a313-08fa4486f6bd--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00004.response.json index 93c35dbcd3..f07c2b36d8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-e0f1-1001-48eb-760d7c2af965","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-a072-b000-e9b0-12dddb51fd9e","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:20Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00005.response.json index ef2da55a50..5411af015e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-b0f8-1001-1a81-381f15e5e37f","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-607e-b000-e9b0-1438307fd16c","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00006.response.json index fcb9127f5f..9ec4788cf0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"daad17a2-b0fe-1001-48eb-7df33740687e","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022},\u0022Id\u0022:\u0022fe0ab5d3-4679-4086-b8e3-545cbf7b6453\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-1089-b000-e9b0-1ecbf8109ad9","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:04:20Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:04 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/Shared Documents\u0022},\u0022Id\u0022:\u0022699adc3e-3ad2-4522-ba4f-a0a0c74c540f\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00007.response.json index 591d898383..936b6e41be 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchAsyncTest-1-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-5005-1001-48eb-7f3ee3e370dd","SPClientServiceRequestDuration":"44","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"eeb889a1-d093-b000-e9b0-1d4c25501143","SPClientServiceRequestDuration":"76","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00000.response.json index 3decbbc379..253be9090d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-700c-1001-1a81-36614376b8ff","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-90a5-b000-e9b0-10ac06bfa230","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00001.response.json index 43b57da355..1df933d7a8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-8011-1001-48eb-73542027882d","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-40b3-b000-e9b0-1cf1833148e0","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00002.response.json index 650b62afb1..c4ac1de7a9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-d015-1001-48eb-7c40e26db7ea","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:00Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-00bd-b000-e9b0-1f0cb5d2fa10","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:20Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00003.response.json index 43ca6edf54..5a659b3949 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-201d-1001-1a81-3752b19d47d3","SPClientServiceRequestDuration":"103","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:01Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:01Z\u0022,\u0022UniqueId\u0022:\u00224d75cf96-6b8e-4eb3-ad7f-5a0d78b2a7a7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-c0c7-b000-e9b0-15a5758f36f1","SPClientServiceRequestDuration":"69","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:04:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:42Z\u0022,\u0022UniqueId\u0022:\u002293743542-d67a-47a7-86b9-c28b310907cf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00000.response.json index da9f966d3a..8277981fa4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f027-1001-48eb-75a6a5fe1ce7","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-70d5-b000-e9b0-196845402da8","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00001.response.json index 703dea14d1..bf8da55642 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-a02c-1001-48eb-725921aba667","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-30df-b000-e9b0-15b1bb572006","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00002.response.json index 91f602e6a6..8b5a9b204e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f031-1001-1a81-301f8340244e","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:01Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:01Z\u0022,\u0022UniqueId\u0022:\u00224d75cf96-6b8e-4eb3-ad7f-5a0d78b2a7a7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-f0e8-b000-e9b0-137234f47b28","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:04:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:42Z\u0022,\u0022UniqueId\u0022:\u002293743542-d67a-47a7-86b9-c28b310907cf\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00003.response.json index 5a92d027ad..808ec289da 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-6037-1001-48eb-7e00cdc09a70","SPClientServiceRequestDuration":"84","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_3d770d64-57e1-424a-8beb-9de613f70a79\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u0022605c2152-eaa3-47fa-ba8b-1e06a0e05121\u0022}\r\n--batchresponse_3d770d64-57e1-424a-8beb-9de613f70a79--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3b889a1-c0f2-b000-e9b0-10e1bdb63b0a","SPClientServiceRequestDuration":"121","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_5b6e77df-2be3-4ff4-bf09-84b7c4734376\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u0022e2e10894-2202-415d-959d-b49bf18c22c5\u0022}\r\n--batchresponse_5b6e77df-2be3-4ff4-bf09-84b7c4734376--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00004.response.json index db04394ec0..87a2f4e44a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-d040-1001-48eb-7d901aeb3764","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f4b889a1-5003-b000-e9b0-1f20b2a10ec5","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:04:43Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00005.response.json index dbe3dcff82..2737b7cdc8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-8046-1001-1a81-35f540d93ef8","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f4b889a1-100f-b000-e9b0-16e3206f277b","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00006.response.json index 7496816a08..20ac9ec734 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-e04c-1001-48eb-7cec4657b1c7","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022},\u0022Id\u0022:\u0022605c2152-eaa3-47fa-ba8b-1e06a0e05121\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f4b889a1-d018-b000-e9b0-119bdd476fed","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:04:43Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:04 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/Shared Documents\u0022},\u0022Id\u0022:\u0022e2e10894-2202-415d-959d-b49bf18c22c5\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00007.response.json index b350fe2dd0..559b74283e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderBatchTest-1-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-0053-1001-48eb-718bc55b80d5","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f4b889a1-9023-b000-e9b0-1f7e13dc1c9a","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00000.response.json index 527bc8b7cd..4bb8178c5f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-b05a-1001-1a81-3f4d9024bb13","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-0023-b000-e9b0-145f99ededbd","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00001.response.json index 7a21104c6e..a329a92baa 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f05f-1001-48eb-7ad162cc70a2","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-b031-b000-e9b0-1e9d91b36d29","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00002.response.json index be7c1ea3ac..a8bccda1e4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-9064-1001-48eb-7f431321a2a5","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-703b-b000-e9b0-1637a4aaf75a","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00003.response.json index 5fb4543e06..318ca3b1a9 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f06a-1001-1a81-3945be82fb06","SPClientServiceRequestDuration":"138","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022UniqueId\u0022:\u0022b8bc0422-98fb-4256-ad09-c410265d3285\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-3046-b000-e9b0-1828ffd45799","SPClientServiceRequestDuration":"77","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:03:26Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:26Z\u0022,\u0022UniqueId\u0022:\u0022f7d38754-153b-4f7f-91cd-ea0120d40280\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00000.response.json index 86a8ccffb5..86f7ab36f0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f077-1001-48eb-7f5278ea1b15","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-d053-b000-e9b0-16002fa001b4","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00001.response.json index e363177105..8742d9bb96 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-007d-1001-48eb-7bfdb9a9f9a5","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-a05d-b000-e9b0-134669573d15","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00002.response.json index 92bddc45ef..bc0625ffbf 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-e082-1001-1a81-39297d35289a","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:02Z\u0022,\u0022UniqueId\u0022:\u0022b8bc0422-98fb-4256-ad09-c410265d3285\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-6067-b000-e9b0-19f5c65c2040","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:03:26Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:26Z\u0022,\u0022UniqueId\u0022:\u0022f7d38754-153b-4f7f-91cd-ea0120d40280\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00003.response.json index 42407aaf5f..cd8558d266 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-2088-1001-48eb-724cb2cfab28","SPClientServiceRequestDuration":"83","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_91d6778c-1dd1-4bf5-874f-4364343d223d\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u00220806ffab-e730-40dd-9c81-6455b1cffbbe\u0022}\r\n--batchresponse_91d6778c-1dd1-4bf5-874f-4364343d223d--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-2071-b000-e9b0-130bc30b3bcb","SPClientServiceRequestDuration":"111","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_df506190-470b-4b7a-baa4-b26304b92dba\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u00225796b374-5a53-4adb-a1bb-e17bd6aba8e2\u0022}\r\n--batchresponse_df506190-470b-4b7a-baa4-b26304b92dba--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00004.response.json index e18618b7fd..25815036c6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f093-1001-48eb-7b369c51a11e","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:03Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-c081-b000-e9b0-16b92c3e5e43","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:27Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00005.response.json index c23c55bce1..94c0dd32b6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-709a-1001-1a81-3e96b2d154f1","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-808c-b000-e9b0-108ee437b748","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00006.response.json index e8ab4945c6..5fb12b2d39 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f0a0-1001-48eb-7f4ba31f5fc8","SPClientServiceRequestDuration":"32","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:03Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022},\u0022Id\u0022:\u00220806ffab-e730-40dd-9c81-6455b1cffbbe\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-4097-b000-e9b0-1d8d4136ea88","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:03:27Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:03 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/Shared Documents\u0022},\u0022Id\u0022:\u00225796b374-5a53-4adb-a1bb-e17bd6aba8e2\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00007.response.json index 57d781ad05..9432aed61c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchAsyncTest-1-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-60a7-1001-48eb-76faf7be3357","SPClientServiceRequestDuration":"39","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e1b889a1-00a2-b000-e9b0-118a08dd4ba2","SPClientServiceRequestDuration":"60","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00000.response.json index f28cfb25ff..74b9c251a3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-d0ae-1001-1a81-37d448f3fe98","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-b034-b000-e9b0-1cfbc73dc5af","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00001.response.json index b89a2cb57e..ff65a4e3a6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-a0b4-1001-48eb-72eb3dc99dad","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-3049-b000-e9b0-19678d72e1bc","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00002.response.json index 59bf855f67..7179c7c3bb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-60ba-1001-48eb-7b8783edbc0b","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:03Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-e055-b000-e9b0-1c5797ffca8f","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:27Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00003.response.json index 21ff4c05dd..4b937792d6 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-70c0-1001-1a81-3f3ef5c1ce68","SPClientServiceRequestDuration":"81","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022UniqueId\u0022:\u0022fb3d5a0b-0bb1-4120-8631-2dbfda59afed\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-9064-b000-e9b0-19493626f15a","SPClientServiceRequestDuration":"55","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:03:55Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:55Z\u0022,\u0022UniqueId\u0022:\u0022dcce0f75-aa64-429d-9bf5-71fe986eb4f7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00000.response.json index 555c801fe3..f3219f6d7d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-20ca-1001-48eb-7f41b29bb88f","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-3073-b000-e9b0-1465d375c220","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00001.response.json index 0ab960193c..2c2aefdb1e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-70cf-1001-48eb-7cb5a720b61d","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-e07f-b000-e9b0-1b319b2efabc","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00002.response.json index 67fb6a1395..73b33e4806 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-90d4-1001-1a81-3d798511f7b7","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022UniqueId\u0022:\u0022fb3d5a0b-0bb1-4120-8631-2dbfda59afed\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-a08b-b000-e9b0-1a15e283a082","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:03:55Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:55Z\u0022,\u0022UniqueId\u0022:\u0022dcce0f75-aa64-429d-9bf5-71fe986eb4f7\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00003.response.json index f31d7e8cbe..fe594d8efb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-f0d9-1001-48eb-78cd74ab5364","SPClientServiceRequestDuration":"72","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_b465f746-025c-41d4-a20b-bff3b9cccda1\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u0022ab505deb-5fe7-4b28-a78f-9a614fd0fbe9\u0022}\r\n--batchresponse_b465f746-025c-41d4-a20b-bff3b9cccda1--\r\n"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-5099-b000-e9b0-1b50e83241a3","SPClientServiceRequestDuration":"130","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"--batchresponse_1fa7f723-57c6-4a42-bee2-6305c96bf402\r\nContent-Type: application/http\r\nContent-Transfer-Encoding: binary\r\n\r\nHTTP/1.1 200 OK\r\nCONTENT-TYPE: application/json;odata=nometadata;streaming=true;charset=utf-8\r\n\r\n{\u0022value\u0022:\u00229944e35b-5116-4e3a-9bfb-6f78eba8a9bb\u0022}\r\n--batchresponse_1fa7f723-57c6-4a42-bee2-6305c96bf402--\r\n"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00004.response.json index 10485d7c8f..537d1e0ff0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-70e2-1001-48eb-7cb862c1782a","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-d0ac-b000-e9b0-136aebde09d9","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:56Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00005.response.json index 3d20a4c352..70ef7c0d1c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-00e8-1001-1a81-3815a7123236","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-70bb-b000-e9b0-1242ac7d1fee","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00006.response.json index a234ce974b..5a5fea099e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-e0ed-1001-48eb-78c6ca2444ee","SPClientServiceRequestDuration":"41","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022},\u0022Id\u0022:\u0022ab505deb-5fe7-4b28-a78f-9a614fd0fbe9\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-20c9-b000-e9b0-18b506eca98a","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:03:56Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:03 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/Shared Documents\u0022},\u0022Id\u0022:\u00229944e35b-5116-4e3a-9bfb-6f78eba8a9bb\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00007.response.json index 511258d2dd..1b022d074a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderCurrentBatchTest-1-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-90f4-1001-48eb-7652a02b40aa","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e8b889a1-d0d7-b000-e9b0-1d1f5bf584cb","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00000.response.json index 2d9c52e95a..60ad31b1ac 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbad17a2-70fb-1001-48eb-7d92441b25f6","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-4095-b000-e9b0-1e573d3fff50","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00001.response.json index 908a4adba0..bf59911a44 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-9000-1001-48eb-75594a3b5417","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-60bb-b000-e9b0-1432c8745898","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00002.response.json index 0383f13afb..281ecb49ff 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-2006-1001-48eb-79d5288621a3","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:04Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-20c5-b000-e9b0-105023de07c5","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:02:40Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00003.response.json index a59c0c3d9f..c2310006c5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-f00b-1001-48eb-79dad91c776d","SPClientServiceRequestDuration":"87","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022UniqueId\u0022:\u0022b784c461-6af7-44c9-aaa7-85632af54b1d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-e0cf-b000-e9b0-1df9de119b1b","SPClientServiceRequestDuration":"63","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022UniqueId\u0022:\u0022b06f9a42-e05b-4a1b-b008-ec097f95d6ac\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00000.response.json index b1d938f2bc..94516a8969 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-d015-1001-48eb-73478fb07b09","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-90dc-b000-e9b0-17e594573133","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00001.response.json index 73f4a9417f..d5d6e2907b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-101b-1001-48eb-7e7dca4283d1","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-50e6-b000-e9b0-184289d920aa","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00002.response.json index 8a4d6523fa..80c32209e3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-5020-1001-1a81-3ea78f99a51a","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022UniqueId\u0022:\u0022b784c461-6af7-44c9-aaa7-85632af54b1d\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-20ef-b000-e9b0-132d6ba3e3f5","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TO RECYCLE FOLDER\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022UniqueId\u0022:\u0022b06f9a42-e05b-4a1b-b008-ec097f95d6ac\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00003.response.json index aea07cc3b5..15e878e628 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-d025-1001-48eb-74ea035f1896","SPClientServiceRequestDuration":"84","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u0022bd6db1f3-fbaa-4d9c-a8a9-eb1e00dc55e3\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dbb889a1-e0f9-b000-e9b0-18d4c0521b2f","SPClientServiceRequestDuration":"157","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u00228d6541ea-fb56-4bce-83d7-a0bf002a1f75\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00004.response.json index 98d701ea5d..bf23918fd2 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-202f-1001-48eb-7e68114b6e10","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcb889a1-700c-b000-e9b0-187525e1c710","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00005.response.json index 8179aa9f6b..df01053ef5 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-b034-1001-1a81-3cc6b78e521b","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcb889a1-101a-b000-e9b0-1fca9c49f3a6","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00006.response.json index 3fe95f1859..fe38f6c508 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-c03a-1001-48eb-79c53ffc989f","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/Shared Documents\u0022},\u0022Id\u0022:\u0022bd6db1f3-fbaa-4d9c-a8a9-eb1e00dc55e3\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcb889a1-c028-b000-e9b0-1b84dcc7d62c","SPClientServiceRequestDuration":"34","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:03:04Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:03 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/Shared Documents\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/Shared Documents\u0022},\u0022Id\u0022:\u00228d6541ea-fb56-4bce-83d7-a0bf002a1f75\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022TO RECYCLE FOLDER\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022TO RECYCLE FOLDER\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022TO RECYCLE FOLDER\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00007.response.json index 82fd8eb02f..6482e83fb3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleFolderTest-1-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-b040-1001-48eb-76ae67e60a07","SPClientServiceRequestDuration":"94","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcb889a1-8033-b000-e9b0-18016ae1960d","SPClientServiceRequestDuration":"50","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00000.response.json index b23baeb303..5e43745884 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-004b-1001-1a81-35a612ffdfec","SPClientServiceRequestDuration":"87","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-705a-b000-e9b0-109da883d5df","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00001.response.json index 7c45dcdc58..35356566a1 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-6054-1001-48eb-7e53dda35cb6","SPClientServiceRequestDuration":"54","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-2068-b000-e9b0-13ea9e944991","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00002.response.json index b6750a5171..4dcaea8032 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-905b-1001-48eb-7ab55b435869","SPClientServiceRequestDuration":"121","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:32Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-e071-b000-e9b0-184b0bca6995","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:4,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222024-11-18T18:50:01Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00003.response.json index dc093da6f6..faf38b4178 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"dcad17a2-6067-1001-1a81-3ef937f86dc0","SPClientServiceRequestDuration":"70","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"02b989a1-a07c-b000-e9b0-19b4a57269da","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00004.response.json index edb97c77c0..e5e11984ad 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-3070-1001-48eb-7b261e076736","SPClientServiceRequestDuration":"109","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022UniqueId\u0022:\u00224a001b93-18b2-4563-a6c8-bf3a18df96c9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-6088-b000-e9b0-103c90c9e1a6","SPClientServiceRequestDuration":"96","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022UniqueId\u0022:\u0022160a7fd7-d43d-40e9-82a2-e0f61d6364f2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00005.response.json index 78db9a07bd..5bbd74f8cb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-507b-1001-48eb-724ab27d8a19","SPClientServiceRequestDuration":"140","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022UniqueId\u0022:\u00221b4a7e0f-92d9-41a6-90da-693e49b6e2d6\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-0097-b000-e9b0-110821ec116c","SPClientServiceRequestDuration":"73","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022UniqueId\u0022:\u0022d6014a69-02ac-4c1f-a51a-cf727e442e3f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00006.response.json index ebbb850ea0..e6372f0a20 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-9088-1001-1a81-328f22e09672","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022UniqueId\u0022:\u00221b4a7e0f-92d9-41a6-90da-693e49b6e2d6\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-b0a4-b000-e9b0-1a78fdfae765","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022UniqueId\u0022:\u0022d6014a69-02ac-4c1f-a51a-cf727e442e3f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00007.response.json index 924ced6ba6..6bd0308f0c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-e08d-1001-48eb-7365fc9f3b2b","SPClientServiceRequestDuration":"101","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u00229d581463-2093-4994-8dd0-3743d1efe7b9\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-70ae-b000-e9b0-1d1319156978","SPClientServiceRequestDuration":"122","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u0022bf6235b2-bd78-44d5-b09c-e05cc11c24d4\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00008.response.json index 67a0a85953..7497b53a9b 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00008.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00008.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"dcad17a2-4098-1001-48eb-7b9709aade69","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"02b989a1-10bf-b000-e9b0-11e95eb0cc2c","SPClientServiceRequestDuration":"44","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00009.response.json index beaeb905fc..70708f1730 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00009.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00009.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-509f-1001-1a81-3c57659cbc1a","SPClientServiceRequestDuration":"35","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/SitePages/sub1\u0022},\u0022Id\u0022:\u00229d581463-2093-4994-8dd0-3743d1efe7b9\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022sub2\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sub2\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022sub2\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-c0cb-b000-e9b0-1df3036155c7","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:05:43Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:05 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/SitePages/sub1\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/SitePages/sub1\u0022},\u0022Id\u0022:\u0022bf6235b2-bd78-44d5-b09c-e05cc11c24d4\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022sub2\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sub2\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022sub2\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00010.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00010.response.json index b8619a0af7..48099770c3 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00010.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00010.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-b0a5-1001-48eb-7c426f11dd0b","SPClientServiceRequestDuration":"104","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-a0d5-b000-e9b0-13c140920a49","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00011.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00011.response.json index 0e22dc381d..2d541a2469 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00011.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00011.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-30b1-1001-48eb-74dfdc4bda4a","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022UniqueId\u0022:\u00224a001b93-18b2-4563-a6c8-bf3a18df96c9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-40e1-b000-e9b0-1e03632863ba","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:05:43Z\u0022,\u0022UniqueId\u0022:\u0022160a7fd7-d43d-40e9-82a2-e0f61d6364f2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00012.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00012.response.json index 31da8d8286..2ecef506b4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00012.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00012.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-40b7-1001-1a81-347bae4261a3","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:07Z\u0022,\u0022UniqueId\u0022:\u00224a001b93-18b2-4563-a6c8-bf3a18df96c9\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-00eb-b000-e9b0-192d9e7a7c76","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222025-03-12T08:05:42Z\u0022,\u0022TimeLastModified\u0022:\u00222025-03-12T08:05:43Z\u0022,\u0022UniqueId\u0022:\u0022160a7fd7-d43d-40e9-82a2-e0f61d6364f2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00013.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00013.response.json index 12e13b452e..e2d5f3f1fc 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00013.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00013.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-d0bd-1001-48eb-734c3f858ab1","SPClientServiceRequestDuration":"89","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u0022a22ba120-3e8e-4c61-9f1c-e7ad7df1359c\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"02b989a1-c0f4-b000-e9b0-14077146c94c","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:\u0022ee58d9b6-5db3-41bb-b937-dc24b0cc7870\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00014.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00014.response.json index 49717bd701..c0f16cf94c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00014.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00014.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"dcad17a2-80c7-1001-48eb-78ebb5ac549e","SPClientServiceRequestDuration":"69","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"03b989a1-7003-b000-e9b0-153c8a4d2275","SPClientServiceRequestDuration":"40","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00015.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00015.response.json index 6c2b14c949..ce310d1148 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00015.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00015.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-40d0-1001-1a81-3d52acc7b4c6","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022\u0022,\u0022AuthorName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedByEmail\u0022:\u0022\u0022,\u0022DeletedByName\u0022:\u0022Aram Barzanjeh\u0022,\u0022DeletedDate\u0022:\u00222026-05-27T09:08:08Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00225/27/2026 2:08 AM\u0022,\u0022DirName\u0022:\u0022sites/pnpcoresdktestgroup/SitePages\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/pnpcoresdktestgroup/SitePages\u0022},\u0022Id\u0022:\u0022a22ba120-3e8e-4c61-9f1c-e7ad7df1359c\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022sub1\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sub1\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022sub1\u0022}]}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"03b989a1-200e-b000-e9b0-17f080d1d523","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022value\u0022:[{\u0022AuthorEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022AuthorName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedByEmail\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022DeletedByName\u0022:\u0022Bert Jansen (Cloud)\u0022,\u0022DeletedDate\u0022:\u00222025-03-12T08:05:44Z\u0022,\u0022DeletedDateLocalFormatted\u0022:\u00223/12/2025 1:05 AM\u0022,\u0022DirName\u0022:\u0022sites/prov-2/SitePages\u0022,\u0022DirNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sites/prov-2/SitePages\u0022},\u0022Id\u0022:\u0022ee58d9b6-5db3-41bb-b937-dc24b0cc7870\u0022,\u0022ItemState\u0022:1,\u0022ItemType\u0022:5,\u0022LeafName\u0022:\u0022sub1\u0022,\u0022LeafNamePath\u0022:{\u0022DecodedUrl\u0022:\u0022sub1\u0022},\u0022Size\u0022:\u0022152\u0022,\u0022Title\u0022:\u0022sub1\u0022}]}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00016.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00016.response.json index 9629483036..d45c35f27f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00016.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RecycleNestedFolderTest-0-00016.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-00d6-1001-48eb-744bbdc4fa8f","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"03b989a1-e018-b000-e9b0-1c4fae6d6181","SPClientServiceRequestDuration":"34","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00000.response.json index 159b3f73dc..7e843f1d4a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-40dd-1001-48eb-73785c9520d1","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"71e2d3a0-70ff-7000-3703-986b8862e98e","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00001.response.json index 4dfe046aa3..9f7f577086 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-80e2-1001-1a81-3e1d5d64536d","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-c003-6000-fe75-fb240ef81cad","SPClientServiceRequestDuration":"9","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00002.response.json index 4e5f64e7f0..13758fc990 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-90e7-1001-48eb-7072a0b9b38c","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:08Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-4007-7000-3703-9adb7c26abed","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:21Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00003.response.json index 4a127c297a..d7cd881798 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"dcad17a2-20ed-1001-48eb-724f9379342b","SPClientServiceRequestDuration":"38","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"72e2d3a0-800c-6000-fe75-f3426a83fb42","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00004.response.json index 167e2e618d..631a023189 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"dcad17a2-d0f3-1001-1a81-3822f0b986f6","SPClientServiceRequestDuration":"74","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022UniqueId\u0022:\u0022cde2b499-ea84-4057-9b4d-b884e84b0b72\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-0011-7000-3703-9a406b845c89","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022UniqueId\u0022:\u002204674fb4-08c7-4d1f-be6b-faf271ab2378\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00005.response.json index 50a885a35b..7018e6a8fc 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"Cache-Control":"no-store, no-cache","Transfer-Encoding":"chunked","Vary":"Accept-Encoding","Strict-Transport-Security":"max-age=31536000","request-id":"6f8f150e-abb1-48a2-be64-b1a86e118216","client-request-id":"6f8f150e-abb1-48a2-be64-b1a86e118216","x-ms-ags-diagnostic":"{\u0022ServerInfo\u0022:{\u0022DataCenter\u0022:\u0022Sweden Central\u0022,\u0022Slice\u0022:\u0022E\u0022,\u0022Ring\u0022:\u00223\u0022,\u0022ScaleUnit\u0022:\u0022000\u0022,\u0022RoleInstance\u0022:\u0022GVX0EPF00084188\u0022}}","SPLogId":"ddad17a2-9019-1001-733e-28137264b2de","OData-Version":"4.0","Date":"Wed, 27 May 2026 09:08:09 GMT"},"Response":"{\u0022@odata.context\u0022:\u0022https://graph.microsoft.com/v1.0/$metadata#sites(\u00273fgb00.sharepoint.com%2C477b4438-a3a4-4f63-8d6a-c797c26a357d%2C6f2d6824-5143-4222-89cb-1ee645a69f51\u0027)/drives(\u0027b%21OER7R6SjY0-NaseXwmo1fSRoLW9DUSJCicse5kWmn1Gk1e73vgsQS6DYW-E5iy_T\u0027)/items/$entity\u0022,\u0022createdDateTime\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022eTag\u0022:\u0022\\\u0022{CDE2B499-EA84-4057-9B4D-B884E84B0B72},2\\\u0022\u0022,\u0022id\u0022:\u002201FMCGHUUZWTRM3BHKK5AJWTNYQTUEWC3S\u0022,\u0022lastModifiedDateTime\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022name\u0022:\u0022newsub1\u0022,\u0022webUrl\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup/SitePages/newsub1\u0022,\u0022cTag\u0022:\u0022\\\u0022c:{CDE2B499-EA84-4057-9B4D-B884E84B0B72},0\\\u0022\u0022,\u0022isAuthoritative\u0022:false,\u0022size\u0022:\u00220\u0022,\u0022createdBy\u0022:{\u0022application\u0022:{\u0022id\u0022:\u0022d9ca09f3-0d1f-4b89-b45d-094e5154cb7a\u0022,\u0022displayName\u0022:\u0022Arams 2025 C7 Integrations PnP SharePoint\u0022},\u0022user\u0022:{\u0022id\u0022:\u00220efcd562-fcae-42ea-8121-5a52c285f686\u0022,\u0022displayName\u0022:\u0022Aram Barzanjeh\u0022}},\u0022lastModifiedBy\u0022:{\u0022application\u0022:{\u0022id\u0022:\u0022d9ca09f3-0d1f-4b89-b45d-094e5154cb7a\u0022,\u0022displayName\u0022:\u0022Arams 2025 C7 Integrations PnP SharePoint\u0022},\u0022user\u0022:{\u0022id\u0022:\u00220efcd562-fcae-42ea-8121-5a52c285f686\u0022,\u0022displayName\u0022:\u0022Aram Barzanjeh\u0022}},\u0022parentReference\u0022:{\u0022driveType\u0022:\u0022documentLibrary\u0022,\u0022driveId\u0022:\u0022b!OER7R6SjY0-NaseXwmo1fSRoLW9DUSJCicse5kWmn1Gk1e73vgsQS6DYW-E5iy_T\u0022,\u0022id\u0022:\u002201FMCGHUV6Y2GOVW7725BZO354PWSELRRZ\u0022,\u0022name\u0022:\u0022SitePages\u0022,\u0022path\u0022:\u0022/drives/b!OER7R6SjY0-NaseXwmo1fSRoLW9DUSJCicse5kWmn1Gk1e73vgsQS6DYW-E5iy_T/root:\u0022,\u0022siteId\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022},\u0022fileSystemInfo\u0022:{\u0022createdDateTime\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022lastModifiedDateTime\u0022:\u00222026-05-27T09:08:09Z\u0022},\u0022folder\u0022:{\u0022childCount\u0022:0},\u0022shared\u0022:{\u0022scope\u0022:\u0022users\u0022}}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"Cache-Control":"no-store, no-cache","Transfer-Encoding":"chunked","Vary":"Accept-Encoding","Strict-Transport-Security":"max-age=31536000","request-id":"0d8b061d-f9bb-4ff7-970e-1fc7a4ff7d98","client-request-id":"0d8b061d-f9bb-4ff7-970e-1fc7a4ff7d98","x-ms-ags-diagnostic":"{\u0022ServerInfo\u0022:{\u0022DataCenter\u0022:\u0022West Europe\u0022,\u0022Slice\u0022:\u0022E\u0022,\u0022Ring\u0022:\u00225\u0022,\u0022ScaleUnit\u0022:\u0022002\u0022,\u0022RoleInstance\u0022:\u0022AM2PEPF0000BE0F\u0022}}","OData-Version":"4.0","Date":"Fri, 25 Aug 2023 09:15:37 GMT"},"Response":"{\u0022@odata.context\u0022:\u0022https://graph.microsoft.com/v1.0/$metadata#sites(\u0027bertonline.sharepoint.com%2Cf92f9e40-1110-43ef-aa0e-0822e13fb7ba%2C2c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0027)/drives(\u0027b%21QJ4v-RAR70OqDggi4T-3uoakmSzJ1ktKjW-p-qNkySzOUUSHtOFGTIX9pvsCmOGg\u0027)/items/$entity\u0022,\u0022createdDateTime\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022eTag\u0022:\u0022\\\u0022{04674FB4-08C7-4D1F-BE6B-FAF271AB2378},2\\\u0022\u0022,\u0022id\u0022:\u002201O2ADSGNUJ5TQJRYID5G342726JY2WI3Y\u0022,\u0022lastModifiedDateTime\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022name\u0022:\u0022newsub1\u0022,\u0022webUrl\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2/SitePages/newsub1\u0022,\u0022cTag\u0022:\u0022\\\u0022c:{04674FB4-08C7-4D1F-BE6B-FAF271AB2378},0\\\u0022\u0022,\u0022size\u0022:\u00220\u0022,\u0022createdBy\u0022:{\u0022application\u0022:{\u0022id\u0022:\u0022c545f9ce-1c11-440b-812b-0b35217d9e83\u0022,\u0022displayName\u0022:\u0022PnpCoreTestApp\u0022},\u0022user\u0022:{\u0022email\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022id\u0022:\u002233aca310-a489-4121-b853-663d0327fe08\u0022,\u0022displayName\u0022:\u0022Bert Jansen (Cloud)\u0022}},\u0022lastModifiedBy\u0022:{\u0022application\u0022:{\u0022id\u0022:\u0022c545f9ce-1c11-440b-812b-0b35217d9e83\u0022,\u0022displayName\u0022:\u0022PnpCoreTestApp\u0022},\u0022user\u0022:{\u0022email\u0022:\u0022bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022id\u0022:\u002233aca310-a489-4121-b853-663d0327fe08\u0022,\u0022displayName\u0022:\u0022Bert Jansen (Cloud)\u0022}},\u0022parentReference\u0022:{\u0022driveType\u0022:\u0022documentLibrary\u0022,\u0022driveId\u0022:\u0022b!QJ4v-RAR70OqDggi4T-3uoakmSzJ1ktKjW-p-qNkySzOUUSHtOFGTIX9pvsCmOGg\u0022,\u0022id\u0022:\u002201O2ADSGN6Y2GOVW7725BZO354PWSELRRZ\u0022,\u0022path\u0022:\u0022/drives/b!QJ4v-RAR70OqDggi4T-3uoakmSzJ1ktKjW-p-qNkySzOUUSHtOFGTIX9pvsCmOGg/root:\u0022,\u0022siteId\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022},\u0022fileSystemInfo\u0022:{\u0022createdDateTime\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022lastModifiedDateTime\u0022:\u00222023-08-25T09:15:38Z\u0022},\u0022folder\u0022:{\u0022childCount\u0022:0}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00006.response.json index a3d0a5d56d..e63e2d4bf0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00006.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00006.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-802d-1001-48eb-727313c978cb","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022newsub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/newsub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:09Z\u0022,\u0022UniqueId\u0022:\u0022cde2b499-ea84-4057-9b4d-b884e84b0b72\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-b047-7000-3703-9d8b0e232a8c","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022newsub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages/newsub1\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:38Z\u0022,\u0022UniqueId\u0022:\u002204674fb4-08c7-4d1f-be6b-faf271ab2378\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00007.response.json index 40f2804964..a84d4c06fe 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00007.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/RenameFolderTest-0-00007.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-7033-1001-48eb-74cbdd5afb52","SPClientServiceRequestDuration":"81","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-a04c-7000-3703-9a3744913b30","SPClientServiceRequestDuration":"77","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00000.response.json index c60d1048b4..16e3ebc33e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-403d-1001-1a81-3f1c3d48be72","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-6055-7000-3703-90a055819326","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00001.response.json index 26a53ff83d..4885fae9e0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-7042-1001-48eb-76a916e07cad","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-5059-7000-3703-950007d3ac5c","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00002.response.json index fed1e666ae..f5e3c35e24 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-4047-1001-48eb-73c95b00b8c8","SPClientServiceRequestDuration":"30","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222026-05-22T21:21:41\u0022,\u0022vti_x005f_contentversionisdirty\u0022:\u0022false\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222026-05-27T09:08:09\u0022,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:6,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:0,\u0022vti_x005f_contentversion\u0022:0,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:0,\u0022vti_x005f_accesscontrolflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{C80E983D-A0B5-448D-9A9F-9CA22A5F0F64}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Site Pages\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{F7EED5A4-0BBE-4B10-A0D8-5BE1398B2FD3}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02}\u0022,\u0022vti_x005f_listname\u0022:\u0022{F7EED5A4-0BBE-4B10-A0D8-5BE1398B2FD3}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222026-05-27T09:08:10\u0022,\u0022vti_x005f_commentcount\u0022:0,\u0022vti_x005f_listflags\u0022:\u0022184647585273221256\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:FC5A6803-A30F-4FA1-B99E-71D7FC40CC02@00000000006\u0022,\u0022vti_x005f_folderitemcount\u0022:1,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_mainlinkdata\u0022:\u0022\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02},6\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:6,\u0022vti_x005f_contenttag\u0022:\u0022{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02},6,0\u0022,\u0022vti_x005f_listservertemplate\u0022:119,\u0022vti_x005f_listenableminorversions\u0022:\u0022true\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|aram@3fgb00.onmicrosoft.com\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222026-05-27T09:03:05\u0022},\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022,\u0022Title\u0022:\u0022Site Pages\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-305d-7000-3703-9cfbee85b757","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222021-09-11T23:42:33\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222023-08-25T09:15:38\u0022,\u0022vti_x005f_timelastwnssent\u0022:\u00222023-06-29T13:32:48\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:23,\u0022vti_x005f_listrequirecheckout\u0022:\u0022true\u0022,\u0022vti_x005f_listflags2\u0022:229376,\u0022vti_x005f_TemplatesFolderGuid\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022vti_x005f_parentid\u0022:\u0022{695B54D0-9320-4AA3-B5E0-F44E72D9AA44}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Site Pages\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{874451CE-E1B4-4C46-85FD-A6FB0298E1A0}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{714761DC-83F7-428A-AE9B-7801D9C4D235}\u0022,\u0022vti_x005f_listname\u0022:\u0022{874451CE-E1B4-4C46-85FD-A6FB0298E1A0}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222023-08-25T09:15:39\u0022,\u0022vti_x005f_listflags\u0022:\u0022184647585272434824\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:714761DC-83F7-428A-AE9B-7801D9C4D235@00000000023\u0022,\u0022vti_x005f_folderitemcount\u0022:3,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{714761DC-83F7-428A-AE9B-7801D9C4D235},23\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:23,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_listservertemplate\u0022:119,\u0022vti_x005f_listenableminorversions\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222023-08-25T09:10:34\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_searchversion\u0022:1},\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022,\u0022Title\u0022:\u0022Site Pages\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00003.response.json index 668585a503..0a61a5375a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-c04d-1001-1a81-3e6d4e3b90c2","SPClientServiceRequestDuration":"146","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"[\r{\r\u0022SchemaVersion\u0022:\u002215.0.0.0\u0022,\u0022LibraryVersion\u0022:\u002216.0.27313.12005\u0022,\u0022ErrorInfo\u0022:null,\u0022TraceCorrelationId\u0022:\u0022ddad17a2-c04d-1001-1a81-3e6d4e3b90c2\u0022\r}\r]"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-1062-7000-3703-9fb0daa1a5b1","SPClientServiceRequestDuration":"66","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"[\r{\r\u0022SchemaVersion\u0022:\u002215.0.0.0\u0022,\u0022LibraryVersion\u0022:\u002216.0.24009.12004\u0022,\u0022ErrorInfo\u0022:null,\u0022TraceCorrelationId\u0022:\u002272e2d3a0-1062-7000-3703-9fb0daa1a5b1\u0022\r}\r]"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00000.response.json index 1bbb923ce3..bcf0c4ee19 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-705b-1001-48eb-74fbfbe2bba0","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-e069-7000-3703-9348182021e8","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00001.response.json index 3d7543f7c0..b0c5b59833 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-d060-1001-48eb-7737e701c189","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-c06e-7000-3703-9efd4fad8f7e","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00002.response.json index a0f7dde27f..ed4cee2f4c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-1066-1001-1a81-39971fc76927","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:10Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022,\u0022Title\u0022:\u0022Site Pages\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-b072-7000-3703-9bad5e7b0e52","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:39Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022,\u0022Title\u0022:\u0022Site Pages\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00003.response.json index 4db3d86c3c..6a5c784ef4 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-706b-1001-48eb-7252753f403f","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222026-05-22T21:21:41\u0022,\u0022vti_x005f_contentversionisdirty\u0022:\u0022false\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222026-05-27T09:08:09\u0022,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:7,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:0,\u0022vti_x005f_contentversion\u0022:0,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:0,\u0022vti_x005f_accesscontrolflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{C80E983D-A0B5-448D-9A9F-9CA22A5F0F64}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Site Pages\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{F7EED5A4-0BBE-4B10-A0D8-5BE1398B2FD3}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022ListPropertiesTest123\u0022:\u0022test123\u0022,\u0022vti_x005f_listname\u0022:\u0022{F7EED5A4-0BBE-4B10-A0D8-5BE1398B2FD3}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222026-05-27T09:08:10\u0022,\u0022vti_x005f_commentcount\u0022:0,\u0022vti_x005f_listflags\u0022:\u0022184647585273221256\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:FC5A6803-A30F-4FA1-B99E-71D7FC40CC02@00000000007\u0022,\u0022vti_x005f_folderitemcount\u0022:1,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_replid\u0022:\u0022rid:{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02}\u0022,\u0022vti_x005f_mainlinkdata\u0022:\u0022\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02},7\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:7,\u0022vti_x005f_contenttag\u0022:\u0022{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02},7,0\u0022,\u0022vti_x005f_listservertemplate\u0022:119,\u0022vti_x005f_listenableminorversions\u0022:\u0022true\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|aram@3fgb00.onmicrosoft.com\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222026-05-27T09:03:06\u0022},\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-9077-7000-3703-953e1f3e88ff","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222021-09-11T23:42:33\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222023-08-25T09:15:38\u0022,\u0022vti_x005f_timelastwnssent\u0022:\u00222023-08-25T09:15:38\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:24,\u0022vti_x005f_listrequirecheckout\u0022:\u0022true\u0022,\u0022vti_x005f_listflags2\u0022:229376,\u0022vti_x005f_TemplatesFolderGuid\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022vti_x005f_parentid\u0022:\u0022{695B54D0-9320-4AA3-B5E0-F44E72D9AA44}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Site Pages\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{874451CE-E1B4-4C46-85FD-A6FB0298E1A0}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022ListPropertiesTest123\u0022:\u0022test123\u0022,\u0022vti_x005f_listname\u0022:\u0022{874451CE-E1B4-4C46-85FD-A6FB0298E1A0}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222023-08-25T09:15:39\u0022,\u0022vti_x005f_listflags\u0022:\u0022184647585272434824\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:714761DC-83F7-428A-AE9B-7801D9C4D235@00000000024\u0022,\u0022vti_x005f_folderitemcount\u0022:3,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_replid\u0022:\u0022rid:{714761DC-83F7-428A-AE9B-7801D9C4D235}\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{714761DC-83F7-428A-AE9B-7801D9C4D235},24\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:24,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_listservertemplate\u0022:119,\u0022vti_x005f_listenableminorversions\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222023-08-25T09:10:34\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_searchversion\u0022:1},\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00004.response.json index e449e4425d..cad53fec69 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-2-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-7071-1001-48eb-7662d0d54894","SPClientServiceRequestDuration":"73","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"[\r{\r\u0022SchemaVersion\u0022:\u002215.0.0.0\u0022,\u0022LibraryVersion\u0022:\u002216.0.27313.12005\u0022,\u0022ErrorInfo\u0022:null,\u0022TraceCorrelationId\u0022:\u0022ddad17a2-7071-1001-48eb-7662d0d54894\u0022\r}\r]"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-707d-7000-3703-92e21e2f9e46","SPClientServiceRequestDuration":"56","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"[\r{\r\u0022SchemaVersion\u0022:\u002215.0.0.0\u0022,\u0022LibraryVersion\u0022:\u002216.0.24009.12004\u0022,\u0022ErrorInfo\u0022:null,\u0022TraceCorrelationId\u0022:\u002272e2d3a0-707d-7000-3703-92e21e2f9e46\u0022\r}\r]"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00000.response.json index 20d9dbea61..74cdd20da8 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-407a-1001-1a81-341b26359b59","SPClientServiceRequestDuration":"15","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-4084-7000-3703-9e7ea8f412a2","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00001.response.json index 9668c1f126..aa441b48fb 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-207f-1001-48eb-782f6ecb2270","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-2089-7000-3703-9a0f7ed5b49b","SPClientServiceRequestDuration":"10","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00002.response.json index 0df591d290..51430b1acc 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-f083-1001-48eb-74e8194c2136","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:11Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022,\u0022Title\u0022:\u0022Site Pages\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-108d-7000-3703-99fd3b7553ad","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/SitePages\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:39Z\u0022,\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022874451ce-e1b4-4c46-85fd-a6fb0298e1a0\u0022,\u0022Title\u0022:\u0022Site Pages\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00003.response.json index 81cbb2e246..feb583169d 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/SetFolderPropertiesTest-3-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-d08a-1001-1a81-37f8a517359c","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222026-05-22T21:21:41\u0022,\u0022vti_x005f_contentversionisdirty\u0022:\u0022false\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222026-05-27T09:08:10\u0022,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:8,\u0022vti_x005f_listrequirecheckout\u0022:\u0022false\u0022,\u0022vti_x005f_listflags2\u0022:0,\u0022vti_x005f_contentversion\u0022:0,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:0,\u0022vti_x005f_accesscontrolflags\u0022:0,\u0022vti_x005f_parentid\u0022:\u0022{C80E983D-A0B5-448D-9A9F-9CA22A5F0F64}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Site Pages\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{F7EED5A4-0BBE-4B10-A0D8-5BE1398B2FD3}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02}\u0022,\u0022vti_x005f_listname\u0022:\u0022{F7EED5A4-0BBE-4B10-A0D8-5BE1398B2FD3}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222026-05-27T09:08:11\u0022,\u0022vti_x005f_commentcount\u0022:0,\u0022vti_x005f_listflags\u0022:\u0022184647585273221256\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:FC5A6803-A30F-4FA1-B99E-71D7FC40CC02@00000000008\u0022,\u0022vti_x005f_folderitemcount\u0022:1,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_mainlinkdata\u0022:\u0022\u0022,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02},8\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:8,\u0022vti_x005f_contenttag\u0022:\u0022{FC5A6803-A30F-4FA1-B99E-71D7FC40CC02},8,0\u0022,\u0022vti_x005f_listservertemplate\u0022:119,\u0022vti_x005f_listenableminorversions\u0022:\u0022true\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|aram@3fgb00.onmicrosoft.com\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222026-05-27T09:03:06\u0022},\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-f090-7000-3703-982e925f0eb5","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Properties\u0022:{\u0022vti_x005f_timecreated\u0022:\u00222021-09-11T23:42:33\u0022,\u0022vti_x005f_modifiedby\u0022:\u0022i:0#.f|membership|bert.jansen@bertonline.onmicrosoft.com\u0022,\u0022vti_x005f_level\u0022:1,\u0022vti_x005f_nexttolasttimemodified\u0022:\u00222023-08-25T09:15:38\u0022,\u0022vti_x005f_timelastwnssent\u0022:\u00222023-08-25T09:15:39\u0022,\u0022vti_x005f_hassubdirs\u0022:\u0022true\u0022,\u0022vti_x005f_metainfoversion\u0022:25,\u0022vti_x005f_listrequirecheckout\u0022:\u0022true\u0022,\u0022vti_x005f_listflags2\u0022:229376,\u0022vti_x005f_TemplatesFolderGuid\u0022:\u00222073a231-9c31-4054-abe3-7def4188002e\u0022,\u0022vti_x005f_isexecutable\u0022:\u0022false\u0022,\u0022vti_x005f_foldersubfolderitemcount\u0022:1,\u0022vti_x005f_parentid\u0022:\u0022{695B54D0-9320-4AA3-B5E0-F44E72D9AA44}\u0022,\u0022vti_x005f_listtitle\u0022:\u0022Site Pages\u0022,\u0022vti_x005f_isscriptable\u0022:\u0022false\u0022,\u0022vti_x005f_listenablemoderation\u0022:\u0022false\u0022,\u0022vti_x005f_namespacelistid\u0022:\u0022{874451CE-E1B4-4C46-85FD-A6FB0298E1A0}\u0022,\u0022vti_x005f_isbrowsable\u0022:\u0022true\u0022,\u0022vti_x005f_replid\u0022:\u0022rid:{714761DC-83F7-428A-AE9B-7801D9C4D235}\u0022,\u0022vti_x005f_listname\u0022:\u0022{874451CE-E1B4-4C46-85FD-A6FB0298E1A0}\u0022,\u0022vti_x005f_timelastmodified\u0022:\u00222023-08-25T09:15:39\u0022,\u0022vti_x005f_listflags\u0022:\u0022184647585272434824\u0022,\u0022vti_x005f_rtag\u0022:\u0022rt:714761DC-83F7-428A-AE9B-7801D9C4D235@00000000025\u0022,\u0022vti_x005f_folderitemcount\u0022:3,\u0022vti_x005f_shareflags\u0022:0,\u0022vti_x005f_etag\u0022:\u0022\\\u0022{714761DC-83F7-428A-AE9B-7801D9C4D235},25\\\u0022\u0022,\u0022vti_x005f_listbasetype\u0022:1,\u0022vti_x005f_docstoretype\u0022:1,\u0022vti_x005f_principalcount\u0022:3,\u0022vti_x005f_docstoreversion\u0022:25,\u0022vti_x005f_candeleteversion\u0022:\u0022true\u0022,\u0022vti_x005f_listservertemplate\u0022:119,\u0022vti_x005f_listenableminorversions\u0022:\u0022true\u0022,\u0022vti_x005f_dirlateststamp\u0022:\u00222023-08-25T09:10:35\u0022,\u0022vti_x005f_listenableversioning\u0022:\u0022true\u0022,\u0022vti_x005f_searchversion\u0022:1},\u0022UniqueId\u0022:\u0022714761dc-83f7-428a-ae9b-7801d9c4d235\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00000.response.json index 21f32f7f46..3954e0f88e 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00000.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00000.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-c090-1001-48eb-7a7e70fc4eaa","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-e095-7000-3703-91291d9f949d","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00222c99a486-d6c9-4a4b-8d6f-a9faa364c92c\u0022,\u0022Url\u0022:\u0022https://bertonline.sharepoint.com/sites/prov-2\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00001.response.json index 2fa501b407..de82273e59 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00001.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00001.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-a095-1001-48eb-737ad91bdac2","SPClientServiceRequestDuration":"14","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-c09a-7000-3703-94170d24cf6f","SPClientServiceRequestDuration":"11","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022d40d729b-df60-4b57-ac8f-102595090e0a\u0022,\u0022Id\u0022:\u0022f92f9e40-1110-43ef-aa0e-0822e13fb7ba\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00002.response.json index 72559e20ff..ffe7ee53a0 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00002.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00002.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-909a-1001-1a81-3a545827e5cd","SPClientServiceRequestDuration":"31","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:22,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:40Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:05Z\u0022,\u0022UniqueId\u0022:\u00225ae9d725-2c62-418f-bf0a-f361345d8de5\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022b892811a-1a19-42e9-bad0-705e666f47e7\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-a09e-7000-3703-9406561d8203","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:3,\u0022Name\u0022:\u0022Shared Documents\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents\u0022,\u0022TimeCreated\u0022:\u00222021-09-11T23:42:33Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:37Z\u0022,\u0022UniqueId\u0022:\u0022ee07fd66-8537-446f-a7d8-9fd90393188f\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u002213326e70-58ba-4e0e-9b30-08189f21d555\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00003.response.json index edb58d4c3e..8dc8ccac44 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00003.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00003.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-90a1-1001-48eb-7cc1f745de5d","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:08:11Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:11Z\u0022,\u0022UniqueId\u0022:\u002246aab085-7b57-48ce-9205-e45eb81b93b2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-80a3-7000-3703-92059e2f7077","SPClientServiceRequestDuration":"68","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022TEST\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/prov-2/Shared Documents/TEST\u0022,\u0022TimeCreated\u0022:\u00222023-08-25T09:15:40Z\u0022,\u0022TimeLastModified\u0022:\u00222023-08-25T09:15:40Z\u0022,\u0022UniqueId\u0022:\u00226c31e5e5-8645-438c-8ed2-a2f109338d8f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00004.response.json index 34763aeb64..87b6b4043f 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00004.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00004.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":204,"Headers":{"SPRequestGuid":"ddad17a2-30ac-1001-48eb-7eb1809f4e73","SPClientServiceRequestDuration":"159","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":204,"Headers":{"SPRequestGuid":"72e2d3a0-40af-7000-310e-46473a491257","SPClientServiceRequestDuration":"76","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00005.response.json index d6a4427559..dc5454ac92 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00005.response.json +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/UpdateFolderTest-0-00005.response.json @@ -1 +1 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"ddad17a2-f0ba-1001-1a81-33bc470d7440","SPClientServiceRequestDuration":"91","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"72e2d3a0-10b8-7000-310e-4b09423df6d2","SPClientServiceRequestDuration":"140","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file From d9b3a0fae62c0aa36536d485570d2579b541d31f Mon Sep 17 00:00:00 2001 From: Aram Barzanjeh Date: Thu, 4 Jun 2026 09:12:27 +0200 Subject: [PATCH 5/8] cleaning up --- .../EnsureListFolderConcurrentTest-0-00000.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00001.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00002.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00003.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00004.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00005.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00006.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00007.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00008.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00009.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00010.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00011.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00012.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00013.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00014.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00015.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00016.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00017.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00018.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00019.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00020.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00021.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00022.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00023.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00024.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00025.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00026.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00027.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00028.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00029.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00030.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00031.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00032.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00033.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00034.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00035.response.json | 1 - .../EnsureListFolderConcurrentTest-0-00036.response.json | 1 - .../EnsureListFolderIdempotentTest-0-00000.response.json | 1 - .../EnsureListFolderIdempotentTest-0-00001.response.json | 1 - .../EnsureListFolderIdempotentTest-0-00002.response.json | 1 - .../EnsureListFolderIdempotentTest-0-00003.response.json | 1 - .../EnsureListFolderIdempotentTest-0-00004.response.json | 1 - .../EnsureListFolderIdempotentTest-0-00005.response.json | 1 - .../EnsureListFolderIdempotentTest-0-00006.response.json | 1 - .../EnsureListFolderIdempotentTest-0-00007.response.json | 1 - .../EnsureListFolderIdempotentTest-0-00008.response.json | 1 - .../EnsureListFolderIdempotentTest-0-00009.response.json | 1 - 47 files changed, 47 deletions(-) delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00000.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00001.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00002.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00003.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00004.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00005.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00006.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00007.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00008.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00009.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00010.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00011.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00012.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00013.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00014.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00015.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00016.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00017.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00018.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00019.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00020.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00021.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00022.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00023.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00024.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00025.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00026.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00027.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00028.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00029.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00030.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00031.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00032.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00033.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00034.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00035.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00036.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00000.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00001.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00002.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00003.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00004.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00005.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00006.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00007.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00008.response.json delete mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00009.response.json diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00000.response.json deleted file mode 100644 index 6c0080ccec..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00000.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e3ad17a2-c074-1001-1a81-322758d625fa","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00001.response.json deleted file mode 100644 index efe4187131..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00001.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e3ad17a2-2082-1001-733e-2547e831f844","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00002.response.json deleted file mode 100644 index 94e590b3a7..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00002.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"e6ad17a2-0019-1001-4178-081f1324a784","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:08:11Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00003.response.json deleted file mode 100644 index f8ee8342a1..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00003.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"f0ad17a2-40fc-1001-48eb-7d6a39f15d50","SPClientServiceRequestDuration":"33","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00004.response.json deleted file mode 100644 index bbfcb96d72..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00004.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"f1ad17a2-10b5-1001-733e-229e4d48c6d9","SPClientServiceRequestDuration":"52","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00005.response.json deleted file mode 100644 index 1affed7b22..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00005.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"f1ad17a2-30b6-1001-48eb-702228cebfa7","SPClientServiceRequestDuration":"68","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00006.response.json deleted file mode 100644 index 120fce680e..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00006.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"f1ad17a2-d0b7-1001-48eb-701103345854","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00007.response.json deleted file mode 100644 index 1935c09306..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00007.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"f1ad17a2-e0b6-1001-733e-295a9fcd8bd6","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00008.response.json deleted file mode 100644 index 977516ed5e..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00008.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f1ad17a2-10fc-1001-1a81-3e1b78e8c240","SPClientServiceRequestDuration":"90","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00009.response.json deleted file mode 100644 index 4f42a60887..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00009.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-9000-0001-a8ef-1bd4451994f8","SPClientServiceRequestDuration":"91","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00010.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00010.response.json deleted file mode 100644 index 6e456f97ed..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00010.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"d1ad17a2-20eb-1001-1a81-3207defab94a","SPClientServiceRequestDuration":"65","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00011.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00011.response.json deleted file mode 100644 index d27dc53aba..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00011.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f1ad17a2-50fc-1001-1a81-329fb1e12a18","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022UniqueId\u0022:\u00228e2fa60c-243a-4994-8eb1-b75be9205d82\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00012.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00012.response.json deleted file mode 100644 index dd02ab545b..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00012.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-801a-1001-1a81-3f99bab5ed88","SPClientServiceRequestDuration":"75","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00013.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00013.response.json deleted file mode 100644 index af6d581218..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00013.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-5057-0001-a8ef-186fb3bb6c3e","SPClientServiceRequestDuration":"27","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022UniqueId\u0022:\u00228e2fa60c-243a-4994-8eb1-b75be9205d82\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00014.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00014.response.json deleted file mode 100644 index 3a4c254692..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00014.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-b057-1001-733e-2a3591bee15a","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022UniqueId\u0022:\u00228e2fa60c-243a-4994-8eb1-b75be9205d82\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00015.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00015.response.json deleted file mode 100644 index ab1f909429..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00015.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-4059-1001-733e-2b9818d1a8f9","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022UniqueId\u0022:\u00228e2fa60c-243a-4994-8eb1-b75be9205d82\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00016.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00016.response.json deleted file mode 100644 index f4acdefad7..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00016.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-f061-1001-48eb-74d1a0a1b43b","SPClientServiceRequestDuration":"123","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u002288b34759-a46a-400e-bd96-54004a3babe2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00017.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00017.response.json deleted file mode 100644 index 16671401d0..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00017.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-9066-1001-4178-0401bcd390d4","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u00228e2fa60c-243a-4994-8eb1-b75be9205d82\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00018.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00018.response.json deleted file mode 100644 index 200fe50d1a..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00018.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-907b-1001-1a81-303953186ac2","SPClientServiceRequestDuration":"47","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00019.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00019.response.json deleted file mode 100644 index 28ba036cbc..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00019.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-f07b-1001-1a81-38c4816732c7","SPClientServiceRequestDuration":"52","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00020.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00020.response.json deleted file mode 100644 index 021140ab1f..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00020.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-b081-1001-4178-0f3014538d46","SPClientServiceRequestDuration":"45","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00021.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00021.response.json deleted file mode 100644 index 02d9802a44..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00021.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f3ad17a2-e0a6-1001-733e-23b43215034f","SPClientServiceRequestDuration":"177","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00022.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00022.response.json deleted file mode 100644 index e9b688af72..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00022.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-e096-1001-733e-209e3a77329a","SPClientServiceRequestDuration":"69","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00023.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00023.response.json deleted file mode 100644 index 2920ec352f..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00023.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-b0e0-0001-a8ef-124c4e38de35","SPClientServiceRequestDuration":"26","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u002288b34759-a46a-400e-bd96-54004a3babe2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00024.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00024.response.json deleted file mode 100644 index 3c5b3c4479..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00024.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-d0e0-1001-4178-017deb0dcc28","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u002288b34759-a46a-400e-bd96-54004a3babe2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00025.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00025.response.json deleted file mode 100644 index 309a81ad6b..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00025.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-d0e0-1001-48eb-704b247ff463","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u002288b34759-a46a-400e-bd96-54004a3babe2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00026.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00026.response.json deleted file mode 100644 index c0b2b4ddf9..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00026.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-50e1-1001-4178-05f550533720","SPClientServiceRequestDuration":"29","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u002288b34759-a46a-400e-bd96-54004a3babe2\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00027.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00027.response.json deleted file mode 100644 index e078958fa9..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00027.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-20fa-1001-48eb-76510f9ca34e","SPClientServiceRequestDuration":"80","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00028.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00028.response.json deleted file mode 100644 index 5989a1da8e..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00028.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-90fc-1001-1a81-3c5877bfdd5f","SPClientServiceRequestDuration":"66","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00029.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00029.response.json deleted file mode 100644 index 5ac34c228d..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00029.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f2ad17a2-40fc-1001-48eb-76234d43f399","SPClientServiceRequestDuration":"159","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022UniqueId\u0022:\u00220463924d-ec1c-43c7-b6a8-f7c31aa774bc\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00030.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00030.response.json deleted file mode 100644 index be69a0429a..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00030.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"f2ad17a2-10fd-1001-733e-2ede46d07fef","SPClientServiceRequestDuration":"63","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00031.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00031.response.json deleted file mode 100644 index 6b5290d730..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00031.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3ad17a2-703f-1001-1a81-301f1105faca","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022UniqueId\u0022:\u00220463924d-ec1c-43c7-b6a8-f7c31aa774bc\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00032.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00032.response.json deleted file mode 100644 index 4f12d7212b..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00032.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3ad17a2-5041-0001-a8ef-147e3910aa05","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022UniqueId\u0022:\u00220463924d-ec1c-43c7-b6a8-f7c31aa774bc\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00033.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00033.response.json deleted file mode 100644 index 4fbcfbcbca..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00033.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3ad17a2-a041-1001-4178-04f7548bb918","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022UniqueId\u0022:\u00220463924d-ec1c-43c7-b6a8-f7c31aa774bc\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00034.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00034.response.json deleted file mode 100644 index 38ac06f91a..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00034.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"f3ad17a2-50c1-1001-4178-0484fb0c5cfe","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:39Z\u0022,\u0022UniqueId\u0022:\u00220463924d-ec1c-43c7-b6a8-f7c31aa774bc\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00035.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00035.response.json deleted file mode 100644 index d804475dee..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00035.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"fead17a2-4083-1001-4178-0d49bf67f7cd","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:09:35Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:09:37Z\u0022,\u0022UniqueId\u0022:\u00228e2fa60c-243a-4994-8eb1-b75be9205d82\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00036.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00036.response.json deleted file mode 100644 index d64ebddd87..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00036.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"fead17a2-8089-1001-733e-279eb0459ec4","SPClientServiceRequestDuration":"108","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00000.response.json deleted file mode 100644 index ea9570511c..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00000.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-00ce-1001-48eb-7909a78d421e","SPClientServiceRequestDuration":"16","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00001.response.json deleted file mode 100644 index 76fa55ddb6..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00001.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-00d3-1001-48eb-700ff566ab45","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00002.response.json deleted file mode 100644 index 55c0cb399f..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00002.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-d0d8-1001-1a81-3756e2a76053","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:27Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00003.response.json deleted file mode 100644 index b31eca45de..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00003.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"d2ad17a2-90de-1001-48eb-79c5d76899f6","SPClientServiceRequestDuration":"47","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00004.response.json deleted file mode 100644 index bac0681e21..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00004.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-90e6-1001-48eb-7b8f31a6d550","SPClientServiceRequestDuration":"79","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022UniqueId\u0022:\u0022ae3e38aa-bd46-4d4a-9a35-8b222a3ecd8f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00005.response.json deleted file mode 100644 index fa80ad4906..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00005.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d2ad17a2-20f0-1001-1a81-3658145d9ad9","SPClientServiceRequestDuration":"220","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022UniqueId\u0022:\u00228a8cdfdb-30b1-4e2e-8ac9-03b917bd4a28\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00006.response.json deleted file mode 100644 index da5c0be1cb..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00006.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-5002-1001-48eb-7142ef7b5500","SPClientServiceRequestDuration":"101","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022UniqueId\u0022:\u0022ae3e38aa-bd46-4d4a-9a35-8b222a3ecd8f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00007.response.json deleted file mode 100644 index 54af40f40d..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00007.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-300c-1001-48eb-7de38f692444","SPClientServiceRequestDuration":"162","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022UniqueId\u0022:\u00228a8cdfdb-30b1-4e2e-8ac9-03b917bd4a28\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00008.response.json deleted file mode 100644 index 98d3f62477..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00008.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-601b-1001-1a81-392af13b9ace","SPClientServiceRequestDuration":"60","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:07:28Z\u0022,\u0022UniqueId\u0022:\u0022ae3e38aa-bd46-4d4a-9a35-8b222a3ecd8f\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00009.response.json deleted file mode 100644 index 926affe98b..0000000000 --- a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00009.response.json +++ /dev/null @@ -1 +0,0 @@ -{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"d3ad17a2-d023-1001-48eb-798735565e44","SPClientServiceRequestDuration":"132","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file From 6fa318a37552c207a0053727621c6a732790dfeb Mon Sep 17 00:00:00 2001 From: Aram Barzanjeh Date: Thu, 4 Jun 2026 09:14:54 +0200 Subject: [PATCH 6/8] EnsureListFolderIdempotentTest mockdata --- src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs | 2 +- .../EnsureListFolderIdempotentTest-0-00000.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00001.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00002.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00003.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00004.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00005.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00006.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00007.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00008.response.json | 1 + .../EnsureListFolderIdempotentTest-0-00009.response.json | 1 + 11 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00000.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00001.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00002.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00003.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00004.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00005.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00006.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00007.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00008.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00009.response.json diff --git a/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs b/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs index 8195c6c47c..206561aa86 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs +++ b/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs @@ -618,7 +618,7 @@ public async Task EnsureListFolderInExistingHiarchyTest() [TestMethod] public async Task EnsureListFolderIdempotentTest() { - //TestCommon.Instance.Mocking = false; + TestCommon.Instance.Mocking = false; using (var context = await TestCommon.Instance.GetContextAsync(TestCommon.TestSite)) { IFolder parentFolder = (await context.Web.Lists.GetByTitleAsync("Site Pages", p => p.RootFolder)).RootFolder; diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00000.response.json new file mode 100644 index 0000000000..d99ade5c05 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00000.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"893a1aa2-80eb-1001-733e-289c0f114185","SPClientServiceRequestDuration":"168","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00001.response.json new file mode 100644 index 0000000000..d61cb3cbd2 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00001.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"8a3a1aa2-d004-1001-8fd7-e2e59abce5af","SPClientServiceRequestDuration":"13","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00002.response.json new file mode 100644 index 0000000000..ba6a09b10d --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00002.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"8a3a1aa2-600d-1001-8fd7-e064c2315d9a","SPClientServiceRequestDuration":"25","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-05-27T09:10:26Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00003.response.json new file mode 100644 index 0000000000..2b708c4d00 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00003.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"8a3a1aa2-9016-1001-8fd7-ee223b73ceca","SPClientServiceRequestDuration":"44","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00004.response.json new file mode 100644 index 0000000000..ad26b99a88 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00004.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"8a3a1aa2-c020-1001-8fd7-ecd3cd550b09","SPClientServiceRequestDuration":"153","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:14:30Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:14:30Z\u0022,\u0022UniqueId\u0022:\u0022aebb28b9-ebaf-4567-b0f7-7d8b7bd6943c\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00005.response.json new file mode 100644 index 0000000000..def1575eb8 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00005.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"8a3a1aa2-a030-1001-8fd7-e9f5255f62e0","SPClientServiceRequestDuration":"73","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:14:30Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:14:30Z\u0022,\u0022UniqueId\u0022:\u0022a4e77ce8-ceb9-41c3-99e7-5c8888895c75\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00006.response.json new file mode 100644 index 0000000000..0099390c8f --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00006.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"8a3a1aa2-603c-1001-8fd7-ec5180fb6b22","SPClientServiceRequestDuration":"17","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:14:30Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:14:30Z\u0022,\u0022UniqueId\u0022:\u0022aebb28b9-ebaf-4567-b0f7-7d8b7bd6943c\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00007.response.json new file mode 100644 index 0000000000..6b2ed486e3 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00007.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"8a3a1aa2-7044-1001-8fd7-e7ed901f8832","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:14:30Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:14:30Z\u0022,\u0022UniqueId\u0022:\u0022a4e77ce8-ceb9-41c3-99e7-5c8888895c75\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00008.response.json new file mode 100644 index 0000000000..db75582bb2 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00008.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"8a3a1aa2-b04c-1001-8fd7-e94e869d4df2","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:14:30Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:14:30Z\u0022,\u0022UniqueId\u0022:\u0022aebb28b9-ebaf-4567-b0f7-7d8b7bd6943c\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00009.response.json new file mode 100644 index 0000000000..8e0d591409 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderIdempotentTest-0-00009.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"8a3a1aa2-4054-1001-733e-2d54d8d4a0cc","SPClientServiceRequestDuration":"121","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file From 83d4d8537d23e6c25aab3ace4a828a8ce6848611 Mon Sep 17 00:00:00 2001 From: Aram Barzanjeh Date: Thu, 4 Jun 2026 09:16:05 +0200 Subject: [PATCH 7/8] EnsureListFolderConcurrentTest mockdata --- src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs | 2 +- .../EnsureListFolderConcurrentTest-0-00000.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00001.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00002.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00003.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00004.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00005.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00006.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00007.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00008.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00009.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00010.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00011.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00012.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00013.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00014.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00015.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00016.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00017.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00018.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00019.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00020.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00021.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00022.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00023.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00024.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00025.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00026.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00027.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00028.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00029.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00030.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00031.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00032.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00033.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00034.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00035.response.json | 1 + .../EnsureListFolderConcurrentTest-0-00036.response.json | 1 + 38 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00000.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00001.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00002.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00003.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00004.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00005.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00006.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00007.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00008.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00009.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00010.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00011.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00012.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00013.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00014.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00015.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00016.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00017.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00018.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00019.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00020.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00021.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00022.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00023.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00024.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00025.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00026.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00027.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00028.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00029.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00030.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00031.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00032.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00033.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00034.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00035.response.json create mode 100644 src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00036.response.json diff --git a/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs b/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs index 206561aa86..8195c6c47c 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs +++ b/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs @@ -618,7 +618,7 @@ public async Task EnsureListFolderInExistingHiarchyTest() [TestMethod] public async Task EnsureListFolderIdempotentTest() { - TestCommon.Instance.Mocking = false; + //TestCommon.Instance.Mocking = false; using (var context = await TestCommon.Instance.GetContextAsync(TestCommon.TestSite)) { IFolder parentFolder = (await context.Web.Lists.GetByTitleAsync("Site Pages", p => p.RootFolder)).RootFolder; diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00000.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00000.response.json new file mode 100644 index 0000000000..3a9a8edbdd --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00000.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-c086-1001-8fd7-e004c3439b6a","SPClientServiceRequestDuration":"12","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RegionalSettings\u0022:{\u0022TimeZone\u0022:{\u0022Description\u0022:\u0022(UTC-08:00) Pacific Time (US and Canada)\u0022,\u0022Id\u0022:13,\u0022Information\u0022:{\u0022Bias\u0022:480,\u0022DaylightBias\u0022:-60,\u0022StandardBias\u0022:0}},\u0022AdjustHijriDays\u0022:0,\u0022AlternateCalendarType\u0022:0,\u0022AM\u0022:\u0022AM\u0022,\u0022CalendarType\u0022:1,\u0022Collation\u0022:25,\u0022CollationLCID\u0022:2070,\u0022DateFormat\u0022:0,\u0022DateSeparator\u0022:\u0022/\u0022,\u0022DecimalSeparator\u0022:\u0022.\u0022,\u0022DigitGrouping\u0022:\u00223;0\u0022,\u0022FirstDayOfWeek\u0022:0,\u0022FirstWeekOfYear\u0022:0,\u0022IsEastAsia\u0022:false,\u0022IsRightToLeft\u0022:false,\u0022IsUIRightToLeft\u0022:false,\u0022ListSeparator\u0022:\u0022,\u0022,\u0022LocaleId\u0022:1033,\u0022NegativeSign\u0022:\u0022-\u0022,\u0022NegNumberMode\u0022:1,\u0022PM\u0022:\u0022PM\u0022,\u0022PositiveSign\u0022:\u0022\u0022,\u0022ShowWeeks\u0022:false,\u0022ThousandSeparator\u0022:\u0022,\u0022,\u0022Time24\u0022:false,\u0022TimeMarkerPosition\u0022:0,\u0022TimeSeparator\u0022:\u0022:\u0022,\u0022WorkDayEndHour\u0022:1020,\u0022WorkDays\u0022:62,\u0022WorkDayStartHour\u0022:480},\u0022Id\u0022:\u00226f2d6824-5143-4222-89cb-1ee645a69f51\u0022,\u0022Url\u0022:\u0022https://3fgb00.sharepoint.com/sites/pnpcoresdktestgroup\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00001.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00001.response.json new file mode 100644 index 0000000000..8fb00ea064 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00001.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-8093-1001-8fd7-e209b4f2a4f4","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022GroupId\u0022:\u0022c1a99f87-f498-4ea8-9b44-2c1da34fcaa8\u0022,\u0022Id\u0022:\u0022477b4438-a3a4-4f63-8d6a-c797c26a357d\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00002.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00002.response.json new file mode 100644 index 0000000000..e5803fda8b --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00002.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-109d-1001-8fd7-e37aa509bd34","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022RootFolder\u0022:{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022SitePages\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages\u0022,\u0022TimeCreated\u0022:\u00222026-05-22T21:21:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:14:30Z\u0022,\u0022UniqueId\u0022:\u0022fc5a6803-a30f-4fa1-b99e-71d7fc40cc02\u0022,\u0022WelcomePage\u0022:\u0022\u0022},\u0022Id\u0022:\u0022f7eed5a4-0bbe-4b10-a0d8-5be1398b2fd3\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00003.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00003.response.json new file mode 100644 index 0000000000..f690ceb01a --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00003.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"9b3a1aa2-e0a3-1001-8fd7-e26ad021f41e","SPClientServiceRequestDuration":"36","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00004.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00004.response.json new file mode 100644 index 0000000000..49002048fd --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00004.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"9b3a1aa2-e0a5-1001-4178-067af1d35777","SPClientServiceRequestDuration":"47","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00005.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00005.response.json new file mode 100644 index 0000000000..254572a5e1 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00005.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"9b3a1aa2-00a8-1001-8fd7-e19953be78bd","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00006.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00006.response.json new file mode 100644 index 0000000000..b386a1db80 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00006.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"9b3a1aa2-60a7-1001-8fd7-e38f19f766c7","SPClientServiceRequestDuration":"37","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00007.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00007.response.json new file mode 100644 index 0000000000..eb27dd36a2 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00007.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":404,"Headers":{"SPRequestGuid":"9b3a1aa2-60a6-1001-8fd7-e3e63924a400","SPClientServiceRequestDuration":"92","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2147024894, System.IO.FileNotFoundException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022File Not Found.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00008.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00008.response.json new file mode 100644 index 0000000000..60358f2fcd --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00008.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-b0ab-1001-8fd7-eb35e5828039","SPClientServiceRequestDuration":"78","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:41Z\u0022,\u0022UniqueId\u0022:\u0022d0d8eac9-d912-41fa-991f-cd9f2b3cecae\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00009.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00009.response.json new file mode 100644 index 0000000000..d5ce6e79c7 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00009.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"9b3a1aa2-40ae-1001-8fd7-e81d402d29e6","SPClientServiceRequestDuration":"56","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00010.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00010.response.json new file mode 100644 index 0000000000..d1fac548ab --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00010.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"9b3a1aa2-20af-1001-733e-2a20ac2b803c","SPClientServiceRequestDuration":"62","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00011.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00011.response.json new file mode 100644 index 0000000000..a2e90d1e06 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00011.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"9b3a1aa2-80b0-1001-8fd7-ef8a9d43d3a6","SPClientServiceRequestDuration":"91","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00012.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00012.response.json new file mode 100644 index 0000000000..d08abff6f9 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00012.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"9b3a1aa2-a0b3-1001-8fd7-e4dc982c4d0c","SPClientServiceRequestDuration":"81","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00013.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00013.response.json new file mode 100644 index 0000000000..86d57b705d --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00013.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-00b5-1001-8fd7-eda36fd2b8de","SPClientServiceRequestDuration":"98","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u002290685d4a-d898-4b9e-9300-1ab0bc69f852\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00014.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00014.response.json new file mode 100644 index 0000000000..3ef7d33fa2 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00014.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-80b8-1001-8fd7-ee22e19aa9e9","SPClientServiceRequestDuration":"18","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u0022d0d8eac9-d912-41fa-991f-cd9f2b3cecae\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00015.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00015.response.json new file mode 100644 index 0000000000..bf6aa3c5f6 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00015.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-20b9-1001-8fd7-e4518dd7deea","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u0022d0d8eac9-d912-41fa-991f-cd9f2b3cecae\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00016.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00016.response.json new file mode 100644 index 0000000000..9927b134bb --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00016.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-30be-1001-8fd7-e6de6342b01f","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u0022d0d8eac9-d912-41fa-991f-cd9f2b3cecae\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00017.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00017.response.json new file mode 100644 index 0000000000..3c8dc21518 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00017.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-50bd-1001-8fd7-e0ec36af2aec","SPClientServiceRequestDuration":"20","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u0022d0d8eac9-d912-41fa-991f-cd9f2b3cecae\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00018.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00018.response.json new file mode 100644 index 0000000000..f0c2008fac --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00018.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-d0bf-1001-4178-0a06b28f1334","SPClientServiceRequestDuration":"153","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u00226f19918c-1912-48c5-bb57-378b8e998c36\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00019.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00019.response.json new file mode 100644 index 0000000000..409882579e --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00019.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"9b3a1aa2-20c0-1001-8fd7-e50fd74e3db1","SPClientServiceRequestDuration":"38","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00020.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00020.response.json new file mode 100644 index 0000000000..4e1754c655 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00020.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"9b3a1aa2-60c0-1001-8fd7-e2031a6ed015","SPClientServiceRequestDuration":"39","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00021.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00021.response.json new file mode 100644 index 0000000000..5f683dec9e --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00021.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"9b3a1aa2-d0c2-1001-8fd7-e0caa4992eb6","SPClientServiceRequestDuration":"55","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00022.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00022.response.json new file mode 100644 index 0000000000..7a7c078b88 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00022.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"9b3a1aa2-80c4-1001-8fd7-eefba435d3c6","SPClientServiceRequestDuration":"39","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00023.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00023.response.json new file mode 100644 index 0000000000..c84c76f65e --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00023.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-70c8-1001-8fd7-edb0207252f7","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u002290685d4a-d898-4b9e-9300-1ab0bc69f852\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00024.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00024.response.json new file mode 100644 index 0000000000..744f92265e --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00024.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-60c8-1001-733e-2d628a65e0d8","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u002290685d4a-d898-4b9e-9300-1ab0bc69f852\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00025.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00025.response.json new file mode 100644 index 0000000000..e80211bdcc --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00025.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-c0ca-1001-8fd7-e1bcf3e1aa87","SPClientServiceRequestDuration":"24","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u002290685d4a-d898-4b9e-9300-1ab0bc69f852\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00026.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00026.response.json new file mode 100644 index 0000000000..63f448a418 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00026.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-60cb-1001-8fd7-ec7dc922dd46","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub2\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u002290685d4a-d898-4b9e-9300-1ab0bc69f852\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00027.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00027.response.json new file mode 100644 index 0000000000..8af2cbd973 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00027.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"9b3a1aa2-20ce-1001-8fd7-ed357bc50ed4","SPClientServiceRequestDuration":"56","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00028.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00028.response.json new file mode 100644 index 0000000000..f17578a964 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00028.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"9b3a1aa2-c0ce-1001-8fd7-efd66ff06636","SPClientServiceRequestDuration":"39","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00029.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00029.response.json new file mode 100644 index 0000000000..f8b68c5387 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00029.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"9b3a1aa2-c0d0-1001-8fd7-ea8cd5952038","SPClientServiceRequestDuration":"44","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00030.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00030.response.json new file mode 100644 index 0000000000..8205474856 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00030.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":false,"StatusCode":400,"Headers":{"SPRequestGuid":"9b3a1aa2-50d1-1001-8fd7-e49910e6e3f6","SPClientServiceRequestDuration":"42","X-SharePointHealthScore":"1","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022odata.error\u0022:{\u0022code\u0022:\u0022-2130575257, Microsoft.SharePoint.SPException\u0022,\u0022message\u0022:{\u0022lang\u0022:\u0022en-US\u0022,\u0022value\u0022:\u0022A file or folder with the name sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3 already exists.\u0022}}}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00031.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00031.response.json new file mode 100644 index 0000000000..c4d9e2d93a --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00031.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-a0d5-1001-8fd7-ee77a8cbc113","SPClientServiceRequestDuration":"22","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u00226f19918c-1912-48c5-bb57-378b8e998c36\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00032.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00032.response.json new file mode 100644 index 0000000000..e7b9965423 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00032.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-30d7-1001-8fd7-e6c6926e812e","SPClientServiceRequestDuration":"23","X-SharePointHealthScore":"2","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u00226f19918c-1912-48c5-bb57-378b8e998c36\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00033.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00033.response.json new file mode 100644 index 0000000000..0ee4ebfe82 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00033.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-20d8-1001-8fd7-efedc0a3a314","SPClientServiceRequestDuration":"19","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u00226f19918c-1912-48c5-bb57-378b8e998c36\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00034.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00034.response.json new file mode 100644 index 0000000000..ccae183e25 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00034.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-50d8-1001-8fd7-e94672d020f2","SPClientServiceRequestDuration":"28","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:0,\u0022Name\u0022:\u0022sub3\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1/sub2/sub3\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u00226f19918c-1912-48c5-bb57-378b8e998c36\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00035.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00035.response.json new file mode 100644 index 0000000000..0008234557 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00035.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-e0de-1001-8fd7-e7c3019777c8","SPClientServiceRequestDuration":"21","X-SharePointHealthScore":"0","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":"{\u0022Exists\u0022:true,\u0022ExistsAllowThrowForPolicyFailures\u0022:true,\u0022ExistsWithException\u0022:true,\u0022IsWOPIEnabled\u0022:false,\u0022ItemCount\u0022:1,\u0022Name\u0022:\u0022sub1\u0022,\u0022ProgID\u0022:null,\u0022ServerRelativeUrl\u0022:\u0022/sites/pnpcoresdktestgroup/SitePages/sub1\u0022,\u0022TimeCreated\u0022:\u00222026-06-04T07:15:41Z\u0022,\u0022TimeLastModified\u0022:\u00222026-06-04T07:15:42Z\u0022,\u0022UniqueId\u0022:\u0022d0d8eac9-d912-41fa-991f-cd9f2b3cecae\u0022,\u0022WelcomePage\u0022:\u0022\u0022}"} \ No newline at end of file diff --git a/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00036.response.json b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00036.response.json new file mode 100644 index 0000000000..b63ea660b7 --- /dev/null +++ b/src/sdk/PnP.Core.Test/SharePoint/MockData/FoldersTests/EnsureListFolderConcurrentTest-0-00036.response.json @@ -0,0 +1 @@ +{"IsSuccessStatusCode":true,"StatusCode":200,"Headers":{"SPRequestGuid":"9b3a1aa2-20e5-1001-8fd7-e4560f98ce94","SPClientServiceRequestDuration":"125","X-SharePointHealthScore":"3","X-SP-SERVERSTATE":"ReadOnly=0"},"Response":""} \ No newline at end of file From 1ffbce7355ed722c2d5f16723d1ab9a07ff588db Mon Sep 17 00:00:00 2001 From: Adam-it Date: Fri, 5 Jun 2026 00:51:14 +0200 Subject: [PATCH 8/8] Minor fixup --- src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs | 4 ++-- src/sdk/PnP.Core/Model/SharePoint/Core/Internal/Folder.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs b/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs index 8195c6c47c..723aff139a 100644 --- a/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs +++ b/src/sdk/PnP.Core.Test/SharePoint/FoldersTests.cs @@ -624,12 +624,12 @@ public async Task EnsureListFolderIdempotentTest() IFolder parentFolder = (await context.Web.Lists.GetByTitleAsync("Site Pages", p => p.RootFolder)).RootFolder; var addedFolder = await parentFolder.EnsureFolderAsync("sub1/sub2"); - Assert.IsTrue(addedFolder != null); + Assert.IsNotNull(addedFolder); Assert.IsTrue(addedFolder.Name == "sub2"); // Calling EnsureFolderAsync again for the same path must succeed and return the same folder var ensuredFolder = await parentFolder.EnsureFolderAsync("sub1/sub2"); - Assert.IsTrue(ensuredFolder != null); + Assert.IsNotNull(ensuredFolder); Assert.IsTrue(ensuredFolder.Name == "sub2"); Assert.AreEqual(addedFolder.UniqueId, ensuredFolder.UniqueId); diff --git a/src/sdk/PnP.Core/Model/SharePoint/Core/Internal/Folder.cs b/src/sdk/PnP.Core/Model/SharePoint/Core/Internal/Folder.cs index 2def44fc1d..1e412844c0 100644 --- a/src/sdk/PnP.Core/Model/SharePoint/Core/Internal/Folder.cs +++ b/src/sdk/PnP.Core/Model/SharePoint/Core/Internal/Folder.cs @@ -449,7 +449,7 @@ private static async Task AddFolderHandleRaceAsync( catch { // If the re-fetch fails, surface the original "already exists" error - throw ex; + throw; } } }