更新现有共享云端硬盘的元数据,例如它的背景图像或主题。
共享云端硬盘支持组织而非个人用户拥有的文件。共享云端硬盘遵循与特定用户的 "My Drive" 不同的共享和所有权模型。共享云端硬盘是早期团队云端硬盘概念的继承者。了解有关 shared drives 的更多信息。
参数
- 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)
}
相关用法
- R googledrive shared_drive_rm 删除共享云端硬盘
- R googledrive shared_drive_get 按名称或 ID 获取共享云端硬盘
- R googledrive shared_drive_find 查找共享云端硬盘
- R googledrive shared_drive_create 创建新的共享云端硬盘
- R googledrive shortcut_resolve 解决目标的捷径
- R googledrive shortcut_create 创建云端硬盘文件的快捷方式
- R googledrive drive_cp 复制云端硬盘文件
- R googledrive drive_mime_type 查找 MIME 类型
- R googledrive drive_reveal 添加新的云端硬盘文件信息列
- R googledrive drive_rm 从云端硬盘删除文件
- R googledrive expose 暴露对象
- R googledrive drive_id 驱动器 ID 类
- R googledrive drive_auth_configure 编辑和查看身份验证配置
- R googledrive drive_upload 上传到新的云端硬盘文件
- R googledrive drive_mv 移动云端硬盘文件
- R googledrive drive_put 将新媒体放入云端硬盘文件中
- R googledrive drive_has_token 手上有令牌吗?
- R googledrive drive_user 获取当前用户的信息
- R googledrive drive_rename 重命名云端硬盘文件
- R googledrive drive_trash 将云端硬盘文件移入或移出回收站
- R googledrive as_dribble 强行运球
- R googledrive drive_share 共享云端硬盘文件
- R googledrive request_make 向 Google Drive v3 API 发出请求
- R googledrive drive_about 获取有关云端硬盘函数的信息
- R googledrive drive_update 更新现有云端硬盘文件
注:本文由纯净天空筛选整理自Jennifer Bryan等大神的英文原创作品 Update a shared drive。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。