defmodule ExOvh.Services.V1.Webstorage.Query.Docs do
@moduledoc :false
@doc :false
def moduledoc() do
~s"""
Helper functions for building queries directed at the `/cdn/webstorage` part of the [OVH API](https://api.ovh.com/console/).
## Functions Summary
| Function | Description | OVH API call |
|---|---|---|
| `get_services/0` | Get a list of all webstorage cdn services. | GET /v1/cdn/webstorage |
| `get_service/1` | Get the domain, server and storage limits for a specific webstorage cdn service | GET /v1/cdn/webstorage/{serviceName} |
| `get_service_info/1` | Get a administrative details for a specific webstorage cdn service | GET /v1/cdn/webstorage/{serviceName}/serviceInfos |
| `get_service_stats/2` | Get statistics for a specific webstorage cdn service | GET /v1/cdn/webstorage/{serviceName}/statistics |
| `get_credentials/1` | Get credentials for using the swift compliant api | GET /v1/cdn/webstorage/{serviceName}/statistics |
## Example
ExOvh.Services.V1.Webstorage.Query.get_services() |> ExOvh.request()
"""
end
end