Class PermissionsResource.UpdateRequest
Updates a permission with patch semantics. Warning: Concurrent permissions operations on the same file are not supported; only the last update is applied.
Inheritance
Inherited Members
Namespace: Google.Apis.Drive.v3
Assembly: Google.Apis.Drive.v3.dll
Syntax
public class PermissionsResource.UpdateRequest : DriveBaseServiceRequest<Permission>, IClientServiceRequest<Permission>, IClientServiceRequest
Constructors
UpdateRequest(IClientService, Permission, string, string)
Constructs a new Update request.
Declaration
public UpdateRequest(IClientService service, Permission body, string fileId, string permissionId)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
Permission | body | |
string | fileId | |
string | permissionId |
Properties
FileId
The ID of the file or shared drive.
Declaration
[RequestParameter("fileId", RequestParameterType.Path)]
public virtual string FileId { get; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
PermissionId
The ID of the permission.
Declaration
[RequestParameter("permissionId", RequestParameterType.Path)]
public virtual string PermissionId { get; }
Property Value
Type | Description |
---|---|
string |
RemoveExpiration
Whether to remove the expiration date.
Declaration
[RequestParameter("removeExpiration", RequestParameterType.Query)]
public virtual bool? RemoveExpiration { get; set; }
Property Value
Type | Description |
---|---|
bool? |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
SupportsAllDrives
Whether the requesting application supports both My Drives and shared drives.
Declaration
[RequestParameter("supportsAllDrives", RequestParameterType.Query)]
public virtual bool? SupportsAllDrives { get; set; }
Property Value
Type | Description |
---|---|
bool? |
SupportsTeamDrives
Deprecated: Use supportsAllDrives
instead.
Declaration
[RequestParameter("supportsTeamDrives", RequestParameterType.Query)]
public virtual bool? SupportsTeamDrives { get; set; }
Property Value
Type | Description |
---|---|
bool? |
TransferOwnership
Whether to transfer ownership to the specified user and downgrade the current owner to a writer. This parameter is required as an acknowledgement of the side effect.
Declaration
[RequestParameter("transferOwnership", RequestParameterType.Query)]
public virtual bool? TransferOwnership { get; set; }
Property Value
Type | Description |
---|---|
bool? |
UseDomainAdminAccess
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.
Declaration
[RequestParameter("useDomainAdminAccess", RequestParameterType.Query)]
public virtual bool? UseDomainAdminAccess { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Methods
GetBody()
Returns the body of the request.
Declaration
protected override object GetBody()
Returns
Type | Description |
---|---|
object |
Overrides
InitParameters()
Initializes Update parameter list.
Declaration
protected override void InitParameters()