Module GapiDriveV2Service.ChildrenResource

module ChildrenResource: sig .. end

val delete : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
folderId:string ->
childId:string ->
GapiConversation.Session.t -> unit * GapiConversation.Session.t
Removes a child from a folder.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
folderId : The ID of the folder.
childId : The ID of the child.
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
folderId:string ->
childId:string ->
GapiConversation.Session.t ->
GapiDriveV2Model.ChildReference.t * GapiConversation.Session.t
Gets a specific child reference.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
etag : Optional ETag.
std_params : Optional standard parameters.
folderId : The ID of the folder.
childId : The ID of the child.
val insert : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
folderId:string ->
GapiDriveV2Model.ChildReference.t ->
GapiConversation.Session.t ->
GapiDriveV2Model.ChildReference.t * GapiConversation.Session.t
Inserts a file into a folder.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
folderId : The ID of the folder.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?maxResults:int ->
?orderBy:string ->
?pageToken:string ->
?q:string ->
folderId:string ->
GapiConversation.Session.t ->
GapiDriveV2Model.ChildList.t * GapiConversation.Session.t
Lists a folder's children.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
maxResults : Maximum number of children to return.
orderBy : A comma-separated list of sort keys. Valid keys are 'createdDate', 'folder', 'lastViewedByMeDate', 'modifiedByMeDate', 'modifiedDate', 'quotaBytesUsed', 'recency', 'sharedWithMeDate', 'starred', and 'title'. Each key sorts ascending by default, but may be reversed with the 'desc' modifier. Example usage: ?orderBy=folder,modifiedDate desc,title. Please note that there is a current limitation for users with approximately one million files in which the requested sort order is ignored.
pageToken : Page token for children.
q : Query string for searching children.
folderId : The ID of the folder.