@google-analytics/data 4.0.0 → 4.1.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.
@@ -57,8 +57,7 @@ export declare class AlphaAnalyticsDataClient {
57
57
  * API remote host.
58
58
  * @param {gax.ClientConfig} [options.clientConfig] - Client configuration override.
59
59
  * Follows the structure of {@link gapicConfig}.
60
- * @param {boolean | "rest"} [options.fallback] - Use HTTP fallback mode.
61
- * Pass "rest" to use HTTP/1.1 REST API instead of gRPC.
60
+ * @param {boolean} [options.fallback] - Use HTTP/1.1 REST mode.
62
61
  * For more information, please check the
63
62
  * {@link https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#http11-rest-api-mode documentation}.
64
63
  * @param {gax} [gaxInstance]: loaded instance of `google-gax`. Useful if you
@@ -66,7 +65,7 @@ export declare class AlphaAnalyticsDataClient {
66
65
  * HTTP implementation. Load only fallback version and pass it to the constructor:
67
66
  * ```
68
67
  * const gax = require('google-gax/build/src/fallback'); // avoids loading google-gax with gRPC
69
- * const client = new AlphaAnalyticsDataClient({fallback: 'rest'}, gax);
68
+ * const client = new AlphaAnalyticsDataClient({fallback: true}, gax);
70
69
  * ```
71
70
  */
72
71
  constructor(opts?: ClientOptions, gaxInstance?: typeof gax | typeof gax.fallback);
@@ -128,66 +127,67 @@ export declare class AlphaAnalyticsDataClient {
128
127
  *
129
128
  * @param {Object} request
130
129
  * The request object that will be sent.
131
- * @param {string} request.property
132
- * A Google Analytics GA4 property identifier whose events are tracked.
133
- * Specified in the URL path and not the body. To learn more, see [where to
134
- * find your Property
130
+ * @param {string} [request.property]
131
+ * Optional. A Google Analytics GA4 property identifier whose events are
132
+ * tracked. Specified in the URL path and not the body. To learn more, see
133
+ * [where to find your Property
135
134
  * ID](https://developers.google.com/analytics/devguides/reporting/data/v1/property-id).
136
135
  * Within a batch request, this property should either be unspecified or
137
136
  * consistent with the batch-level property.
138
137
  *
139
138
  * Example: properties/1234
140
- * @param {number[]} request.dateRanges
141
- * Date ranges of data to read. If multiple date ranges are requested, each
142
- * response row will contain a zero based date range index. If two date
143
- * ranges overlap, the event data for the overlapping days is included in the
144
- * response rows for both date ranges.
145
- * @param {google.analytics.data.v1alpha.Funnel} request.funnel
146
- * The configuration of this request's funnel. This funnel configuration is
147
- * required.
148
- * @param {google.analytics.data.v1alpha.FunnelBreakdown} request.funnelBreakdown
149
- * If specified, this breakdown adds a dimension to the funnel table sub
150
- * report response. This breakdown dimension expands each funnel step to the
151
- * unique values of the breakdown dimension. For example, a breakdown by the
152
- * `deviceCategory` dimension will create rows for `mobile`, `tablet`,
139
+ * @param {number[]} [request.dateRanges]
140
+ * Optional. Date ranges of data to read. If multiple date ranges are
141
+ * requested, each response row will contain a zero based date range index. If
142
+ * two date ranges overlap, the event data for the overlapping days is
143
+ * included in the response rows for both date ranges.
144
+ * @param {google.analytics.data.v1alpha.Funnel} [request.funnel]
145
+ * Optional. The configuration of this request's funnel. This funnel
146
+ * configuration is required.
147
+ * @param {google.analytics.data.v1alpha.FunnelBreakdown} [request.funnelBreakdown]
148
+ * Optional. If specified, this breakdown adds a dimension to the funnel table
149
+ * sub report response. This breakdown dimension expands each funnel step to
150
+ * the unique values of the breakdown dimension. For example, a breakdown by
151
+ * the `deviceCategory` dimension will create rows for `mobile`, `tablet`,
153
152
  * `desktop`, and the total.
154
- * @param {google.analytics.data.v1alpha.FunnelNextAction} request.funnelNextAction
155
- * If specified, next action adds a dimension to the funnel visualization sub
156
- * report response. This next action dimension expands each funnel step to the
157
- * unique values of the next action. For example a next action of the
158
- * `eventName` dimension will create rows for several events (for example
159
- * `session_start` & `click`) and the total.
153
+ * @param {google.analytics.data.v1alpha.FunnelNextAction} [request.funnelNextAction]
154
+ * Optional. If specified, next action adds a dimension to the funnel
155
+ * visualization sub report response. This next action dimension expands each
156
+ * funnel step to the unique values of the next action. For example a next
157
+ * action of the `eventName` dimension will create rows for several events
158
+ * (for example `session_start` & `click`) and the total.
160
159
  *
161
160
  * Next action only supports `eventName` and most Page / Screen dimensions
162
161
  * like `pageTitle` and `pagePath`.
163
- * @param {google.analytics.data.v1alpha.RunFunnelReportRequest.FunnelVisualizationType} request.funnelVisualizationType
164
- * The funnel visualization type controls the dimensions present in the funnel
165
- * visualization sub report response. If not specified, `STANDARD_FUNNEL` is
166
- * used.
167
- * @param {number[]} request.segments
168
- * The configurations of segments. Segments are subsets of a property's data.
169
- * In a funnel report with segments, the funnel is evaluated in each segment.
162
+ * @param {google.analytics.data.v1alpha.RunFunnelReportRequest.FunnelVisualizationType} [request.funnelVisualizationType]
163
+ * Optional. The funnel visualization type controls the dimensions present in
164
+ * the funnel visualization sub report response. If not specified,
165
+ * `STANDARD_FUNNEL` is used.
166
+ * @param {number[]} [request.segments]
167
+ * Optional. The configurations of segments. Segments are subsets of a
168
+ * property's data. In a funnel report with segments, the funnel is evaluated
169
+ * in each segment.
170
170
  *
171
171
  * Each segment specified in this request
172
172
  * produces a separate row in the response; in the response, each segment
173
173
  * identified by its name.
174
174
  *
175
175
  * The segments parameter is optional. Requests are limited to 4 segments.
176
- * @param {number} request.limit
177
- * The number of rows to return. If unspecified, 10,000 rows are returned. The
178
- * API returns a maximum of 250,000 rows per request, no matter how many you
179
- * ask for. `limit` must be positive.
176
+ * @param {number} [request.limit]
177
+ * Optional. The number of rows to return. If unspecified, 10,000 rows are
178
+ * returned. The API returns a maximum of 250,000 rows per request, no matter
179
+ * how many you ask for. `limit` must be positive.
180
180
  *
181
181
  * The API can also return fewer rows than the requested `limit`, if there
182
182
  * aren't as many dimension values as the `limit`.
183
- * @param {google.analytics.data.v1alpha.FilterExpression} request.dimensionFilter
184
- * Dimension filters allow you to ask for only specific dimension values in
185
- * the report. To learn more, see [Creating a Report: Dimension
183
+ * @param {google.analytics.data.v1alpha.FilterExpression} [request.dimensionFilter]
184
+ * Optional. Dimension filters allow you to ask for only specific dimension
185
+ * values in the report. To learn more, see [Creating a Report: Dimension
186
186
  * Filters](https://developers.google.com/analytics/devguides/reporting/data/v1/basics#dimension_filters)
187
187
  * for examples. Metrics cannot be used in this filter.
188
- * @param {boolean} request.returnPropertyQuota
189
- * Toggles whether to return the current state of this Analytics Property's
190
- * quota. Quota is returned in [PropertyQuota](#PropertyQuota).
188
+ * @param {boolean} [request.returnPropertyQuota]
189
+ * Optional. Toggles whether to return the current state of this Analytics
190
+ * Property's quota. Quota is returned in [PropertyQuota](#PropertyQuota).
191
191
  * @param {object} [options]
192
192
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
193
193
  * @returns {Promise} - The promise which resolves to an array.
@@ -208,19 +208,31 @@ export declare class AlphaAnalyticsDataClient {
208
208
  * Retrieves an audience list of users. After creating an audience, the users
209
209
  * are not immediately available for listing. First, a request to
210
210
  * `CreateAudienceList` is necessary to create an audience list of users, and
211
- * then second, this method is used to retrieve the users in the audience.
211
+ * then second, this method is used to retrieve the users in the audience
212
+ * list.
213
+ *
214
+ * See [Creating an Audience
215
+ * List](https://developers.google.com/analytics/devguides/reporting/data/v1/audience-list-basics)
216
+ * for an introduction to Audience Lists with examples.
212
217
  *
213
218
  * Audiences in Google Analytics 4 allow you to segment your users in the ways
214
219
  * that are important to your business. To learn more, see
215
220
  * https://support.google.com/analytics/answer/9267572.
216
221
  *
222
+ * This method is introduced at alpha stability with the intention of
223
+ * gathering feedback on syntax and capabilities before entering beta. To give
224
+ * your feedback on this API, complete the
225
+ * [Google Analytics Audience Export API
226
+ * Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
227
+ *
217
228
  * @param {Object} request
218
229
  * The request object that will be sent.
219
230
  * @param {string} request.name
220
- * The name of the audience list to retrieve users from.
221
- * Format: `properties/{propertyId}/audienceLists/{audienceListId}`
222
- * @param {number} request.offset
223
- * The row count of the start row. The first row is counted as row 0.
231
+ * Required. The name of the audience list to retrieve users from.
232
+ * Format: `properties/{property}/audienceLists/{audience_list}`
233
+ * @param {number} [request.offset]
234
+ * Optional. The row count of the start row. The first row is counted as row
235
+ * 0.
224
236
  *
225
237
  * When paging, the first request does not specify offset; or equivalently,
226
238
  * sets offset to 0; the first request returns the first `limit` of rows. The
@@ -229,10 +241,10 @@ export declare class AlphaAnalyticsDataClient {
229
241
  *
230
242
  * To learn more about this pagination parameter, see
231
243
  * [Pagination](https://developers.google.com/analytics/devguides/reporting/data/v1/basics#pagination).
232
- * @param {number} request.limit
233
- * The number of rows to return. If unspecified, 10,000 rows are returned. The
234
- * API returns a maximum of 250,000 rows per request, no matter how many you
235
- * ask for. `limit` must be positive.
244
+ * @param {number} [request.limit]
245
+ * Optional. The number of rows to return. If unspecified, 10,000 rows are
246
+ * returned. The API returns a maximum of 250,000 rows per request, no matter
247
+ * how many you ask for. `limit` must be positive.
236
248
  *
237
249
  * The API can also return fewer rows than the requested `limit`, if there
238
250
  * aren't as many dimension values as the `limit`.
@@ -255,15 +267,88 @@ export declare class AlphaAnalyticsDataClient {
255
267
  ]>;
256
268
  queryAudienceList(request: protos.google.analytics.data.v1alpha.IQueryAudienceListRequest, options: CallOptions, callback: Callback<protos.google.analytics.data.v1alpha.IQueryAudienceListResponse, protos.google.analytics.data.v1alpha.IQueryAudienceListRequest | null | undefined, {} | null | undefined>): void;
257
269
  queryAudienceList(request: protos.google.analytics.data.v1alpha.IQueryAudienceListRequest, callback: Callback<protos.google.analytics.data.v1alpha.IQueryAudienceListResponse, protos.google.analytics.data.v1alpha.IQueryAudienceListRequest | null | undefined, {} | null | undefined>): void;
270
+ /**
271
+ * Exports an audience list of users to a Google Sheet. After creating an
272
+ * audience, the users are not immediately available for listing. First, a
273
+ * request to `CreateAudienceList` is necessary to create an audience list of
274
+ * users, and then second, this method is used to export those users in the
275
+ * audience list to a Google Sheet.
276
+ *
277
+ * See [Creating an Audience
278
+ * List](https://developers.google.com/analytics/devguides/reporting/data/v1/audience-list-basics)
279
+ * for an introduction to Audience Lists with examples.
280
+ *
281
+ * Audiences in Google Analytics 4 allow you to segment your users in the ways
282
+ * that are important to your business. To learn more, see
283
+ * https://support.google.com/analytics/answer/9267572.
284
+ *
285
+ * This method is introduced at alpha stability with the intention of
286
+ * gathering feedback on syntax and capabilities before entering beta. To give
287
+ * your feedback on this API, complete the
288
+ * [Google Analytics Audience Export API
289
+ * Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
290
+ *
291
+ * @param {Object} request
292
+ * The request object that will be sent.
293
+ * @param {string} request.name
294
+ * Required. The name of the audience list to retrieve users from.
295
+ * Format: `properties/{property}/audienceLists/{audience_list}`
296
+ * @param {number} [request.offset]
297
+ * Optional. The row count of the start row. The first row is counted as row
298
+ * 0.
299
+ *
300
+ * When paging, the first request does not specify offset; or equivalently,
301
+ * sets offset to 0; the first request returns the first `limit` of rows. The
302
+ * second request sets offset to the `limit` of the first request; the second
303
+ * request returns the second `limit` of rows.
304
+ *
305
+ * To learn more about this pagination parameter, see
306
+ * [Pagination](https://developers.google.com/analytics/devguides/reporting/data/v1/basics#pagination).
307
+ * @param {number} [request.limit]
308
+ * Optional. The number of rows to return. If unspecified, 10,000 rows are
309
+ * returned. The API returns a maximum of 250,000 rows per request, no matter
310
+ * how many you ask for. `limit` must be positive.
311
+ *
312
+ * The API can also return fewer rows than the requested `limit`, if there
313
+ * aren't as many dimension values as the `limit`.
314
+ *
315
+ * To learn more about this pagination parameter, see
316
+ * [Pagination](https://developers.google.com/analytics/devguides/reporting/data/v1/basics#pagination).
317
+ * @param {object} [options]
318
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
319
+ * @returns {Promise} - The promise which resolves to an array.
320
+ * The first element of the array is an object representing {@link protos.google.analytics.data.v1alpha.SheetExportAudienceListResponse|SheetExportAudienceListResponse}.
321
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
322
+ * for more details and examples.
323
+ * @example <caption>include:samples/generated/v1alpha/alpha_analytics_data.sheet_export_audience_list.js</caption>
324
+ * region_tag:analyticsdata_v1alpha_generated_AlphaAnalyticsData_SheetExportAudienceList_async
325
+ */
326
+ sheetExportAudienceList(request?: protos.google.analytics.data.v1alpha.ISheetExportAudienceListRequest, options?: CallOptions): Promise<[
327
+ protos.google.analytics.data.v1alpha.ISheetExportAudienceListResponse,
328
+ (protos.google.analytics.data.v1alpha.ISheetExportAudienceListRequest | undefined),
329
+ {} | undefined
330
+ ]>;
331
+ sheetExportAudienceList(request: protos.google.analytics.data.v1alpha.ISheetExportAudienceListRequest, options: CallOptions, callback: Callback<protos.google.analytics.data.v1alpha.ISheetExportAudienceListResponse, protos.google.analytics.data.v1alpha.ISheetExportAudienceListRequest | null | undefined, {} | null | undefined>): void;
332
+ sheetExportAudienceList(request: protos.google.analytics.data.v1alpha.ISheetExportAudienceListRequest, callback: Callback<protos.google.analytics.data.v1alpha.ISheetExportAudienceListResponse, protos.google.analytics.data.v1alpha.ISheetExportAudienceListRequest | null | undefined, {} | null | undefined>): void;
258
333
  /**
259
334
  * Gets configuration metadata about a specific audience list. This method
260
335
  * can be used to understand an audience list after it has been created.
261
336
  *
337
+ * See [Creating an Audience
338
+ * List](https://developers.google.com/analytics/devguides/reporting/data/v1/audience-list-basics)
339
+ * for an introduction to Audience Lists with examples.
340
+ *
341
+ * This method is introduced at alpha stability with the intention of
342
+ * gathering feedback on syntax and capabilities before entering beta. To give
343
+ * your feedback on this API, complete the
344
+ * [Google Analytics Audience Export API
345
+ * Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
346
+ *
262
347
  * @param {Object} request
263
348
  * The request object that will be sent.
264
349
  * @param {string} request.name
265
350
  * Required. The audience list resource name.
266
- * Format: `properties/{propertyId}/audienceLists/{audienceListId}`
351
+ * Format: `properties/{property}/audienceLists/{audience_list}`
267
352
  * @param {object} [options]
268
353
  * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
269
354
  * @returns {Promise} - The promise which resolves to an array.
@@ -287,6 +372,10 @@ export declare class AlphaAnalyticsDataClient {
287
372
  * first create the audience list through this method and then send the
288
373
  * audience resource name to the `QueryAudienceList` method.
289
374
  *
375
+ * See [Creating an Audience
376
+ * List](https://developers.google.com/analytics/devguides/reporting/data/v1/audience-list-basics)
377
+ * for an introduction to Audience Lists with examples.
378
+ *
290
379
  * An audience list is a snapshot of the users currently in the audience at
291
380
  * the time of audience list creation. Creating audience lists for one
292
381
  * audience on different days will return different results as users enter and
@@ -297,11 +386,17 @@ export declare class AlphaAnalyticsDataClient {
297
386
  * https://support.google.com/analytics/answer/9267572. Audience lists contain
298
387
  * the users in each audience.
299
388
  *
389
+ * This method is introduced at alpha stability with the intention of
390
+ * gathering feedback on syntax and capabilities before entering beta. To give
391
+ * your feedback on this API, complete the
392
+ * [Google Analytics Audience Export API
393
+ * Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
394
+ *
300
395
  * @param {Object} request
301
396
  * The request object that will be sent.
302
397
  * @param {string} request.parent
303
398
  * Required. The parent resource where this audience list will be created.
304
- * Format: `properties/{propertyId}`
399
+ * Format: `properties/{property}`
305
400
  * @param {google.analytics.data.v1alpha.AudienceList} request.audienceList
306
401
  * Required. The audience list to create.
307
402
  * @param {object} [options]
@@ -340,19 +435,29 @@ export declare class AlphaAnalyticsDataClient {
340
435
  * audience lists. The same audience can have multiple audience lists that
341
436
  * represent the list of users that were in an audience on different days.
342
437
  *
438
+ * See [Creating an Audience
439
+ * List](https://developers.google.com/analytics/devguides/reporting/data/v1/audience-list-basics)
440
+ * for an introduction to Audience Lists with examples.
441
+ *
442
+ * This method is introduced at alpha stability with the intention of
443
+ * gathering feedback on syntax and capabilities before entering beta. To give
444
+ * your feedback on this API, complete the
445
+ * [Google Analytics Audience Export API
446
+ * Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
447
+ *
343
448
  * @param {Object} request
344
449
  * The request object that will be sent.
345
450
  * @param {string} request.parent
346
451
  * Required. All audience lists for this property will be listed in the
347
- * response. Format: `properties/{propertyId}`
348
- * @param {number} request.pageSize
349
- * The maximum number of audience lists to return. The service may return
350
- * fewer than this value. If unspecified, at most 200 audience lists will be
351
- * returned. The maximum value is 1000 (higher values will be coerced to the
352
- * maximum).
353
- * @param {string} request.pageToken
354
- * A page token, received from a previous `ListAudienceLists` call. Provide
355
- * this to retrieve the subsequent page.
452
+ * response. Format: `properties/{property}`
453
+ * @param {number} [request.pageSize]
454
+ * Optional. The maximum number of audience lists to return. The service may
455
+ * return fewer than this value. If unspecified, at most 200 audience lists
456
+ * will be returned. The maximum value is 1000 (higher values will be coerced
457
+ * to the maximum).
458
+ * @param {string} [request.pageToken]
459
+ * Optional. A page token, received from a previous `ListAudienceLists` call.
460
+ * Provide this to retrieve the subsequent page.
356
461
  *
357
462
  * When paginating, all other parameters provided to `ListAudienceLists` must
358
463
  * match the call that provided the page token.
@@ -381,15 +486,15 @@ export declare class AlphaAnalyticsDataClient {
381
486
  * The request object that will be sent.
382
487
  * @param {string} request.parent
383
488
  * Required. All audience lists for this property will be listed in the
384
- * response. Format: `properties/{propertyId}`
385
- * @param {number} request.pageSize
386
- * The maximum number of audience lists to return. The service may return
387
- * fewer than this value. If unspecified, at most 200 audience lists will be
388
- * returned. The maximum value is 1000 (higher values will be coerced to the
389
- * maximum).
390
- * @param {string} request.pageToken
391
- * A page token, received from a previous `ListAudienceLists` call. Provide
392
- * this to retrieve the subsequent page.
489
+ * response. Format: `properties/{property}`
490
+ * @param {number} [request.pageSize]
491
+ * Optional. The maximum number of audience lists to return. The service may
492
+ * return fewer than this value. If unspecified, at most 200 audience lists
493
+ * will be returned. The maximum value is 1000 (higher values will be coerced
494
+ * to the maximum).
495
+ * @param {string} [request.pageToken]
496
+ * Optional. A page token, received from a previous `ListAudienceLists` call.
497
+ * Provide this to retrieve the subsequent page.
393
498
  *
394
499
  * When paginating, all other parameters provided to `ListAudienceLists` must
395
500
  * match the call that provided the page token.
@@ -413,15 +518,15 @@ export declare class AlphaAnalyticsDataClient {
413
518
  * The request object that will be sent.
414
519
  * @param {string} request.parent
415
520
  * Required. All audience lists for this property will be listed in the
416
- * response. Format: `properties/{propertyId}`
417
- * @param {number} request.pageSize
418
- * The maximum number of audience lists to return. The service may return
419
- * fewer than this value. If unspecified, at most 200 audience lists will be
420
- * returned. The maximum value is 1000 (higher values will be coerced to the
421
- * maximum).
422
- * @param {string} request.pageToken
423
- * A page token, received from a previous `ListAudienceLists` call. Provide
424
- * this to retrieve the subsequent page.
521
+ * response. Format: `properties/{property}`
522
+ * @param {number} [request.pageSize]
523
+ * Optional. The maximum number of audience lists to return. The service may
524
+ * return fewer than this value. If unspecified, at most 200 audience lists
525
+ * will be returned. The maximum value is 1000 (higher values will be coerced
526
+ * to the maximum).
527
+ * @param {string} [request.pageToken]
528
+ * Optional. A page token, received from a previous `ListAudienceLists` call.
529
+ * Provide this to retrieve the subsequent page.
425
530
  *
426
531
  * When paginating, all other parameters provided to `ListAudienceLists` must
427
532
  * match the call that provided the page token.
@@ -441,42 +546,42 @@ export declare class AlphaAnalyticsDataClient {
441
546
  /**
442
547
  * Return a fully-qualified audienceList resource name string.
443
548
  *
444
- * @param {string} propertyId
445
- * @param {string} audienceListId
549
+ * @param {string} property
550
+ * @param {string} audience_list
446
551
  * @returns {string} Resource name string.
447
552
  */
448
- audienceListPath(propertyId: string, audienceListId: string): string;
553
+ audienceListPath(property: string, audienceList: string): string;
449
554
  /**
450
- * Parse the propertyId from AudienceList resource.
555
+ * Parse the property from AudienceList resource.
451
556
  *
452
557
  * @param {string} audienceListName
453
558
  * A fully-qualified path representing AudienceList resource.
454
- * @returns {string} A string representing the propertyId.
559
+ * @returns {string} A string representing the property.
455
560
  */
456
- matchPropertyIdFromAudienceListName(audienceListName: string): string | number;
561
+ matchPropertyFromAudienceListName(audienceListName: string): string | number;
457
562
  /**
458
- * Parse the audienceListId from AudienceList resource.
563
+ * Parse the audience_list from AudienceList resource.
459
564
  *
460
565
  * @param {string} audienceListName
461
566
  * A fully-qualified path representing AudienceList resource.
462
- * @returns {string} A string representing the audienceListId.
567
+ * @returns {string} A string representing the audience_list.
463
568
  */
464
- matchAudienceListIdFromAudienceListName(audienceListName: string): string | number;
569
+ matchAudienceListFromAudienceListName(audienceListName: string): string | number;
465
570
  /**
466
571
  * Return a fully-qualified property resource name string.
467
572
  *
468
- * @param {string} propertyId
573
+ * @param {string} property
469
574
  * @returns {string} Resource name string.
470
575
  */
471
- propertyPath(propertyId: string): string;
576
+ propertyPath(property: string): string;
472
577
  /**
473
- * Parse the propertyId from Property resource.
578
+ * Parse the property from Property resource.
474
579
  *
475
580
  * @param {string} propertyName
476
581
  * A fully-qualified path representing Property resource.
477
- * @returns {string} A string representing the propertyId.
582
+ * @returns {string} A string representing the property.
478
583
  */
479
- matchPropertyIdFromPropertyName(propertyName: string): string | number;
584
+ matchPropertyFromPropertyName(propertyName: string): string | number;
480
585
  /**
481
586
  * Terminate the gRPC channel and close the client.
482
587
  *