diff --git a/modules/storages/app/common/storages/adapters/providers/one_drive/queries/files_query.rb b/modules/storages/app/common/storages/adapters/providers/one_drive/queries/files_query.rb index ad4b305229a5..77ccfa6cdaea 100644 --- a/modules/storages/app/common/storages/adapters/providers/one_drive/queries/files_query.rb +++ b/modules/storages/app/common/storages/adapters/providers/one_drive/queries/files_query.rb @@ -34,7 +34,9 @@ module Providers module OneDrive module Queries class FilesQuery < Base - FIELDS = "?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference" + MAXIMUM = 1000 + FIELDS = "id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference" + QUERY = "?$top=#{MAXIMUM}&$select=#{FIELDS}".freeze def initialize(*) super @@ -45,7 +47,7 @@ def call(auth_strategy:, input_data:) with_tagged_logger do info "Getting data on all files under folder '#{input_data.folder}'" Authentication[auth_strategy].call(storage: @storage) do |http| - handle_response(http.get(children_url_for(input_data.folder) + FIELDS)).bind do |response| + handle_response(http.get(children_url_for(input_data.folder) + QUERY)).bind do |response| files = response.fetch(:value, []) return empty_response(http, input_data.folder) if files.empty? @@ -85,7 +87,7 @@ def storage_files(json_files) end def empty_response(http, folder) - handle_response(http.get(location_url_for(folder) + FIELDS)).bind do |response| + handle_response(http.get(location_url_for(folder) + QUERY)).bind do |response| empty_storage_files(folder.path, response[:id]) end end diff --git a/modules/storages/app/common/storages/adapters/providers/sharepoint/queries/internal/children_query.rb b/modules/storages/app/common/storages/adapters/providers/sharepoint/queries/internal/children_query.rb index 99272421ef9d..2940e1730de5 100644 --- a/modules/storages/app/common/storages/adapters/providers/sharepoint/queries/internal/children_query.rb +++ b/modules/storages/app/common/storages/adapters/providers/sharepoint/queries/internal/children_query.rb @@ -35,7 +35,9 @@ module Sharepoint module Queries module Internal class ChildrenQuery < Base - FIELDS = "?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference" + MAXIMUM = 1000 + FIELDS = "id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference" + QUERY = "?$top=#{MAXIMUM}&$select=#{FIELDS}".freeze def self.call(storage:, http:, drive_id:, location:) new(storage).call(drive_id:, http:, location:) @@ -47,7 +49,7 @@ def initialize(storage) end def call(http:, drive_id:, location:) - handle_response(http.get(request_uri(drive_id, location) + FIELDS)).bind do |json| + handle_response(http.get(request_uri(drive_id, location) + QUERY)).bind do |json| files = json.fetch(:value, []) return empty_response(http, drive_id, location) if files.empty? @@ -107,7 +109,7 @@ def parse_response(json) end def empty_response(http, drive_id, folder) - handle_response(http.get(folder_uri(drive_id, folder) + FIELDS)).bind do |json| + handle_response(http.get(folder_uri(drive_id, folder) + QUERY)).bind do |json| if folder.root? build_empty_root_folder(json) else diff --git a/modules/storages/spec/common/storages/adapters/network_error_spec.rb b/modules/storages/spec/common/storages/adapters/network_error_spec.rb index 5e23fdeaf85f..671b55483901 100644 --- a/modules/storages/spec/common/storages/adapters/network_error_spec.rb +++ b/modules/storages/spec/common/storages/adapters/network_error_spec.rb @@ -36,9 +36,12 @@ let(:user) { create(:user) } let(:storage) { create(:one_drive_sandbox_storage, oauth_client_token_user: user) } let(:fields) { Storages::Adapters::Providers::OneDrive::Queries::FilesQuery::FIELDS } - let(:request_url) { "https://graph.microsoft.com/v1.0/drives/#{storage.drive_id}/root/children#{fields}" } + let(:maximum) { Storages::Adapters::Providers::OneDrive::Queries::FilesQuery::MAXIMUM } let(:input_data) { Storages::Adapters::Input::Files.build(folder: "/").value! } let(:auth_strategy) { Storages::Adapters::Input::Strategy.build(key: :oauth_user_token, user:) } + let(:request_url) do + "https://graph.microsoft.com/v1.0/drives/#{storage.drive_id}/root/children?$top=#{maximum}&$select=#{fields}" + end context "if a timeout happens" do it "must return an error with wrapped network error response" do diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/copy_template_folder_setup.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/copy_template_folder_setup.yml index d5714e823247..67fdef3c3547 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/copy_template_folder_setup.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/copy_template_folder_setup.yml @@ -233,7 +233,7 @@ http_interactions: http_interactions: - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_empty_folder.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_empty_folder.yml index e164ed932c5e..511d063fda8e 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_empty_folder.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_empty_folder.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root:/Folder%20with%20spaces/very%20empty%20folder:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root:/Folder%20with%20spaces/very%20empty%20folder:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -45,7 +45,7 @@ http_interactions: recorded_at: Tue, 30 Jan 2024 11:55:59 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root:/Folder%20with%20spaces/very%20empty%20folder?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root:/Folder%20with%20spaces/very%20empty%20folder?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_invalid_parent.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_invalid_parent.yml index 716efecc1b28..d460385ebe6c 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_invalid_parent.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_invalid_parent.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root:/I/just/made/that/up:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root:/I/just/made/that/up:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_parent_folder.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_parent_folder.yml index 7f40606d74dc..759eb13a6c49 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_parent_folder.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_parent_folder.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root:/Folder/Subfolder:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root:/Folder/Subfolder:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_root.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_root.yml index a500ee6fccc0..5191c3f118e3 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_root.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_root.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_umlauts.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_umlauts.yml index 386255c17532..18fb9a7e97e1 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_umlauts.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_umlauts.yml @@ -2,7 +2,7 @@ http_interactions: - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root:/Folder/%C3%9Cml%C3%A6%C3%BBts:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root:/Folder/%C3%9Cml%C3%A6%C3%BBts:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_userless.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_userless.yml index f3baf965b52b..430482070229 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_userless.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/files_query_userless.yml @@ -66,7 +66,7 @@ http_interactions: recorded_at: Mon, 07 Apr 2025 12:13:34 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_admin_access.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_admin_access.yml index 8384b77136f9..c1d3dac0793d 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_admin_access.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_admin_access.yml @@ -59,7 +59,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:12:24 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -100,7 +100,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:12:24 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -863,7 +863,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:12:32 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1044,7 +1044,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:12:33 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1165,7 +1165,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:12:33 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_create_folder.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_create_folder.yml index dd72dc4680bb..2be26ccfeed4 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_create_folder.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_create_folder.yml @@ -59,7 +59,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 18:55:45 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -100,7 +100,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 18:55:45 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1181,7 +1181,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 18:55:57 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1234,7 +1234,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 18:55:57 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1287,7 +1287,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 18:55:57 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_creation_fail.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_creation_fail.yml index d6f403eab502..39cc966b5ff4 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_creation_fail.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_creation_fail.yml @@ -115,7 +115,7 @@ http_interactions: recorded_at: Thu, 25 Jul 2024 08:19:05 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_fail_add_user.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_fail_add_user.yml index 972dce22b915..df5e4f34bc63 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_fail_add_user.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_fail_add_user.yml @@ -59,7 +59,7 @@ http_interactions: recorded_at: Thu, 25 Jul 2024 09:03:10 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -100,7 +100,7 @@ http_interactions: recorded_at: Thu, 25 Jul 2024 09:03:11 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_hide_inactive.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_hide_inactive.yml index fc94468c95ba..a0c5f65a54fd 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_hide_inactive.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_hide_inactive.yml @@ -338,7 +338,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:08:46 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -511,7 +511,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:08:47 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1522,7 +1522,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:08:56 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_original_folders.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_original_folders.yml index 2a450d1e29f1..15762ae9b616 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_original_folders.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_original_folders.yml @@ -59,7 +59,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 18:41:16 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -100,7 +100,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 18:41:16 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_public_project.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_public_project.yml index 820a2092545e..ec9b00c84a36 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_public_project.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_public_project.yml @@ -59,7 +59,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:12:35 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -100,7 +100,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:12:36 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -863,7 +863,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:12:44 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_rename_failed.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_rename_failed.yml index 0d39549e35ad..a62af3acd325 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_rename_failed.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_rename_failed.yml @@ -171,7 +171,7 @@ http_interactions: recorded_at: Thu, 25 Jul 2024 08:53:14 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_rename_folder.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_rename_folder.yml index 0c25ea88e272..1ad3ee2bef18 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_rename_folder.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_rename_folder.yml @@ -115,7 +115,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 18:41:33 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1089,7 +1089,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 18:41:43 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_root_read_failure.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_root_read_failure.yml index 567c2a0df72e..50637eddecd2 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_root_read_failure.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_root_read_failure.yml @@ -59,7 +59,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:16:47 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/THIS-IS-NOT-A-DRIVE-ID/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/THIS-IS-NOT-A-DRIVE-ID/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_set_permissions.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_set_permissions.yml index fd5b00b8101d..efaa01234d0c 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_set_permissions.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/sync_service_set_permissions.yml @@ -115,7 +115,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:10:11 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -988,7 +988,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:10:21 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1173,7 +1173,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:10:22 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1298,7 +1298,7 @@ http_interactions: recorded_at: Wed, 24 Jul 2024 19:10:23 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2ODRDvn3haLiQIhB5UYNdqMy/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validation_drive_id_malformed.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validation_drive_id_malformed.yml index a5bd6d4b6174..9ccc0b2de946 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validation_drive_id_malformed.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validation_drive_id_malformed.yml @@ -66,7 +66,7 @@ http_interactions: recorded_at: Mon, 07 Apr 2025 13:55:35 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/not-a-drive-id/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/not-a-drive-id/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validation_drive_id_not_found.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validation_drive_id_not_found.yml index f8fc1b89e7bd..14ef05d9dad8 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validation_drive_id_not_found.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validation_drive_id_not_found.yml @@ -66,7 +66,7 @@ http_interactions: recorded_at: Mon, 07 Apr 2025 16:22:23 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPX0/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPX0/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_ampf_clean_run.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_ampf_clean_run.yml index 7f6acc9d71a0..52b3b6a4d19e 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_ampf_clean_run.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_ampf_clean_run.yml @@ -157,7 +157,7 @@ http_interactions: recorded_at: Tue, 08 Apr 2025 14:11:49 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -198,7 +198,7 @@ http_interactions: recorded_at: Tue, 08 Apr 2025 14:11:49 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_create_folder.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_create_folder.yml index c1ab5be5f5a9..e628b8824ffb 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_create_folder.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_create_folder.yml @@ -121,7 +121,7 @@ http_interactions: recorded_at: Tue, 08 Apr 2025 13:57:34 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_extraneous_files.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_extraneous_files.yml index 1108c4321af4..8de6d49ee6a5 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_extraneous_files.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_extraneous_files.yml @@ -157,7 +157,7 @@ http_interactions: recorded_at: Tue, 08 Apr 2025 14:04:35 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_test_folder_already_exists.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_test_folder_already_exists.yml index b561422fe574..71ac1d60bfc1 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_test_folder_already_exists.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/one_drive/validator_test_folder_already_exists.yml @@ -167,7 +167,7 @@ http_interactions: recorded_at: Wed, 09 Apr 2025 16:01:58 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!dmVLG22QlE2PSW0AqVB7UOhZ8n7tjkVGkgqLNnuw2OBb-brzKzZAR4DYT1k9KPXs/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/file_path_to_id_map_query_not_root_1_level.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/file_path_to_id_map_query_not_root_1_level.yml index c1d2cd2c28ed..1e7af2dc018c 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/file_path_to_id_map_query_not_root_1_level.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/file_path_to_id_map_query_not_root_1_level.yml @@ -116,7 +116,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 13:43:17 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -167,7 +167,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 13:43:17 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -218,7 +218,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 13:43:17 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123/Subfolder%20456:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123/Subfolder%20456:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -261,7 +261,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 13:43:17 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123/Subfolder%20456?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123/Subfolder%20456?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/file_path_to_id_map_query_not_root_2_level.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/file_path_to_id_map_query_not_root_2_level.yml index 4ae0256b8359..78204500c924 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/file_path_to_id_map_query_not_root_2_level.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/file_path_to_id_map_query_not_root_2_level.yml @@ -117,7 +117,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 13:43:19 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -168,7 +168,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 13:43:19 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123/Subfolder%20456:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123/Subfolder%20456:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -211,7 +211,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 13:43:19 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123/Subfolder%20456?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123/Subfolder%20456?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/file_path_to_id_map_query_root.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/file_path_to_id_map_query_root.yml index ffb17a17cf4a..e3ae9b8bdb49 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/file_path_to_id_map_query_root.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/file_path_to_id_map_query_root.yml @@ -113,7 +113,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 07:56:13 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -175,7 +175,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 07:56:21 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/data:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/data:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -222,7 +222,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 07:56:21 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/empty:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/empty:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -265,7 +265,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 07:56:22 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/empty?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/empty?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -311,7 +311,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 07:56:22 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/My%20New%20Folder:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/My%20New%20Folder:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -362,7 +362,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 07:56:22 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -413,7 +413,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 07:56:22 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/data/subfolder:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/data/subfolder:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -458,7 +458,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 07:56:22 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/My%20New%20Folder/Subfolder%20123:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/My%20New%20Folder/Subfolder%20123:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -509,7 +509,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 07:56:22 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -560,7 +560,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 07:56:23 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/My%20New%20Folder/Subfolder%20123/Subfolder%20456:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/My%20New%20Folder/Subfolder%20123/Subfolder%20456:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -603,7 +603,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 07:56:23 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/My%20New%20Folder/Subfolder%20123/Subfolder%20456?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/My%20New%20Folder/Subfolder%20123/Subfolder%20456?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -650,7 +650,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 07:56:23 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123/Subfolder%20456:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123/Subfolder%20456:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -693,7 +693,7 @@ http_interactions: recorded_at: Thu, 09 Oct 2025 07:56:23 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123/Subfolder%20456?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/Test%20Project%20Folder%20Copy%20Folder/Subfolder%20123/Subfolder%20456?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_collection_site_folder_same_name.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_collection_site_folder_same_name.yml index 58cc236f58ff..34f4e77744f0 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_collection_site_folder_same_name.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_collection_site_folder_same_name.yml @@ -161,7 +161,7 @@ http_interactions: recorded_at: Thu, 05 Mar 2026 15:10:08 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-RloFm2McZQLb2zll_ZhN-/root:/OPTest:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-RloFm2McZQLb2zll_ZhN-/root:/OPTest:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_collection_site_same_name.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_collection_site_same_name.yml index 847e711fbbee..478b9bd3167f 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_collection_site_same_name.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_collection_site_same_name.yml @@ -161,7 +161,7 @@ http_interactions: recorded_at: Thu, 05 Mar 2026 14:53:59 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-RloFm2McZQLb2zll_ZhN-/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-RloFm2McZQLb2zll_ZhN-/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_drive.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_drive.yml index b588a1d69d7b..49f72a11283d 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_drive.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_drive.yml @@ -146,7 +146,7 @@ http_interactions: recorded_at: Fri, 08 Aug 2025 09:48:20 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_empty_drive.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_empty_drive.yml index ba2be64a65b2..a077cfcc0fd7 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_empty_drive.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_empty_drive.yml @@ -146,7 +146,7 @@ http_interactions: recorded_at: Fri, 08 Aug 2025 10:35:12 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY8Pmdpc8mQ1QJkyIbbWQJol/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY8Pmdpc8mQ1QJkyIbbWQJol/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -189,7 +189,7 @@ http_interactions: recorded_at: Fri, 08 Aug 2025 10:35:12 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY8Pmdpc8mQ1QJkyIbbWQJol/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY8Pmdpc8mQ1QJkyIbbWQJol/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_empty_folder.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_empty_folder.yml index 9b30aea3e89f..f5f80b6d830c 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_empty_folder.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_empty_folder.yml @@ -146,7 +146,7 @@ http_interactions: recorded_at: Fri, 08 Aug 2025 09:54:48 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/empty:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/empty:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -189,7 +189,7 @@ http_interactions: recorded_at: Fri, 08 Aug 2025 09:54:48 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/empty?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/empty?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_file_not_found.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_file_not_found.yml index 9cd82ebe67a6..7ea1dc3ee03d 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_file_not_found.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_file_not_found.yml @@ -146,7 +146,7 @@ http_interactions: recorded_at: Fri, 08 Aug 2025 09:55:32 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/POTATO:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/POTATO:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_folder.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_folder.yml index 23ecabc781f9..b890ad138eaa 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_folder.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_folder.yml @@ -146,7 +146,7 @@ http_interactions: recorded_at: Fri, 08 Aug 2025 09:54:03 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/data:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/data:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_sub_folder.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_sub_folder.yml index 8be9b251273e..5bcb2a29b8cb 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_sub_folder.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/files_query_sub_folder.yml @@ -146,7 +146,7 @@ http_interactions: recorded_at: Wed, 10 Sep 2025 13:16:41 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/%C3%9Cml%C3%A6%C3%BBts/data:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY9jo6leJDqrT7muzvmiWjFW/root:/%C3%9Cml%C3%A6%C3%BBts/data:/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_admin_all_access.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_admin_all_access.yml index b5479fef5853..5427f7224d66 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_admin_all_access.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_admin_all_access.yml @@ -150,7 +150,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:21:37 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -193,7 +193,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:21:37 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1055,7 +1055,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:21:44 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1259,7 +1259,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:21:45 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1460,7 +1460,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:21:46 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_invalid_user.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_invalid_user.yml index f67fa7deca68..90bd35b62391 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_invalid_user.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_invalid_user.yml @@ -150,7 +150,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:23:52 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -193,7 +193,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:23:52 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_multi_user_project.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_multi_user_project.yml index 1c2875a1ace7..1c4af1453c0e 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_multi_user_project.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_multi_user_project.yml @@ -150,7 +150,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:08:05 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -193,7 +193,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:08:05 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1055,7 +1055,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:08:12 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_project_storage_scoped.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_project_storage_scoped.yml index 809457f6d85b..2c326321dfd9 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_project_storage_scoped.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_project_storage_scoped.yml @@ -150,7 +150,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:13:12 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -193,7 +193,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:13:12 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -662,7 +662,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:13:16 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -866,7 +866,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 15:13:17 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_public_project.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_public_project.yml index 22253d4ced82..4164c83319b3 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_public_project.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_public_project.yml @@ -150,7 +150,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 14:59:11 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -193,7 +193,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 14:59:11 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1055,7 +1055,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 14:59:17 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_single_user_project.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_single_user_project.yml index 01bbe552b339..060e8acd8760 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_single_user_project.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/set_permissions_service_single_user_project.yml @@ -150,7 +150,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 14:58:07 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -193,7 +193,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 14:58:07 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1055,7 +1055,7 @@ http_interactions: recorded_at: Thu, 06 Nov 2025 14:58:13 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_create_folder.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_create_folder.yml index 2670f980c929..405afbfb6cb6 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_create_folder.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_create_folder.yml @@ -153,7 +153,7 @@ http_interactions: recorded_at: Mon, 20 Oct 2025 17:26:03 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -196,7 +196,7 @@ http_interactions: recorded_at: Mon, 20 Oct 2025 17:26:03 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -496,7 +496,7 @@ http_interactions: recorded_at: Mon, 20 Oct 2025 17:26:05 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -634,7 +634,7 @@ http_interactions: recorded_at: Mon, 20 Oct 2025 17:26:05 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -772,7 +772,7 @@ http_interactions: recorded_at: Mon, 20 Oct 2025 17:26:06 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_creation_fail.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_creation_fail.yml index 255c923d3e2b..5ba353e17565 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_creation_fail.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_creation_fail.yml @@ -207,7 +207,7 @@ http_interactions: recorded_at: Wed, 22 Oct 2025 14:10:29 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_hide_inactive.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_hide_inactive.yml index c53b9e9ab6ca..79b539db36ec 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_hide_inactive.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_hide_inactive.yml @@ -438,7 +438,7 @@ http_interactions: recorded_at: Mon, 20 Oct 2025 17:26:49 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -633,7 +633,7 @@ http_interactions: recorded_at: Mon, 20 Oct 2025 17:26:50 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -1184,7 +1184,7 @@ http_interactions: recorded_at: Mon, 20 Oct 2025 17:26:54 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_original_folders.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_original_folders.yml index f30bec42b7ed..6e902f713079 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_original_folders.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_original_folders.yml @@ -153,7 +153,7 @@ http_interactions: recorded_at: Mon, 20 Oct 2025 14:50:14 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -196,7 +196,7 @@ http_interactions: recorded_at: Mon, 20 Oct 2025 14:50:14 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_rename_failed.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_rename_failed.yml index 4bcd04b2e933..9a17bca2e0c0 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_rename_failed.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_rename_failed.yml @@ -265,7 +265,7 @@ http_interactions: recorded_at: Thu, 23 Oct 2025 08:37:23 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_rename_folder.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_rename_folder.yml index dc84f8fd08cc..a9e4c91d0c95 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_rename_folder.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/sync_service_rename_folder.yml @@ -211,7 +211,7 @@ http_interactions: recorded_at: Mon, 20 Oct 2025 17:26:22 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -510,7 +510,7 @@ http_interactions: recorded_at: Mon, 20 Oct 2025 17:26:24 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_ampf_clean_run.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_ampf_clean_run.yml index 93ff1a22b332..88b93cb978d5 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_ampf_clean_run.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_ampf_clean_run.yml @@ -245,7 +245,7 @@ http_interactions: recorded_at: Tue, 18 Nov 2025 16:21:38 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' @@ -288,7 +288,7 @@ http_interactions: recorded_at: Tue, 18 Nov 2025 16:21:39 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_create_folder.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_create_folder.yml index ff2edb996b9e..f96a13098b31 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_create_folder.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_create_folder.yml @@ -207,7 +207,7 @@ http_interactions: recorded_at: Tue, 18 Nov 2025 16:23:26 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_extraneous_files.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_extraneous_files.yml index bf3950affc26..778cefbebf7d 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_extraneous_files.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_extraneous_files.yml @@ -245,7 +245,7 @@ http_interactions: recorded_at: Tue, 18 Nov 2025 16:26:05 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: '' diff --git a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_test_folder_already_exists.yml b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_test_folder_already_exists.yml index c9cfe8121c96..91daf9e2e9cd 100644 --- a/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_test_folder_already_exists.yml +++ b/modules/storages/spec/support/fixtures/vcr_cassettes/sharepoint/validator_test_folder_already_exists.yml @@ -255,7 +255,7 @@ http_interactions: recorded_at: Tue, 18 Nov 2025 16:29:02 GMT - request: method: get - uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference + uri: https://graph.microsoft.com/v1.0/drives/b!FeOZEMfQx0eGQKqVBLcP__BG8mq-4-9FuRqOyk3MXY-uqLcDyJy5Rp1j0luD0b1v/root/children?$select=id,name,size,webUrl,lastModifiedBy,createdBy,fileSystemInfo,file,folder,parentReference&$top=1000 body: encoding: US-ASCII string: ''