Regen all docs. (#700)
* Stop recursing if discovery == {}
* Generate docs with 'make docs'.
diff --git a/docs/dyn/drive_v2.permissions.html b/docs/dyn/drive_v2.permissions.html
index a72ca7c..3ce72a4 100644
--- a/docs/dyn/drive_v2.permissions.html
+++ b/docs/dyn/drive_v2.permissions.html
@@ -75,49 +75,53 @@
<h1><a href="drive_v2.html">Drive API</a> . <a href="drive_v2.permissions.html">permissions</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
- <code><a href="#delete">delete(fileId, permissionId, supportsTeamDrives=None)</a></code></p>
-<p class="firstline">Deletes a permission from a file or Team Drive.</p>
+ <code><a href="#delete">delete(fileId, permissionId, supportsTeamDrives=None, supportsAllDrives=None, useDomainAdminAccess=None)</a></code></p>
+<p class="firstline">Deletes a permission from a file or shared drive.</p>
<p class="toc_element">
- <code><a href="#get">get(fileId, permissionId, supportsTeamDrives=None)</a></code></p>
+ <code><a href="#get">get(fileId, permissionId, supportsTeamDrives=None, supportsAllDrives=None, useDomainAdminAccess=None)</a></code></p>
<p class="firstline">Gets a permission by ID.</p>
<p class="toc_element">
<code><a href="#getIdForEmail">getIdForEmail(email)</a></code></p>
<p class="firstline">Returns the permission ID for an email address.</p>
<p class="toc_element">
- <code><a href="#insert">insert(fileId, body, supportsTeamDrives=None, sendNotificationEmails=None, emailMessage=None)</a></code></p>
-<p class="firstline">Inserts a permission for a file or Team Drive.</p>
+ <code><a href="#insert">insert(fileId, body, supportsTeamDrives=None, supportsAllDrives=None, sendNotificationEmails=None, emailMessage=None, useDomainAdminAccess=None)</a></code></p>
+<p class="firstline">Inserts a permission for a file or shared drive.</p>
<p class="toc_element">
- <code><a href="#list">list(fileId, pageToken=None, supportsTeamDrives=None, maxResults=None)</a></code></p>
-<p class="firstline">Lists a file's or Team Drive's permissions.</p>
+ <code><a href="#list">list(fileId, pageToken=None, supportsTeamDrives=None, supportsAllDrives=None, useDomainAdminAccess=None, maxResults=None)</a></code></p>
+<p class="firstline">Lists a file's or shared drive's permissions.</p>
<p class="toc_element">
<code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<p class="toc_element">
- <code><a href="#patch">patch(fileId, permissionId, body, removeExpiration=None, supportsTeamDrives=None, transferOwnership=None)</a></code></p>
+ <code><a href="#patch">patch(fileId, permissionId, body, removeExpiration=None, supportsTeamDrives=None, supportsAllDrives=None, useDomainAdminAccess=None, transferOwnership=None)</a></code></p>
<p class="firstline">Updates a permission using patch semantics.</p>
<p class="toc_element">
- <code><a href="#update">update(fileId, permissionId, body, removeExpiration=None, supportsTeamDrives=None, transferOwnership=None)</a></code></p>
+ <code><a href="#update">update(fileId, permissionId, body, removeExpiration=None, supportsTeamDrives=None, supportsAllDrives=None, useDomainAdminAccess=None, transferOwnership=None)</a></code></p>
<p class="firstline">Updates a permission.</p>
<h3>Method Details</h3>
<div class="method">
- <code class="details" id="delete">delete(fileId, permissionId, supportsTeamDrives=None)</code>
- <pre>Deletes a permission from a file or Team Drive.
+ <code class="details" id="delete">delete(fileId, permissionId, supportsTeamDrives=None, supportsAllDrives=None, useDomainAdminAccess=None)</code>
+ <pre>Deletes a permission from a file or shared drive.
Args:
- fileId: string, The ID for the file or Team Drive. (required)
+ fileId: string, The ID for the file or shared drive. (required)
permissionId: string, The ID for the permission. (required)
- supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
+ supportsTeamDrives: boolean, Deprecated use supportsAllDrives instead.
+ supportsAllDrives: boolean, Deprecated - Whether the requesting application supports both My Drives and shared drives. This parameter will only be effective until June 1, 2020. Afterwards all applications are assumed to support shared drives.
+ useDomainAdminAccess: boolean, Issue the request as a domain administrator; if set to true, then the requester will be granted access if the file ID parameter refers to a shared drive and the requester is an administrator of the domain to which the shared drive belongs.
</pre>
</div>
<div class="method">
- <code class="details" id="get">get(fileId, permissionId, supportsTeamDrives=None)</code>
+ <code class="details" id="get">get(fileId, permissionId, supportsTeamDrives=None, supportsAllDrives=None, useDomainAdminAccess=None)</code>
<pre>Gets a permission by ID.
Args:
- fileId: string, The ID for the file or Team Drive. (required)
+ fileId: string, The ID for the file or shared drive. (required)
permissionId: string, The ID for the permission. (required)
- supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
+ supportsTeamDrives: boolean, Deprecated use supportsAllDrives instead.
+ supportsAllDrives: boolean, Deprecated - Whether the requesting application supports both My Drives and shared drives. This parameter will only be effective until June 1, 2020. Afterwards all applications are assumed to support shared drives.
+ useDomainAdminAccess: boolean, Issue the request as a domain administrator; if set to true, then the requester will be granted access if the file ID parameter refers to a shared drive and the requester is an administrator of the domain to which the shared drive belongs.
Returns:
An object of the form:
@@ -125,40 +129,53 @@
{ # A permission for a file.
"withLink": True or False, # Whether the link is required for this permission.
"domain": "A String", # The domain name of the entity this permission refers to. This is an output-only field which is present when the permission type is user, group or domain.
- "name": "A String", # The name for this permission.
- "teamDrivePermissionDetails": [ # Details of whether the permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+ "permissionDetails": [ # Details of whether the permissions on this shared drive item are inherited or directly on this item. This is an output-only field which is present only for shared drive items.
{
- "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
"role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
# - organizer
- # - reader
+ # - fileOrganizer
# - writer
+ # - reader
+ "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the shared drive.
+ "permissionType": "A String", # The permission type for this user. While new values may be added in future, the following are currently possible:
+ # - file
+ # - member
"additionalRoles": [ # Additional roles for this user. Only commenter is currently possible, though more may be supported in the future.
"A String",
],
- "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
- # - file
- # - member
"inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
},
],
+ "name": "A String", # The name for this permission.
+ "teamDrivePermissionDetails": [ # Deprecated - use permissionDetails instead.
+ {
+ "inheritedFrom": "A String", # Deprecated - use permissionDetails/inheritedFrom instead.
+ "role": "A String", # Deprecated - use permissionDetails/role instead.
+ "additionalRoles": [ # Deprecated - use permissionDetails/additionalRoles instead.
+ "A String",
+ ],
+ "teamDrivePermissionType": "A String", # Deprecated - use permissionDetails/permissionType instead.
+ "inherited": True or False, # Deprecated - use permissionDetails/inherited instead.
+ },
+ ],
"deleted": True or False, # Whether the account associated with this permission has been deleted. This field only pertains to user and group permissions.
"kind": "drive#permission", # This is always drive#permission.
"value": "A String", # The email address or domain name for the entity. This is used during inserts and is not populated in responses. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
"id": "A String", # The ID of the user this permission refers to, and identical to the permissionId in the About and Files resources. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
- "authKey": "A String", # The authkey parameter required for this permission.
+ "authKey": "A String", # Deprecated.
"etag": "A String", # The ETag of the permission.
"emailAddress": "A String", # The email address of the user or group this permission refers to. This is an output-only field which is present when the permission type is user or group.
"expirationDate": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration dates have the following restrictions:
# - They can only be set on user and group permissions
# - The date must be in the future
# - The date cannot be more than a year in the future
- # - The date can only be set on drive.permissions.update requests
+ # - The date can only be set on drive.permissions.update or drive.permissions.patch requests
"role": "A String", # The primary role for this user. While new values may be supported in the future, the following are currently allowed:
- # - organizer
# - owner
- # - reader
+ # - organizer
+ # - fileOrganizer
# - writer
+ # - reader
"type": "A String", # The account type. Allowed values are:
# - user
# - group
@@ -189,51 +206,64 @@
</div>
<div class="method">
- <code class="details" id="insert">insert(fileId, body, supportsTeamDrives=None, sendNotificationEmails=None, emailMessage=None)</code>
- <pre>Inserts a permission for a file or Team Drive.
+ <code class="details" id="insert">insert(fileId, body, supportsTeamDrives=None, supportsAllDrives=None, sendNotificationEmails=None, emailMessage=None, useDomainAdminAccess=None)</code>
+ <pre>Inserts a permission for a file or shared drive.
Args:
- fileId: string, The ID for the file or Team Drive. (required)
+ fileId: string, The ID for the file or shared drive. (required)
body: object, The request body. (required)
The object takes the form of:
{ # A permission for a file.
"withLink": True or False, # Whether the link is required for this permission.
"domain": "A String", # The domain name of the entity this permission refers to. This is an output-only field which is present when the permission type is user, group or domain.
- "name": "A String", # The name for this permission.
- "teamDrivePermissionDetails": [ # Details of whether the permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+ "permissionDetails": [ # Details of whether the permissions on this shared drive item are inherited or directly on this item. This is an output-only field which is present only for shared drive items.
{
- "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
"role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
# - organizer
- # - reader
+ # - fileOrganizer
# - writer
+ # - reader
+ "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the shared drive.
+ "permissionType": "A String", # The permission type for this user. While new values may be added in future, the following are currently possible:
+ # - file
+ # - member
"additionalRoles": [ # Additional roles for this user. Only commenter is currently possible, though more may be supported in the future.
"A String",
],
- "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
- # - file
- # - member
"inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
},
],
+ "name": "A String", # The name for this permission.
+ "teamDrivePermissionDetails": [ # Deprecated - use permissionDetails instead.
+ {
+ "inheritedFrom": "A String", # Deprecated - use permissionDetails/inheritedFrom instead.
+ "role": "A String", # Deprecated - use permissionDetails/role instead.
+ "additionalRoles": [ # Deprecated - use permissionDetails/additionalRoles instead.
+ "A String",
+ ],
+ "teamDrivePermissionType": "A String", # Deprecated - use permissionDetails/permissionType instead.
+ "inherited": True or False, # Deprecated - use permissionDetails/inherited instead.
+ },
+ ],
"deleted": True or False, # Whether the account associated with this permission has been deleted. This field only pertains to user and group permissions.
"kind": "drive#permission", # This is always drive#permission.
"value": "A String", # The email address or domain name for the entity. This is used during inserts and is not populated in responses. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
"id": "A String", # The ID of the user this permission refers to, and identical to the permissionId in the About and Files resources. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
- "authKey": "A String", # The authkey parameter required for this permission.
+ "authKey": "A String", # Deprecated.
"etag": "A String", # The ETag of the permission.
"emailAddress": "A String", # The email address of the user or group this permission refers to. This is an output-only field which is present when the permission type is user or group.
"expirationDate": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration dates have the following restrictions:
# - They can only be set on user and group permissions
# - The date must be in the future
# - The date cannot be more than a year in the future
- # - The date can only be set on drive.permissions.update requests
+ # - The date can only be set on drive.permissions.update or drive.permissions.patch requests
"role": "A String", # The primary role for this user. While new values may be supported in the future, the following are currently allowed:
- # - organizer
# - owner
- # - reader
+ # - organizer
+ # - fileOrganizer
# - writer
+ # - reader
"type": "A String", # The account type. Allowed values are:
# - user
# - group
@@ -246,9 +276,11 @@
"photoLink": "A String", # A link to the profile photo, if available.
}
- supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
+ supportsTeamDrives: boolean, Deprecated use supportsAllDrives instead.
+ supportsAllDrives: boolean, Deprecated - Whether the requesting application supports both My Drives and shared drives. This parameter will only be effective until June 1, 2020. Afterwards all applications are assumed to support shared drives.
sendNotificationEmails: boolean, Whether to send notification emails when sharing to users or groups. This parameter is ignored and an email is sent if the role is owner.
- emailMessage: string, A custom message to include in notification emails.
+ emailMessage: string, A plain text custom message to include in notification emails.
+ useDomainAdminAccess: boolean, Issue the request as a domain administrator; if set to true, then the requester will be granted access if the file ID parameter refers to a shared drive and the requester is an administrator of the domain to which the shared drive belongs.
Returns:
An object of the form:
@@ -256,40 +288,53 @@
{ # A permission for a file.
"withLink": True or False, # Whether the link is required for this permission.
"domain": "A String", # The domain name of the entity this permission refers to. This is an output-only field which is present when the permission type is user, group or domain.
- "name": "A String", # The name for this permission.
- "teamDrivePermissionDetails": [ # Details of whether the permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+ "permissionDetails": [ # Details of whether the permissions on this shared drive item are inherited or directly on this item. This is an output-only field which is present only for shared drive items.
{
- "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
"role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
# - organizer
- # - reader
+ # - fileOrganizer
# - writer
+ # - reader
+ "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the shared drive.
+ "permissionType": "A String", # The permission type for this user. While new values may be added in future, the following are currently possible:
+ # - file
+ # - member
"additionalRoles": [ # Additional roles for this user. Only commenter is currently possible, though more may be supported in the future.
"A String",
],
- "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
- # - file
- # - member
"inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
},
],
+ "name": "A String", # The name for this permission.
+ "teamDrivePermissionDetails": [ # Deprecated - use permissionDetails instead.
+ {
+ "inheritedFrom": "A String", # Deprecated - use permissionDetails/inheritedFrom instead.
+ "role": "A String", # Deprecated - use permissionDetails/role instead.
+ "additionalRoles": [ # Deprecated - use permissionDetails/additionalRoles instead.
+ "A String",
+ ],
+ "teamDrivePermissionType": "A String", # Deprecated - use permissionDetails/permissionType instead.
+ "inherited": True or False, # Deprecated - use permissionDetails/inherited instead.
+ },
+ ],
"deleted": True or False, # Whether the account associated with this permission has been deleted. This field only pertains to user and group permissions.
"kind": "drive#permission", # This is always drive#permission.
"value": "A String", # The email address or domain name for the entity. This is used during inserts and is not populated in responses. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
"id": "A String", # The ID of the user this permission refers to, and identical to the permissionId in the About and Files resources. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
- "authKey": "A String", # The authkey parameter required for this permission.
+ "authKey": "A String", # Deprecated.
"etag": "A String", # The ETag of the permission.
"emailAddress": "A String", # The email address of the user or group this permission refers to. This is an output-only field which is present when the permission type is user or group.
"expirationDate": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration dates have the following restrictions:
# - They can only be set on user and group permissions
# - The date must be in the future
# - The date cannot be more than a year in the future
- # - The date can only be set on drive.permissions.update requests
+ # - The date can only be set on drive.permissions.update or drive.permissions.patch requests
"role": "A String", # The primary role for this user. While new values may be supported in the future, the following are currently allowed:
- # - organizer
# - owner
- # - reader
+ # - organizer
+ # - fileOrganizer
# - writer
+ # - reader
"type": "A String", # The account type. Allowed values are:
# - user
# - group
@@ -304,14 +349,16 @@
</div>
<div class="method">
- <code class="details" id="list">list(fileId, pageToken=None, supportsTeamDrives=None, maxResults=None)</code>
- <pre>Lists a file's or Team Drive's permissions.
+ <code class="details" id="list">list(fileId, pageToken=None, supportsTeamDrives=None, supportsAllDrives=None, useDomainAdminAccess=None, maxResults=None)</code>
+ <pre>Lists a file's or shared drive's permissions.
Args:
- fileId: string, The ID for the file or Team Drive. (required)
+ fileId: string, The ID for the file or shared drive. (required)
pageToken: string, The token for continuing a previous list request on the next page. This should be set to the value of 'nextPageToken' from the previous response.
- supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
- maxResults: integer, The maximum number of permissions to return per page. When not set for files in a Team Drive, at most 100 results will be returned. When not set for files that are not in a Team Drive, the entire list will be returned.
+ supportsTeamDrives: boolean, Deprecated use supportsAllDrives instead.
+ supportsAllDrives: boolean, Deprecated - Whether the requesting application supports both My Drives and shared drives. This parameter will only be effective until June 1, 2020. Afterwards all applications are assumed to support shared drives.
+ useDomainAdminAccess: boolean, Issue the request as a domain administrator; if set to true, then the requester will be granted access if the file ID parameter refers to a shared drive and the requester is an administrator of the domain to which the shared drive belongs.
+ maxResults: integer, The maximum number of permissions to return per page. When not set for files in a shared drive, at most 100 results will be returned. When not set for files that are not in a shared drive, the entire list will be returned.
Returns:
An object of the form:
@@ -322,40 +369,53 @@
{ # A permission for a file.
"withLink": True or False, # Whether the link is required for this permission.
"domain": "A String", # The domain name of the entity this permission refers to. This is an output-only field which is present when the permission type is user, group or domain.
- "name": "A String", # The name for this permission.
- "teamDrivePermissionDetails": [ # Details of whether the permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+ "permissionDetails": [ # Details of whether the permissions on this shared drive item are inherited or directly on this item. This is an output-only field which is present only for shared drive items.
{
- "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
"role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
# - organizer
- # - reader
+ # - fileOrganizer
# - writer
+ # - reader
+ "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the shared drive.
+ "permissionType": "A String", # The permission type for this user. While new values may be added in future, the following are currently possible:
+ # - file
+ # - member
"additionalRoles": [ # Additional roles for this user. Only commenter is currently possible, though more may be supported in the future.
"A String",
],
- "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
- # - file
- # - member
"inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
},
],
+ "name": "A String", # The name for this permission.
+ "teamDrivePermissionDetails": [ # Deprecated - use permissionDetails instead.
+ {
+ "inheritedFrom": "A String", # Deprecated - use permissionDetails/inheritedFrom instead.
+ "role": "A String", # Deprecated - use permissionDetails/role instead.
+ "additionalRoles": [ # Deprecated - use permissionDetails/additionalRoles instead.
+ "A String",
+ ],
+ "teamDrivePermissionType": "A String", # Deprecated - use permissionDetails/permissionType instead.
+ "inherited": True or False, # Deprecated - use permissionDetails/inherited instead.
+ },
+ ],
"deleted": True or False, # Whether the account associated with this permission has been deleted. This field only pertains to user and group permissions.
"kind": "drive#permission", # This is always drive#permission.
"value": "A String", # The email address or domain name for the entity. This is used during inserts and is not populated in responses. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
"id": "A String", # The ID of the user this permission refers to, and identical to the permissionId in the About and Files resources. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
- "authKey": "A String", # The authkey parameter required for this permission.
+ "authKey": "A String", # Deprecated.
"etag": "A String", # The ETag of the permission.
"emailAddress": "A String", # The email address of the user or group this permission refers to. This is an output-only field which is present when the permission type is user or group.
"expirationDate": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration dates have the following restrictions:
# - They can only be set on user and group permissions
# - The date must be in the future
# - The date cannot be more than a year in the future
- # - The date can only be set on drive.permissions.update requests
+ # - The date can only be set on drive.permissions.update or drive.permissions.patch requests
"role": "A String", # The primary role for this user. While new values may be supported in the future, the following are currently allowed:
- # - organizer
# - owner
- # - reader
+ # - organizer
+ # - fileOrganizer
# - writer
+ # - reader
"type": "A String", # The account type. Allowed values are:
# - user
# - group
@@ -389,11 +449,11 @@
</div>
<div class="method">
- <code class="details" id="patch">patch(fileId, permissionId, body, removeExpiration=None, supportsTeamDrives=None, transferOwnership=None)</code>
+ <code class="details" id="patch">patch(fileId, permissionId, body, removeExpiration=None, supportsTeamDrives=None, supportsAllDrives=None, useDomainAdminAccess=None, transferOwnership=None)</code>
<pre>Updates a permission using patch semantics.
Args:
- fileId: string, The ID for the file or Team Drive. (required)
+ fileId: string, The ID for the file or shared drive. (required)
permissionId: string, The ID for the permission. (required)
body: object, The request body. (required)
The object takes the form of:
@@ -401,40 +461,53 @@
{ # A permission for a file.
"withLink": True or False, # Whether the link is required for this permission.
"domain": "A String", # The domain name of the entity this permission refers to. This is an output-only field which is present when the permission type is user, group or domain.
- "name": "A String", # The name for this permission.
- "teamDrivePermissionDetails": [ # Details of whether the permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+ "permissionDetails": [ # Details of whether the permissions on this shared drive item are inherited or directly on this item. This is an output-only field which is present only for shared drive items.
{
- "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
"role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
# - organizer
- # - reader
+ # - fileOrganizer
# - writer
+ # - reader
+ "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the shared drive.
+ "permissionType": "A String", # The permission type for this user. While new values may be added in future, the following are currently possible:
+ # - file
+ # - member
"additionalRoles": [ # Additional roles for this user. Only commenter is currently possible, though more may be supported in the future.
"A String",
],
- "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
- # - file
- # - member
"inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
},
],
+ "name": "A String", # The name for this permission.
+ "teamDrivePermissionDetails": [ # Deprecated - use permissionDetails instead.
+ {
+ "inheritedFrom": "A String", # Deprecated - use permissionDetails/inheritedFrom instead.
+ "role": "A String", # Deprecated - use permissionDetails/role instead.
+ "additionalRoles": [ # Deprecated - use permissionDetails/additionalRoles instead.
+ "A String",
+ ],
+ "teamDrivePermissionType": "A String", # Deprecated - use permissionDetails/permissionType instead.
+ "inherited": True or False, # Deprecated - use permissionDetails/inherited instead.
+ },
+ ],
"deleted": True or False, # Whether the account associated with this permission has been deleted. This field only pertains to user and group permissions.
"kind": "drive#permission", # This is always drive#permission.
"value": "A String", # The email address or domain name for the entity. This is used during inserts and is not populated in responses. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
"id": "A String", # The ID of the user this permission refers to, and identical to the permissionId in the About and Files resources. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
- "authKey": "A String", # The authkey parameter required for this permission.
+ "authKey": "A String", # Deprecated.
"etag": "A String", # The ETag of the permission.
"emailAddress": "A String", # The email address of the user or group this permission refers to. This is an output-only field which is present when the permission type is user or group.
"expirationDate": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration dates have the following restrictions:
# - They can only be set on user and group permissions
# - The date must be in the future
# - The date cannot be more than a year in the future
- # - The date can only be set on drive.permissions.update requests
+ # - The date can only be set on drive.permissions.update or drive.permissions.patch requests
"role": "A String", # The primary role for this user. While new values may be supported in the future, the following are currently allowed:
- # - organizer
# - owner
- # - reader
+ # - organizer
+ # - fileOrganizer
# - writer
+ # - reader
"type": "A String", # The account type. Allowed values are:
# - user
# - group
@@ -448,7 +521,9 @@
}
removeExpiration: boolean, Whether to remove the expiration date.
- supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
+ supportsTeamDrives: boolean, Deprecated use supportsAllDrives instead.
+ supportsAllDrives: boolean, Deprecated - Whether the requesting application supports both My Drives and shared drives. This parameter will only be effective until June 1, 2020. Afterwards all applications are assumed to support shared drives.
+ useDomainAdminAccess: boolean, Issue the request as a domain administrator; if set to true, then the requester will be granted access if the file ID parameter refers to a shared drive and the requester is an administrator of the domain to which the shared drive belongs.
transferOwnership: boolean, Whether changing a role to 'owner' downgrades the current owners to writers. Does nothing if the specified role is not 'owner'.
Returns:
@@ -457,40 +532,53 @@
{ # A permission for a file.
"withLink": True or False, # Whether the link is required for this permission.
"domain": "A String", # The domain name of the entity this permission refers to. This is an output-only field which is present when the permission type is user, group or domain.
- "name": "A String", # The name for this permission.
- "teamDrivePermissionDetails": [ # Details of whether the permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+ "permissionDetails": [ # Details of whether the permissions on this shared drive item are inherited or directly on this item. This is an output-only field which is present only for shared drive items.
{
- "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
"role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
# - organizer
- # - reader
+ # - fileOrganizer
# - writer
+ # - reader
+ "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the shared drive.
+ "permissionType": "A String", # The permission type for this user. While new values may be added in future, the following are currently possible:
+ # - file
+ # - member
"additionalRoles": [ # Additional roles for this user. Only commenter is currently possible, though more may be supported in the future.
"A String",
],
- "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
- # - file
- # - member
"inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
},
],
+ "name": "A String", # The name for this permission.
+ "teamDrivePermissionDetails": [ # Deprecated - use permissionDetails instead.
+ {
+ "inheritedFrom": "A String", # Deprecated - use permissionDetails/inheritedFrom instead.
+ "role": "A String", # Deprecated - use permissionDetails/role instead.
+ "additionalRoles": [ # Deprecated - use permissionDetails/additionalRoles instead.
+ "A String",
+ ],
+ "teamDrivePermissionType": "A String", # Deprecated - use permissionDetails/permissionType instead.
+ "inherited": True or False, # Deprecated - use permissionDetails/inherited instead.
+ },
+ ],
"deleted": True or False, # Whether the account associated with this permission has been deleted. This field only pertains to user and group permissions.
"kind": "drive#permission", # This is always drive#permission.
"value": "A String", # The email address or domain name for the entity. This is used during inserts and is not populated in responses. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
"id": "A String", # The ID of the user this permission refers to, and identical to the permissionId in the About and Files resources. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
- "authKey": "A String", # The authkey parameter required for this permission.
+ "authKey": "A String", # Deprecated.
"etag": "A String", # The ETag of the permission.
"emailAddress": "A String", # The email address of the user or group this permission refers to. This is an output-only field which is present when the permission type is user or group.
"expirationDate": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration dates have the following restrictions:
# - They can only be set on user and group permissions
# - The date must be in the future
# - The date cannot be more than a year in the future
- # - The date can only be set on drive.permissions.update requests
+ # - The date can only be set on drive.permissions.update or drive.permissions.patch requests
"role": "A String", # The primary role for this user. While new values may be supported in the future, the following are currently allowed:
- # - organizer
# - owner
- # - reader
+ # - organizer
+ # - fileOrganizer
# - writer
+ # - reader
"type": "A String", # The account type. Allowed values are:
# - user
# - group
@@ -505,11 +593,11 @@
</div>
<div class="method">
- <code class="details" id="update">update(fileId, permissionId, body, removeExpiration=None, supportsTeamDrives=None, transferOwnership=None)</code>
+ <code class="details" id="update">update(fileId, permissionId, body, removeExpiration=None, supportsTeamDrives=None, supportsAllDrives=None, useDomainAdminAccess=None, transferOwnership=None)</code>
<pre>Updates a permission.
Args:
- fileId: string, The ID for the file or Team Drive. (required)
+ fileId: string, The ID for the file or shared drive. (required)
permissionId: string, The ID for the permission. (required)
body: object, The request body. (required)
The object takes the form of:
@@ -517,40 +605,53 @@
{ # A permission for a file.
"withLink": True or False, # Whether the link is required for this permission.
"domain": "A String", # The domain name of the entity this permission refers to. This is an output-only field which is present when the permission type is user, group or domain.
- "name": "A String", # The name for this permission.
- "teamDrivePermissionDetails": [ # Details of whether the permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+ "permissionDetails": [ # Details of whether the permissions on this shared drive item are inherited or directly on this item. This is an output-only field which is present only for shared drive items.
{
- "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
"role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
# - organizer
- # - reader
+ # - fileOrganizer
# - writer
+ # - reader
+ "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the shared drive.
+ "permissionType": "A String", # The permission type for this user. While new values may be added in future, the following are currently possible:
+ # - file
+ # - member
"additionalRoles": [ # Additional roles for this user. Only commenter is currently possible, though more may be supported in the future.
"A String",
],
- "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
- # - file
- # - member
"inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
},
],
+ "name": "A String", # The name for this permission.
+ "teamDrivePermissionDetails": [ # Deprecated - use permissionDetails instead.
+ {
+ "inheritedFrom": "A String", # Deprecated - use permissionDetails/inheritedFrom instead.
+ "role": "A String", # Deprecated - use permissionDetails/role instead.
+ "additionalRoles": [ # Deprecated - use permissionDetails/additionalRoles instead.
+ "A String",
+ ],
+ "teamDrivePermissionType": "A String", # Deprecated - use permissionDetails/permissionType instead.
+ "inherited": True or False, # Deprecated - use permissionDetails/inherited instead.
+ },
+ ],
"deleted": True or False, # Whether the account associated with this permission has been deleted. This field only pertains to user and group permissions.
"kind": "drive#permission", # This is always drive#permission.
"value": "A String", # The email address or domain name for the entity. This is used during inserts and is not populated in responses. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
"id": "A String", # The ID of the user this permission refers to, and identical to the permissionId in the About and Files resources. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
- "authKey": "A String", # The authkey parameter required for this permission.
+ "authKey": "A String", # Deprecated.
"etag": "A String", # The ETag of the permission.
"emailAddress": "A String", # The email address of the user or group this permission refers to. This is an output-only field which is present when the permission type is user or group.
"expirationDate": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration dates have the following restrictions:
# - They can only be set on user and group permissions
# - The date must be in the future
# - The date cannot be more than a year in the future
- # - The date can only be set on drive.permissions.update requests
+ # - The date can only be set on drive.permissions.update or drive.permissions.patch requests
"role": "A String", # The primary role for this user. While new values may be supported in the future, the following are currently allowed:
- # - organizer
# - owner
- # - reader
+ # - organizer
+ # - fileOrganizer
# - writer
+ # - reader
"type": "A String", # The account type. Allowed values are:
# - user
# - group
@@ -564,7 +665,9 @@
}
removeExpiration: boolean, Whether to remove the expiration date.
- supportsTeamDrives: boolean, Whether the requesting application supports Team Drives.
+ supportsTeamDrives: boolean, Deprecated use supportsAllDrives instead.
+ supportsAllDrives: boolean, Deprecated - Whether the requesting application supports both My Drives and shared drives. This parameter will only be effective until June 1, 2020. Afterwards all applications are assumed to support shared drives.
+ useDomainAdminAccess: boolean, Issue the request as a domain administrator; if set to true, then the requester will be granted access if the file ID parameter refers to a shared drive and the requester is an administrator of the domain to which the shared drive belongs.
transferOwnership: boolean, Whether changing a role to 'owner' downgrades the current owners to writers. Does nothing if the specified role is not 'owner'.
Returns:
@@ -573,40 +676,53 @@
{ # A permission for a file.
"withLink": True or False, # Whether the link is required for this permission.
"domain": "A String", # The domain name of the entity this permission refers to. This is an output-only field which is present when the permission type is user, group or domain.
- "name": "A String", # The name for this permission.
- "teamDrivePermissionDetails": [ # Details of whether the permissions on this Team Drive item are inherited or directly on this item. This is an output-only field which is present only for Team Drive items.
+ "permissionDetails": [ # Details of whether the permissions on this shared drive item are inherited or directly on this item. This is an output-only field which is present only for shared drive items.
{
- "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the Team Drive.
"role": "A String", # The primary role for this user. While new values may be added in the future, the following are currently possible:
# - organizer
- # - reader
+ # - fileOrganizer
# - writer
+ # - reader
+ "inheritedFrom": "A String", # The ID of the item from which this permission is inherited. This is an output-only field and is only populated for members of the shared drive.
+ "permissionType": "A String", # The permission type for this user. While new values may be added in future, the following are currently possible:
+ # - file
+ # - member
"additionalRoles": [ # Additional roles for this user. Only commenter is currently possible, though more may be supported in the future.
"A String",
],
- "teamDrivePermissionType": "A String", # The Team Drive permission type for this user. While new values may be added in future, the following are currently possible:
- # - file
- # - member
"inherited": True or False, # Whether this permission is inherited. This field is always populated. This is an output-only field.
},
],
+ "name": "A String", # The name for this permission.
+ "teamDrivePermissionDetails": [ # Deprecated - use permissionDetails instead.
+ {
+ "inheritedFrom": "A String", # Deprecated - use permissionDetails/inheritedFrom instead.
+ "role": "A String", # Deprecated - use permissionDetails/role instead.
+ "additionalRoles": [ # Deprecated - use permissionDetails/additionalRoles instead.
+ "A String",
+ ],
+ "teamDrivePermissionType": "A String", # Deprecated - use permissionDetails/permissionType instead.
+ "inherited": True or False, # Deprecated - use permissionDetails/inherited instead.
+ },
+ ],
"deleted": True or False, # Whether the account associated with this permission has been deleted. This field only pertains to user and group permissions.
"kind": "drive#permission", # This is always drive#permission.
"value": "A String", # The email address or domain name for the entity. This is used during inserts and is not populated in responses. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
"id": "A String", # The ID of the user this permission refers to, and identical to the permissionId in the About and Files resources. When making a drive.permissions.insert request, exactly one of the id or value fields must be specified unless the permission type is anyone, in which case both id and value are ignored.
- "authKey": "A String", # The authkey parameter required for this permission.
+ "authKey": "A String", # Deprecated.
"etag": "A String", # The ETag of the permission.
"emailAddress": "A String", # The email address of the user or group this permission refers to. This is an output-only field which is present when the permission type is user or group.
"expirationDate": "A String", # The time at which this permission will expire (RFC 3339 date-time). Expiration dates have the following restrictions:
# - They can only be set on user and group permissions
# - The date must be in the future
# - The date cannot be more than a year in the future
- # - The date can only be set on drive.permissions.update requests
+ # - The date can only be set on drive.permissions.update or drive.permissions.patch requests
"role": "A String", # The primary role for this user. While new values may be supported in the future, the following are currently allowed:
- # - organizer
# - owner
- # - reader
+ # - organizer
+ # - fileOrganizer
# - writer
+ # - reader
"type": "A String", # The account type. Allowed values are:
# - user
# - group