module ApisResource: sig .. end
val getRest : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
api:string ->
version:string ->
GapiConversation.Session.t ->
GapiDiscoveryV1Model.RestDescription.t * GapiConversation.Session.t
Retrieve the description of a particular version of an api.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/discovery/v1/").
std_params : Optional standard parameters.
api : The name of the API.
version : The version of the API.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?preferred:bool ->
?name:string ->
GapiConversation.Session.t ->
GapiDiscoveryV1Model.DirectoryList.t * GapiConversation.Session.t
Retrieve the list of APIs supported at this endpoint.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/discovery/v1/").
std_params : Optional standard parameters.
preferred : Return only the preferred version of an API.
name : Only include APIs with the given name.