module CustomDimensions: sig .. end
val get : ?base_url:string ->
?etag:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
customDimensionId:string ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.CustomDimension.t * GapiConversation.Session.t
Get a custom dimension 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 for the custom dimension to retrieve.
webPropertyId : Web property ID for the custom dimension to retrieve.
customDimensionId : The ID of the custom dimension to retrieve.
val insert : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
accountId:string ->
webPropertyId:string ->
GapiAnalyticsV3Model.CustomDimension.t ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.CustomDimension.t * GapiConversation.Session.t
Create a new custom dimension.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
std_params : Optional standard parameters.
accountId : Account ID for the custom dimension to create.
webPropertyId : Web property ID for the custom dimension to create.
val list : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?max_results:int ->
?start_index:int ->
accountId:string ->
webPropertyId:string ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.CustomDimensions.t * GapiConversation.Session.t
Lists custom dimensions 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 custom dimensions to include in this response.
start_index : An index of the first entity to retrieve. Use this parameter as a pagination mechanism along with the max-results parameter.
accountId : Account ID for the custom dimensions to retrieve.
webPropertyId : Web property ID for the custom dimensions to retrieve.
val patch : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?ignoreCustomDataSourceLinks:bool ->
accountId:string ->
webPropertyId:string ->
customDimensionId:string ->
GapiAnalyticsV3Model.CustomDimension.t ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.CustomDimension.t * GapiConversation.Session.t
Updates an existing custom dimension. This method supports patch semantics.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
std_params : Optional standard parameters.
ignoreCustomDataSourceLinks : Force the update and ignore any warnings related to the custom dimension being linked to a custom data source / data set.
accountId : Account ID for the custom dimension to update.
webPropertyId : Web property ID for the custom dimension to update.
customDimensionId : Custom dimension ID for the custom dimension to update.
val update : ?base_url:string ->
?std_params:GapiService.StandardParameters.t ->
?ignoreCustomDataSourceLinks:bool ->
accountId:string ->
webPropertyId:string ->
customDimensionId:string ->
GapiAnalyticsV3Model.CustomDimension.t ->
GapiConversation.Session.t ->
GapiAnalyticsV3Model.CustomDimension.t * GapiConversation.Session.t
Updates an existing custom dimension.
base_url : Service endpoint base URL (defaults to "https://www.googleapis.com/analytics/v3/").
std_params : Optional standard parameters.
ignoreCustomDataSourceLinks : Force the update and ignore any warnings related to the custom dimension being linked to a custom data source / data set.
accountId : Account ID for the custom dimension to update.
webPropertyId : Web property ID for the custom dimension to update.
customDimensionId : Custom dimension ID for the custom dimension to update.