package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val create : ?base_url:string -> ?std_params:GapiService.StandardParameters.t -> ?supportsTeamDrives:bool -> ?transferOwnership:bool -> ?useDomainAdminAccess:bool -> ?emailMessage:string -> ?sendNotificationEmail:bool -> fileId:string -> GapiDriveV3Model.Permission.t -> GapiConversation.Session.t -> GapiDriveV3Model.Permission.t * GapiConversation.Session.t

Creates a permission for a file or Team Drive.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").

  • parameter std_params

    Optional standard parameters.

  • parameter supportsTeamDrives

    Whether the requesting application supports Team Drives.

  • parameter transferOwnership

    Whether to transfer ownership to the specified user and downgrade the current owner to a writer. This parameter is required as an acknowledgement of the side effect.

  • parameter useDomainAdminAccess

    Whether the request should be treated as if it was issued by a domain administrator; if set to true, then the requester will be granted access if they are an administrator of the domain to which the item belongs.

  • parameter emailMessage

    A plain text custom message to include in the notification email.

  • parameter sendNotificationEmail

    Whether to send a notification email when sharing to users or groups. This defaults to true for users and groups, and is not allowed for other requests. It must not be disabled for ownership transfers.

  • parameter fileId

    The ID of the file or Team Drive.

val delete : ?base_url:string -> ?std_params:GapiService.StandardParameters.t -> ?supportsTeamDrives:bool -> ?useDomainAdminAccess:bool -> fileId:string -> permissionId:string -> GapiConversation.Session.t -> unit * GapiConversation.Session.t

Deletes a permission.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").

  • parameter std_params

    Optional standard parameters.

  • parameter supportsTeamDrives

    Whether the requesting application supports Team Drives.

  • parameter useDomainAdminAccess

    Whether the request should be treated as if it was issued by a domain administrator; if set to true, then the requester will be granted access if they are an administrator of the domain to which the item belongs.

  • parameter fileId

    The ID of the file or Team Drive.

  • parameter permissionId

    The ID of the permission.

val get : ?base_url:string -> ?etag:string -> ?std_params:GapiService.StandardParameters.t -> ?supportsTeamDrives:bool -> ?useDomainAdminAccess:bool -> fileId:string -> permissionId:string -> GapiConversation.Session.t -> GapiDriveV3Model.Permission.t * GapiConversation.Session.t

Gets a permission by ID.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").

  • parameter etag

    Optional ETag.

  • parameter std_params

    Optional standard parameters.

  • parameter supportsTeamDrives

    Whether the requesting application supports Team Drives.

  • parameter useDomainAdminAccess

    Whether the request should be treated as if it was issued by a domain administrator; if set to true, then the requester will be granted access if they are an administrator of the domain to which the item belongs.

  • parameter fileId

    The ID of the file.

  • parameter permissionId

    The ID of the permission.

val list : ?base_url:string -> ?std_params:GapiService.StandardParameters.t -> ?supportsTeamDrives:bool -> ?useDomainAdminAccess:bool -> ?pageSize:int -> ?pageToken:string -> fileId:string -> GapiConversation.Session.t -> GapiDriveV3Model.PermissionList.t * GapiConversation.Session.t

Lists a file's or Team Drive's permissions.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").

  • parameter std_params

    Optional standard parameters.

  • parameter supportsTeamDrives

    Whether the requesting application supports Team Drives.

  • parameter useDomainAdminAccess

    Whether the request should be treated as if it was issued by a domain administrator; if set to true, then the requester will be granted access if they are an administrator of the domain to which the item belongs.

  • parameter pageSize

    The maximum number of permissions to return per page. When not set for files in a Team Drive, at most 100 results will be returned. When not set for files that are not in a Team Drive, the entire list will be returned.

  • parameter 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.

  • parameter fileId

    The ID of the file or Team Drive.

val update : ?base_url:string -> ?std_params:GapiService.StandardParameters.t -> ?removeExpiration:bool -> ?supportsTeamDrives:bool -> ?transferOwnership:bool -> ?useDomainAdminAccess:bool -> fileId:string -> permissionId:string -> GapiDriveV3Model.Permission.t -> GapiConversation.Session.t -> GapiDriveV3Model.Permission.t * GapiConversation.Session.t

Updates a permission with patch semantics.

  • parameter base_url

    Service endpoint base URL (defaults to "https://www.googleapis.com/drive/v3/").

  • parameter std_params

    Optional standard parameters.

  • parameter removeExpiration

    Whether to remove the expiration date.

  • parameter supportsTeamDrives

    Whether the requesting application supports Team Drives.

  • parameter transferOwnership

    Whether to transfer ownership to the specified user and downgrade the current owner to a writer. This parameter is required as an acknowledgement of the side effect.

  • parameter useDomainAdminAccess

    Whether the request should be treated as if it was issued by a domain administrator; if set to true, then the requester will be granted access if they are an administrator of the domain to which the item belongs.

  • parameter fileId

    The ID of the file or Team Drive.

  • parameter permissionId

    The ID of the permission.