module UnsampledReports: sig .. end
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
profileId:string ->
unsampledReportId:string ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.UnsampledReport.t * GapiConversation.Session.t
Returns a single unsampled report.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
etag : Optional ETag.
std_params : Optional standard parameters.
accountId : Account ID to retrieve unsampled report for.
webPropertyId : Web property ID to retrieve unsampled reports for.
profileId : View (Profile) ID to retrieve unsampled report for.
unsampledReportId : ID of the unsampled report to retrieve.
val insert : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
profileId:string ->
GapiAnalyticsV3Model.UnsampledReport.t ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.UnsampledReport.t * GapiConversation.Session.t
Create a new unsampled report.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
std_params : Optional standard parameters.
accountId : Account ID to create the unsampled report for.
webPropertyId : Web property ID to create the unsampled report for.
profileId : View (Profile) ID to create the unsampled report for.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?max_results:int ->
?start_index:int ->
accountId:string ->
webPropertyId:string ->
profileId:string ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.UnsampledReports.t * GapiConversation.Session.t
Lists unsampled reports to which the user has access.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
std_params : Optional standard parameters.
max_results : The maximum number of unsampled reports to include in this response.
start_index : An index of the first unsampled report to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.
accountId : Account ID to retrieve unsampled reports for. Must be a specific account ID, ~all is not supported.
webPropertyId : Web property ID to retrieve unsampled reports for. Must be a specific web property ID, ~all is not supported.
profileId : View (Profile) ID to retrieve unsampled reports for. Must be a specific view (profile) ID, ~all is not supported.