當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R googledrive shared_drive_update 更新共享雲端硬盤


更新現有共享雲端硬盤的元數據,例如它的背景圖像或主題。

共享雲端硬盤支持組織而非個人用戶擁有的文件。共享雲端硬盤遵循與特定用戶的 "My Drive" 不同的共享和所有權模型。共享雲端硬盤是早期團隊雲端硬盤概念的繼承者。了解有關 shared drives 的更多信息。

用法

shared_drive_update(shared_drive, ...)

參數

shared_drive

標識一個特定共享驅動器的任何內容:其名稱、其 ID 或標有 as_id()dribble 的 URL。提供給 shared_drive 的值使用 as_shared_drive() 進行預處理。了解更多關於shared drives的信息。

...

name = value 形式設置的屬性。請參閱此端點的 Drive API 文檔的 "Request body" 部分。

dribble 類的對象,每個共享驅動器包含一行的 tibble。

也可以看看

例子

if (FALSE) {
# create a shared drive
sd <- shared_drive_create("I love themes!")

# see the themes available to you
themes <- drive_about()$driveThemes
purrr::map_chr(themes, "id")

# cycle through various themes for this shared drive
sd <- shared_drive_update(sd, themeId = "bok_choy")
sd <- shared_drive_update(sd, themeId = "cocktails")

# Clean up
shared_drive_rm(sd)
}

相關用法


注:本文由純淨天空篩選整理自Jennifer Bryan等大神的英文原創作品 Update a shared drive。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。