Module GapiDriveV2Service.ParentsResource

module ParentsResource: sig .. end

val delete : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
parentId:string ->
GapiConversation.Session.t -> unit * GapiConversation.Session.t
Removes a parent from a file.
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.
parentId : The ID of the parent.
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
parentId:string ->
GapiConversation.Session.t ->
GapiDriveV2Model.ParentReference.t * GapiConversation.Session.t
Gets a specific parent reference.
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.
parentId : The ID of the parent.
val insert : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
GapiDriveV2Model.ParentReference.t ->
GapiConversation.Session.t ->
GapiDriveV2Model.ParentReference.t * GapiConversation.Session.t
Adds a parent folder for a file.
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.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
GapiConversation.Session.t ->
GapiDriveV2Model.ParentList.t * GapiConversation.Session.t
Lists a file's parents.
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.