Returns a collection of document libraries for this site (a collection of Drive instances) :return: list of items in this folder :rtype: list[Drive] or Pagination
(self)
| 488 | return self.site_storage.get_drive(drive_id=drive_id) |
| 489 | |
| 490 | def list_document_libraries(self): |
| 491 | """ Returns a collection of document libraries for this site |
| 492 | (a collection of Drive instances) |
| 493 | :return: list of items in this folder |
| 494 | :rtype: list[Drive] or Pagination |
| 495 | """ |
| 496 | return self.site_storage.get_drives() |
| 497 | |
| 498 | def get_subsites(self): |
| 499 | """ Returns a list of subsites defined for this site |
nothing calls this directly
no test coverage detected