module Experiments: sig .. end
val delete : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
profileId:string ->
experimentId:string ->
GapiConversation.Session.t -> unit * GapiConversation.Session.t
Delete an experiment.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
std_params : Optional standard parameters.
accountId : Account ID to which the experiment belongs
webPropertyId : Web property ID to which the experiment belongs
profileId : View (Profile) ID to which the experiment belongs
experimentId : ID of the experiment to delete
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
profileId:string ->
experimentId:string ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.Experiment.t * GapiConversation.Session.t
Returns an experiment to which the user has access.
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 the experiment for.
webPropertyId : Web property ID to retrieve the experiment for.
profileId : View (Profile) ID to retrieve the experiment for.
experimentId : Experiment ID to retrieve the experiment for.
val insert : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
profileId:string ->
GapiAnalyticsV3Model.Experiment.t ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.Experiment.t * GapiConversation.Session.t
Create a new experiment.
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 experiment for.
webPropertyId : Web property ID to create the experiment for.
profileId : View (Profile) ID to create the experiment 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.Experiments.t * GapiConversation.Session.t
Lists experiments 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 experiments to include in this response.
start_index : An index of the first experiment to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.
accountId : Account ID to retrieve experiments for.
webPropertyId : Web property ID to retrieve experiments for.
profileId : View (Profile) ID to retrieve experiments for.
val patch : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
profileId:string ->
experimentId:string ->
GapiAnalyticsV3Model.Experiment.t ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.Experiment.t * GapiConversation.Session.t
Update an existing experiment. This method supports patch semantics.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
std_params : Optional standard parameters.
accountId : Account ID of the experiment to update.
webPropertyId : Web property ID of the experiment to update.
profileId : View (Profile) ID of the experiment to update.
experimentId : Experiment ID of the experiment to update.
val update : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
profileId:string ->
experimentId:string ->
GapiAnalyticsV3Model.Experiment.t ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.Experiment.t * GapiConversation.Session.t
Update an existing experiment.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
std_params : Optional standard parameters.
accountId : Account ID of the experiment to update.
webPropertyId : Web property ID of the experiment to update.
profileId : View (Profile) ID of the experiment to update.
experimentId : Experiment ID of the experiment to update.