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
Removes a revision.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
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 ->
fileId:string ->
revisionId:string ->
GapiConversation.Session.t ->
GapiDriveV2Model.Revision.t * GapiConversation.Session.t
Gets a specific revision.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
etag : Optional ETag.
std_params : Optional standard parameters.
fileId : The ID of the file.
revisionId : The ID of the revision.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?maxResults:int ->
?pageToken:string ->
fileId:string ->
GapiConversation.Session.t ->
GapiDriveV2Model.RevisionList.t * GapiConversation.Session.t
Lists a file's revisions.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
maxResults : Maximum number of revisions to return.
pageToken : Page token for revisions. To get the next page of results, set this parameter to the value of "nextPageToken" from the previous response.
fileId : The ID of the file.
val patch : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
revisionId:string ->
GapiDriveV2Model.Revision.t ->
GapiConversation.Session.t ->
GapiDriveV2Model.Revision.t * GapiConversation.Session.t
Updates a revision. This method supports patch semantics.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
fileId : The ID for the file.
revisionId : The ID for the revision.
val update : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
revisionId:string ->
GapiDriveV2Model.Revision.t ->
GapiConversation.Session.t ->
GapiDriveV2Model.Revision.t * GapiConversation.Session.t
Updates a revision.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
fileId : The ID for the file.
revisionId : The ID for the revision.