Skip to content

Commit 2120284

Browse files
docs: announce that ListAudienceLists, GetAudienceList, QueryAudienceList, CreateAudienceList methods are now available in the v1beta version of the Data API (#6988)
feat: add the `webhook_notification` field to the `RecurringAudienceList` resource feat: add the `webhook_notification` field to the `AudienceList` resource feat: add the `WebhookNotification` type PiperOrigin-RevId: 600815983 Source-Link: googleapis/googleapis@b76a27e Source-Link: googleapis/googleapis-gen@f45fce9 Copy-Tag: eyJwIjoiQW5hbHl0aWNzRGF0YS8uT3dsQm90LnlhbWwiLCJoIjoiZjQ1ZmNlOWFiYjg5YjQyNWM1YjVmNGFkZDJkN2I0YmNjNDI4OWUyNSJ9
1 parent 5acb2cd commit 2120284

File tree

10 files changed

+476
-48
lines changed

10 files changed

+476
-48
lines changed
339 Bytes
Binary file not shown.

AnalyticsData/samples/V1alpha/AlphaAnalyticsDataClient/create_audience_list.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,10 @@
5252
* https://support.google.com/analytics/answer/9267572. Audience lists contain
5353
* the users in each audience.
5454
*
55-
* This method is introduced at alpha stability with the intention of
56-
* gathering feedback on syntax and capabilities before entering beta. To give
57-
* your feedback on this API, complete the
58-
* [Google Analytics Audience Export API
59-
* Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
55+
* This method is available at beta stability at
56+
* [audienceExports.create](https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties.audienceExports/create).
57+
* To give your feedback on this API, complete the [Google Analytics Audience
58+
* Export API Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
6059
*
6160
* @param string $formattedParent The parent resource where this audience list will be created.
6261
* Format: `properties/{property}`

AnalyticsData/samples/V1alpha/AlphaAnalyticsDataClient/get_audience_list.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
* List](https://developers.google.com/analytics/devguides/reporting/data/v1/audience-list-basics)
3737
* for an introduction to Audience Lists with examples.
3838
*
39-
* This method is introduced at alpha stability with the intention of
40-
* gathering feedback on syntax and capabilities before entering beta. To give
41-
* your feedback on this API, complete the
39+
* This method is available at beta stability at
40+
* [audienceExports.get](https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties.audienceExports/get).
41+
* To give your feedback on this API, complete the
4242
* [Google Analytics Audience Export API
4343
* Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
4444
*

AnalyticsData/samples/V1alpha/AlphaAnalyticsDataClient/list_audience_lists.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@
3939
* List](https://developers.google.com/analytics/devguides/reporting/data/v1/audience-list-basics)
4040
* for an introduction to Audience Lists with examples.
4141
*
42-
* This method is introduced at alpha stability with the intention of
43-
* gathering feedback on syntax and capabilities before entering beta. To give
44-
* your feedback on this API, complete the
42+
* This method is available at beta stability at
43+
* [audienceExports.list](https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties.audienceExports/list).
44+
* To give your feedback on this API, complete the
4545
* [Google Analytics Audience Export API
4646
* Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
4747
*

AnalyticsData/samples/V1alpha/AlphaAnalyticsDataClient/query_audience_list.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,10 @@
4343
* that are important to your business. To learn more, see
4444
* https://support.google.com/analytics/answer/9267572.
4545
*
46-
* This method is introduced at alpha stability with the intention of
47-
* gathering feedback on syntax and capabilities before entering beta. To give
48-
* your feedback on this API, complete the
49-
* [Google Analytics Audience Export API
50-
* Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
46+
* This method is available at beta stability at
47+
* [audienceExports.query](https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties.audienceExports/query).
48+
* To give your feedback on this API, complete the [Google Analytics Audience
49+
* Export API Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
5150
*
5251
* @param string $name The name of the audience list to retrieve users from.
5352
* Format: `properties/{property}/audienceLists/{audience_list}`

AnalyticsData/src/V1alpha/AudienceList.php

Lines changed: 92 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AnalyticsData/src/V1alpha/Client/AlphaAnalyticsDataClient.php

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -343,11 +343,10 @@ public function __call($method, $args)
343343
* https://support.google.com/analytics/answer/9267572. Audience lists contain
344344
* the users in each audience.
345345
*
346-
* This method is introduced at alpha stability with the intention of
347-
* gathering feedback on syntax and capabilities before entering beta. To give
348-
* your feedback on this API, complete the
349-
* [Google Analytics Audience Export API
350-
* Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
346+
* This method is available at beta stability at
347+
* [audienceExports.create](https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties.audienceExports/create).
348+
* To give your feedback on this API, complete the [Google Analytics Audience
349+
* Export API Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
351350
*
352351
* The async variant is {@see AlphaAnalyticsDataClient::createAudienceListAsync()}
353352
* .
@@ -429,9 +428,9 @@ public function createRecurringAudienceList(CreateRecurringAudienceListRequest $
429428
* List](https://developers.google.com/analytics/devguides/reporting/data/v1/audience-list-basics)
430429
* for an introduction to Audience Lists with examples.
431430
*
432-
* This method is introduced at alpha stability with the intention of
433-
* gathering feedback on syntax and capabilities before entering beta. To give
434-
* your feedback on this API, complete the
431+
* This method is available at beta stability at
432+
* [audienceExports.get](https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties.audienceExports/get).
433+
* To give your feedback on this API, complete the
435434
* [Google Analytics Audience Export API
436435
* Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
437436
*
@@ -509,9 +508,9 @@ public function getRecurringAudienceList(GetRecurringAudienceListRequest $reques
509508
* List](https://developers.google.com/analytics/devguides/reporting/data/v1/audience-list-basics)
510509
* for an introduction to Audience Lists with examples.
511510
*
512-
* This method is introduced at alpha stability with the intention of
513-
* gathering feedback on syntax and capabilities before entering beta. To give
514-
* your feedback on this API, complete the
511+
* This method is available at beta stability at
512+
* [audienceExports.list](https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties.audienceExports/list).
513+
* To give your feedback on this API, complete the
515514
* [Google Analytics Audience Export API
516515
* Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
517516
*
@@ -595,11 +594,10 @@ public function listRecurringAudienceLists(ListRecurringAudienceListsRequest $re
595594
* that are important to your business. To learn more, see
596595
* https://support.google.com/analytics/answer/9267572.
597596
*
598-
* This method is introduced at alpha stability with the intention of
599-
* gathering feedback on syntax and capabilities before entering beta. To give
600-
* your feedback on this API, complete the
601-
* [Google Analytics Audience Export API
602-
* Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
597+
* This method is available at beta stability at
598+
* [audienceExports.query](https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties.audienceExports/query).
599+
* To give your feedback on this API, complete the [Google Analytics Audience
600+
* Export API Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
603601
*
604602
* The async variant is {@see AlphaAnalyticsDataClient::queryAudienceListAsync()} .
605603
*

AnalyticsData/src/V1alpha/Gapic/AlphaAnalyticsDataGapicClient.php

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -456,11 +456,10 @@ public function __construct(array $options = [])
456456
* https://support.google.com/analytics/answer/9267572. Audience lists contain
457457
* the users in each audience.
458458
*
459-
* This method is introduced at alpha stability with the intention of
460-
* gathering feedback on syntax and capabilities before entering beta. To give
461-
* your feedback on this API, complete the
462-
* [Google Analytics Audience Export API
463-
* Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
459+
* This method is available at beta stability at
460+
* [audienceExports.create](https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties.audienceExports/create).
461+
* To give your feedback on this API, complete the [Google Analytics Audience
462+
* Export API Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
464463
*
465464
* Sample code:
466465
* ```
@@ -623,9 +622,9 @@ public function createRecurringAudienceList(
623622
* List](https://developers.google.com/analytics/devguides/reporting/data/v1/audience-list-basics)
624623
* for an introduction to Audience Lists with examples.
625624
*
626-
* This method is introduced at alpha stability with the intention of
627-
* gathering feedback on syntax and capabilities before entering beta. To give
628-
* your feedback on this API, complete the
625+
* This method is available at beta stability at
626+
* [audienceExports.get](https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties.audienceExports/get).
627+
* To give your feedback on this API, complete the
629628
* [Google Analytics Audience Export API
630629
* Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
631630
*
@@ -749,9 +748,9 @@ public function getRecurringAudienceList($name, array $optionalArgs = [])
749748
* List](https://developers.google.com/analytics/devguides/reporting/data/v1/audience-list-basics)
750749
* for an introduction to Audience Lists with examples.
751750
*
752-
* This method is introduced at alpha stability with the intention of
753-
* gathering feedback on syntax and capabilities before entering beta. To give
754-
* your feedback on this API, complete the
751+
* This method is available at beta stability at
752+
* [audienceExports.list](https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties.audienceExports/list).
753+
* To give your feedback on this API, complete the
755754
* [Google Analytics Audience Export API
756755
* Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
757756
*
@@ -940,11 +939,10 @@ public function listRecurringAudienceLists(
940939
* that are important to your business. To learn more, see
941940
* https://support.google.com/analytics/answer/9267572.
942941
*
943-
* This method is introduced at alpha stability with the intention of
944-
* gathering feedback on syntax and capabilities before entering beta. To give
945-
* your feedback on this API, complete the
946-
* [Google Analytics Audience Export API
947-
* Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
942+
* This method is available at beta stability at
943+
* [audienceExports.query](https://developers.google.com/analytics/devguides/reporting/data/v1/rest/v1beta/properties.audienceExports/query).
944+
* To give your feedback on this API, complete the [Google Analytics Audience
945+
* Export API Feedback](https://forms.gle/EeA5u5LW6PEggtCEA) form.
948946
*
949947
* Sample code:
950948
* ```

0 commit comments

Comments
 (0)