Method: labels.updateLabelCopyMode
Updates a Label's CopyMode
. Changes to this policy are not revisioned, do not require publishing, and take effect immediately.
HTTP request
POST https://drivelabels.googleapis.com/v2beta/{name=labels/*}:updateLabelCopyMode
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters |
name |
string
Required. The resource name of the Label to update.
|
Request body
The request body contains data with the following structure:
JSON representation |
{
"copyMode": enum (CopyMode ),
"useAdminAccess": boolean,
"languageCode": string,
"view": enum (LabelView )
} |
Fields |
copyMode |
enum (CopyMode )
Required. Indicates how the applied Label, and Field values should be copied when a Drive item is copied.
|
useAdminAccess |
boolean
Set to true in order to use the user's admin credentials. The server will verify the user is an admin for the Label before allowing access.
|
languageCode |
string
The BCP-47 language code to use for evaluating localized field labels. When not specified, values in the default configured language will be used.
|
view |
enum (LabelView )
When specified, only certain fields belonging to the indicated view will be returned.
|
Response body
If successful, the response body contains an instance of Label
.
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/drive.labels
https://www.googleapis.com/auth/drive.admin.labels
For more information, see the Authorization guide.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-04 UTC.
[null,null,["Last updated 2024-09-04 UTC."],[[["Updates a Label's `CopyMode` with changes taking effect immediately and without requiring publishing."],["Utilizes an HTTP POST request to `https://drivelabels.googleapis.com/v2beta/{name=labels/*}:updateLabelCopyMode` to update the Label's CopyMode."],["Requires specifying the Label's resource name in the path parameter and providing details like `copyMode`, `useAdminAccess`, `languageCode`, and `view` in the request body."],["Upon successful execution, the response includes the updated Label details."],["Needs authorization with either `https://www.googleapis.com/auth/drive.labels` or `https://www.googleapis.com/auth/drive.admin.labels` scope."]]],["This document details updating a Label's `CopyMode` via a `POST` request to a specific URL (`https://drivelabels.googleapis.com/v2beta/{name=labels/*}:updateLabelCopyMode`). The request requires the Label's resource name as a path parameter. The request body, in JSON, includes the `copyMode` (required), optional `useAdminAccess`, `languageCode`, and `view` fields. Authorization requires `https://www.googleapis.com/auth/drive.labels` or `https://www.googleapis.com/auth/drive.admin.labels` scopes. A successful response returns a Label instance. Changes take effect immediately.\n"]]