module RevisionsResource: sig .. end
val delete : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
revisionId:string ->
GapiConversation.Session.t -> unit * GapiConversation.Session.t
Permanently deletes a revision. This method is only applicable to files with binary content in Drive.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").
std_params : Optional standard parameters.
fileId : The ID of the file.
revisionId : The ID of the revision.
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
?media_download:GapiMediaResource.download ->
?acknowledgeAbuse:bool ->
fileId:string ->
revisionId:string ->
GapiConversation.Session.t ->
GapiDriveV3Model.Revision.t * GapiConversation.Session.t
Gets a revision's metadata or content by ID.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").
etag : Optional ETag.
std_params : Optional standard parameters.
acknowledgeAbuse : Whether the user is acknowledging the risk of downloading known malware or other abusive files. This is only applicable when alt=media.
fileId : The ID of the file.
revisionId : The ID of the revision.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?pageSize:int ->
?pageToken:string ->
fileId:string ->
GapiConversation.Session.t ->
GapiDriveV3Model.RevisionList.t * GapiConversation.Session.t
Lists a file's revisions.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").
std_params : Optional standard parameters.
pageSize : The maximum number of revisions to return per page.
pageToken : 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.
fileId : The ID of the file.
val update : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
revisionId:string ->
GapiDriveV3Model.Revision.t ->
GapiConversation.Session.t ->
GapiDriveV3Model.Revision.t * GapiConversation.Session.t
Updates a revision with patch semantics.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").
std_params : Optional standard parameters.
fileId : The ID of the file.
revisionId : The ID of the revision.