google-analytics-admin-v1alpha 0.16.0 → 0.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -125,6 +125,23 @@ module Google
125
125
  "properties/#{property}/bigQueryLinks/#{bigquery_link}"
126
126
  end
127
127
 
128
+ ##
129
+ # Create a fully-qualified ChannelGroup resource string.
130
+ #
131
+ # The resource will be in the following format:
132
+ #
133
+ # `properties/{property}/channelGroups/{channel_group}`
134
+ #
135
+ # @param property [String]
136
+ # @param channel_group [String]
137
+ #
138
+ # @return [::String]
139
+ def channel_group_path property:, channel_group:
140
+ raise ::ArgumentError, "property cannot contain /" if property.to_s.include? "/"
141
+
142
+ "properties/#{property}/channelGroups/#{channel_group}"
143
+ end
144
+
128
145
  ##
129
146
  # Create a fully-qualified ConversionEvent resource string.
130
147
  #
@@ -255,6 +272,23 @@ module Google
255
272
  "properties/#{property}/displayVideo360AdvertiserLinkProposals/#{display_video_360_advertiser_link_proposal}"
256
273
  end
257
274
 
275
+ ##
276
+ # Create a fully-qualified EnhancedMeasurementSettings resource string.
277
+ #
278
+ # The resource will be in the following format:
279
+ #
280
+ # `properties/{property}/dataStreams/{data_stream}/enhancedMeasurementSettings`
281
+ #
282
+ # @param property [String]
283
+ # @param data_stream [String]
284
+ #
285
+ # @return [::String]
286
+ def enhanced_measurement_settings_path property:, data_stream:
287
+ raise ::ArgumentError, "property cannot contain /" if property.to_s.include? "/"
288
+
289
+ "properties/#{property}/dataStreams/#{data_stream}/enhancedMeasurementSettings"
290
+ end
291
+
258
292
  ##
259
293
  # Create a fully-qualified ExpandedDataSet resource string.
260
294
  #