Module GapiDriveV2Service.PropertiesResource

module PropertiesResource: sig .. end

val delete : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?visibility:string ->
fileId:string ->
propertyKey:string ->
GapiConversation.Session.t -> unit * GapiConversation.Session.t
Deletes a property.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
visibility : The visibility of the property.
fileId : The ID of the file.
propertyKey : The key of the property.
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
?visibility:string ->
fileId:string ->
propertyKey:string ->
GapiConversation.Session.t ->
GapiDriveV2Model.Property.t * GapiConversation.Session.t
Gets a property by its key.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
etag : Optional ETag.
std_params : Optional standard parameters.
visibility : The visibility of the property.
fileId : The ID of the file.
propertyKey : The key of the property.
val insert : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
fileId:string ->
GapiDriveV2Model.Property.t ->
GapiConversation.Session.t ->
GapiDriveV2Model.Property.t * GapiConversation.Session.t
Adds a property to a file, or updates it if it already exists.
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.PropertyList.t * GapiConversation.Session.t
Lists a file's properties.
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 patch : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?visibility:string ->
fileId:string ->
propertyKey:string ->
GapiDriveV2Model.Property.t ->
GapiConversation.Session.t ->
GapiDriveV2Model.Property.t * GapiConversation.Session.t
Updates a property, or adds it if it doesn't exist. This method supports patch semantics.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
visibility : The visibility of the property.
fileId : The ID of the file.
propertyKey : The key of the property.
val update : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?visibility:string ->
fileId:string ->
propertyKey:string ->
GapiDriveV2Model.Property.t ->
GapiConversation.Session.t ->
GapiDriveV2Model.Property.t * GapiConversation.Session.t
Updates a property, or adds it if it doesn't exist.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v2/").
std_params : Optional standard parameters.
visibility : The visibility of the property.
fileId : The ID of the file.
propertyKey : The key of the property.