google-analytics-admin 0.23.5__tar.gz → 0.24.0__tar.gz
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.
- google_analytics_admin-0.24.0/MANIFEST.in +20 -0
- {google_analytics_admin-0.23.5/google_analytics_admin.egg-info → google_analytics_admin-0.24.0}/PKG-INFO +4 -4
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/README.rst +2 -2
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin/__init__.py +19 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin/gapic_version.py +2 -2
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/__init__.py +19 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/gapic_metadata.json +90 -0
- {google_analytics_admin-0.23.5/google/analytics/admin_v1beta → google_analytics_admin-0.24.0/google/analytics/admin_v1alpha}/gapic_version.py +2 -2
- {google_analytics_admin-0.23.5/google/analytics/admin_v1beta → google_analytics_admin-0.24.0/google/analytics/admin_v1alpha}/services/__init__.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/services/analytics_admin_service/__init__.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/services/analytics_admin_service/async_client.py +579 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/services/analytics_admin_service/client.py +585 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/services/analytics_admin_service/pagers.py +161 -1
- {google_analytics_admin-0.23.5/google/analytics/admin_v1beta → google_analytics_admin-0.24.0/google/analytics/admin_v1alpha}/services/analytics_admin_service/transports/__init__.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/services/analytics_admin_service/transports/base.py +100 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/services/analytics_admin_service/transports/grpc.py +189 -3
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/services/analytics_admin_service/transports/grpc_asyncio.py +219 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/services/analytics_admin_service/transports/rest.py +1538 -237
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/services/analytics_admin_service/transports/rest_base.py +319 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/types/__init__.py +19 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/types/access_report.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/types/analytics_admin.py +293 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/types/audience.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/types/channel_group.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/types/event_create_and_edit.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/types/expanded_data_set.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/types/resources.py +202 -21
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/types/subproperty_event_filter.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/__init__.py +1 -1
- {google_analytics_admin-0.23.5/google/analytics/admin_v1alpha → google_analytics_admin-0.24.0/google/analytics/admin_v1beta}/gapic_version.py +2 -2
- {google_analytics_admin-0.23.5/tests → google_analytics_admin-0.24.0/google/analytics/admin_v1beta/services}/__init__.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/services/analytics_admin_service/__init__.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/services/analytics_admin_service/async_client.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/services/analytics_admin_service/client.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/services/analytics_admin_service/pagers.py +1 -1
- {google_analytics_admin-0.23.5/google/analytics/admin_v1alpha → google_analytics_admin-0.24.0/google/analytics/admin_v1beta}/services/analytics_admin_service/transports/__init__.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/services/analytics_admin_service/transports/base.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/services/analytics_admin_service/transports/grpc.py +2 -3
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/services/analytics_admin_service/transports/grpc_asyncio.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/services/analytics_admin_service/transports/rest.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/services/analytics_admin_service/transports/rest_base.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/types/__init__.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/types/access_report.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/types/analytics_admin.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/types/resources.py +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0/google_analytics_admin.egg-info}/PKG-INFO +4 -4
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google_analytics_admin.egg-info/SOURCES.txt +0 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google_analytics_admin.egg-info/requires.txt +1 -1
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/setup.cfg +0 -3
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/setup.py +2 -2
- {google_analytics_admin-0.23.5/tests/unit → google_analytics_admin-0.24.0/tests}/__init__.py +1 -1
- {google_analytics_admin-0.23.5/google/analytics/admin_v1alpha/services → google_analytics_admin-0.24.0/tests/unit}/__init__.py +1 -1
- google_analytics_admin-0.24.0/tests/unit/gapic/__init__.py +15 -0
- google_analytics_admin-0.24.0/tests/unit/gapic/admin_v1alpha/__init__.py +15 -0
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/tests/unit/gapic/admin_v1alpha/test_analytics_admin_service.py +26512 -21485
- google_analytics_admin-0.24.0/tests/unit/gapic/admin_v1beta/__init__.py +15 -0
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/tests/unit/gapic/admin_v1beta/test_analytics_admin_service.py +1 -1
- google_analytics_admin-0.23.5/MANIFEST.in +0 -25
- google_analytics_admin-0.23.5/tests/unit/gapic/__init__.py +0 -15
- google_analytics_admin-0.23.5/tests/unit/gapic/admin_v1alpha/__init__.py +0 -15
- google_analytics_admin-0.23.5/tests/unit/gapic/admin_v1beta/__init__.py +0 -15
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/LICENSE +0 -0
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin/py.typed +0 -0
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1alpha/py.typed +0 -0
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/gapic_metadata.json +0 -0
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin_v1beta/py.typed +0 -0
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google_analytics_admin.egg-info/dependency_links.txt +0 -0
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google_analytics_admin.egg-info/not-zip-safe +0 -0
- {google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google_analytics_admin.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2025 Google LLC
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
#
|
|
16
|
+
include README.rst LICENSE
|
|
17
|
+
recursive-include google *.py *.pyi *.json *.proto py.typed
|
|
18
|
+
recursive-include tests *
|
|
19
|
+
global-exclude *.py[co]
|
|
20
|
+
global-exclude __pycache__
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: google-analytics-admin
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.24.0
|
|
4
4
|
Summary: Google Analytics Admin API client library
|
|
5
5
|
Home-page: https://github.com/googleapis/google-cloud-python/tree/main/packages/google-analytics-admin
|
|
6
6
|
Author: Google LLC
|
|
@@ -27,7 +27,7 @@ Requires-Dist: google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2
|
|
|
27
27
|
Requires-Dist: google-auth!=2.24.0,!=2.25.0,<3.0.0,>=2.14.1
|
|
28
28
|
Requires-Dist: proto-plus<2.0.0,>=1.22.3
|
|
29
29
|
Requires-Dist: proto-plus<2.0.0,>=1.25.0; python_version >= "3.13"
|
|
30
|
-
Requires-Dist: protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<
|
|
30
|
+
Requires-Dist: protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.20.2
|
|
31
31
|
|
|
32
32
|
Python Client for Analytics Admin
|
|
33
33
|
=================================
|
|
@@ -193,7 +193,7 @@ Code-Based Examples
|
|
|
193
193
|
|
|
194
194
|
import logging
|
|
195
195
|
|
|
196
|
-
from google.cloud
|
|
196
|
+
from google.cloud import library_v1
|
|
197
197
|
|
|
198
198
|
base_logger = logging.getLogger("google")
|
|
199
199
|
base_logger.addHandler(logging.StreamHandler())
|
|
@@ -205,7 +205,7 @@ Code-Based Examples
|
|
|
205
205
|
|
|
206
206
|
import logging
|
|
207
207
|
|
|
208
|
-
from google.cloud
|
|
208
|
+
from google.cloud import library_v1
|
|
209
209
|
|
|
210
210
|
base_logger = logging.getLogger("google.cloud.library_v1")
|
|
211
211
|
base_logger.addHandler(logging.StreamHandler())
|
|
@@ -162,7 +162,7 @@ Code-Based Examples
|
|
|
162
162
|
|
|
163
163
|
import logging
|
|
164
164
|
|
|
165
|
-
from google.cloud
|
|
165
|
+
from google.cloud import library_v1
|
|
166
166
|
|
|
167
167
|
base_logger = logging.getLogger("google")
|
|
168
168
|
base_logger.addHandler(logging.StreamHandler())
|
|
@@ -174,7 +174,7 @@ Code-Based Examples
|
|
|
174
174
|
|
|
175
175
|
import logging
|
|
176
176
|
|
|
177
|
-
from google.cloud
|
|
177
|
+
from google.cloud import library_v1
|
|
178
178
|
|
|
179
179
|
base_logger = logging.getLogger("google.cloud.library_v1")
|
|
180
180
|
base_logger.addHandler(logging.StreamHandler())
|
{google_analytics_admin-0.23.5 → google_analytics_admin-0.24.0}/google/analytics/admin/__init__.py
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
|
-
# Copyright
|
|
2
|
+
# Copyright 2025 Google LLC
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
# you may not use this file except in compliance with the License.
|
|
@@ -83,6 +83,7 @@ from google.analytics.admin_v1alpha.types.analytics_admin import (
|
|
|
83
83
|
CreateKeyEventRequest,
|
|
84
84
|
CreateMeasurementProtocolSecretRequest,
|
|
85
85
|
CreatePropertyRequest,
|
|
86
|
+
CreateReportingDataAnnotationRequest,
|
|
86
87
|
CreateRollupPropertyRequest,
|
|
87
88
|
CreateRollupPropertyResponse,
|
|
88
89
|
CreateRollupPropertySourceLinkRequest,
|
|
@@ -108,6 +109,7 @@ from google.analytics.admin_v1alpha.types.analytics_admin import (
|
|
|
108
109
|
DeleteKeyEventRequest,
|
|
109
110
|
DeleteMeasurementProtocolSecretRequest,
|
|
110
111
|
DeletePropertyRequest,
|
|
112
|
+
DeleteReportingDataAnnotationRequest,
|
|
111
113
|
DeleteRollupPropertySourceLinkRequest,
|
|
112
114
|
DeleteSearchAds360LinkRequest,
|
|
113
115
|
DeleteSKAdNetworkConversionValueSchemaRequest,
|
|
@@ -142,6 +144,7 @@ from google.analytics.admin_v1alpha.types.analytics_admin import (
|
|
|
142
144
|
GetKeyEventRequest,
|
|
143
145
|
GetMeasurementProtocolSecretRequest,
|
|
144
146
|
GetPropertyRequest,
|
|
147
|
+
GetReportingDataAnnotationRequest,
|
|
145
148
|
GetRollupPropertySourceLinkRequest,
|
|
146
149
|
GetSearchAds360LinkRequest,
|
|
147
150
|
GetSKAdNetworkConversionValueSchemaRequest,
|
|
@@ -192,6 +195,8 @@ from google.analytics.admin_v1alpha.types.analytics_admin import (
|
|
|
192
195
|
ListMeasurementProtocolSecretsResponse,
|
|
193
196
|
ListPropertiesRequest,
|
|
194
197
|
ListPropertiesResponse,
|
|
198
|
+
ListReportingDataAnnotationsRequest,
|
|
199
|
+
ListReportingDataAnnotationsResponse,
|
|
195
200
|
ListRollupPropertySourceLinksRequest,
|
|
196
201
|
ListRollupPropertySourceLinksResponse,
|
|
197
202
|
ListSearchAds360LinksRequest,
|
|
@@ -211,6 +216,8 @@ from google.analytics.admin_v1alpha.types.analytics_admin import (
|
|
|
211
216
|
SearchChangeHistoryEventsResponse,
|
|
212
217
|
SetAutomatedGa4ConfigurationOptOutRequest,
|
|
213
218
|
SetAutomatedGa4ConfigurationOptOutResponse,
|
|
219
|
+
SubmitUserDeletionRequest,
|
|
220
|
+
SubmitUserDeletionResponse,
|
|
214
221
|
UpdateAccessBindingRequest,
|
|
215
222
|
UpdateAccountRequest,
|
|
216
223
|
UpdateAttributionSettingsRequest,
|
|
@@ -234,6 +241,7 @@ from google.analytics.admin_v1alpha.types.analytics_admin import (
|
|
|
234
241
|
UpdateKeyEventRequest,
|
|
235
242
|
UpdateMeasurementProtocolSecretRequest,
|
|
236
243
|
UpdatePropertyRequest,
|
|
244
|
+
UpdateReportingDataAnnotationRequest,
|
|
237
245
|
UpdateSearchAds360LinkRequest,
|
|
238
246
|
UpdateSKAdNetworkConversionValueSchemaRequest,
|
|
239
247
|
UpdateSubpropertyEventFilterRequest,
|
|
@@ -312,6 +320,7 @@ from google.analytics.admin_v1alpha.types.resources import (
|
|
|
312
320
|
Property,
|
|
313
321
|
PropertySummary,
|
|
314
322
|
PropertyType,
|
|
323
|
+
ReportingDataAnnotation,
|
|
315
324
|
RollupPropertySourceLink,
|
|
316
325
|
SearchAds360Link,
|
|
317
326
|
ServiceLevel,
|
|
@@ -384,6 +393,7 @@ __all__ = (
|
|
|
384
393
|
"CreateKeyEventRequest",
|
|
385
394
|
"CreateMeasurementProtocolSecretRequest",
|
|
386
395
|
"CreatePropertyRequest",
|
|
396
|
+
"CreateReportingDataAnnotationRequest",
|
|
387
397
|
"CreateRollupPropertyRequest",
|
|
388
398
|
"CreateRollupPropertyResponse",
|
|
389
399
|
"CreateRollupPropertySourceLinkRequest",
|
|
@@ -409,6 +419,7 @@ __all__ = (
|
|
|
409
419
|
"DeleteKeyEventRequest",
|
|
410
420
|
"DeleteMeasurementProtocolSecretRequest",
|
|
411
421
|
"DeletePropertyRequest",
|
|
422
|
+
"DeleteReportingDataAnnotationRequest",
|
|
412
423
|
"DeleteRollupPropertySourceLinkRequest",
|
|
413
424
|
"DeleteSearchAds360LinkRequest",
|
|
414
425
|
"DeleteSKAdNetworkConversionValueSchemaRequest",
|
|
@@ -443,6 +454,7 @@ __all__ = (
|
|
|
443
454
|
"GetKeyEventRequest",
|
|
444
455
|
"GetMeasurementProtocolSecretRequest",
|
|
445
456
|
"GetPropertyRequest",
|
|
457
|
+
"GetReportingDataAnnotationRequest",
|
|
446
458
|
"GetRollupPropertySourceLinkRequest",
|
|
447
459
|
"GetSearchAds360LinkRequest",
|
|
448
460
|
"GetSKAdNetworkConversionValueSchemaRequest",
|
|
@@ -493,6 +505,8 @@ __all__ = (
|
|
|
493
505
|
"ListMeasurementProtocolSecretsResponse",
|
|
494
506
|
"ListPropertiesRequest",
|
|
495
507
|
"ListPropertiesResponse",
|
|
508
|
+
"ListReportingDataAnnotationsRequest",
|
|
509
|
+
"ListReportingDataAnnotationsResponse",
|
|
496
510
|
"ListRollupPropertySourceLinksRequest",
|
|
497
511
|
"ListRollupPropertySourceLinksResponse",
|
|
498
512
|
"ListSearchAds360LinksRequest",
|
|
@@ -512,6 +526,8 @@ __all__ = (
|
|
|
512
526
|
"SearchChangeHistoryEventsResponse",
|
|
513
527
|
"SetAutomatedGa4ConfigurationOptOutRequest",
|
|
514
528
|
"SetAutomatedGa4ConfigurationOptOutResponse",
|
|
529
|
+
"SubmitUserDeletionRequest",
|
|
530
|
+
"SubmitUserDeletionResponse",
|
|
515
531
|
"UpdateAccessBindingRequest",
|
|
516
532
|
"UpdateAccountRequest",
|
|
517
533
|
"UpdateAttributionSettingsRequest",
|
|
@@ -535,6 +551,7 @@ __all__ = (
|
|
|
535
551
|
"UpdateKeyEventRequest",
|
|
536
552
|
"UpdateMeasurementProtocolSecretRequest",
|
|
537
553
|
"UpdatePropertyRequest",
|
|
554
|
+
"UpdateReportingDataAnnotationRequest",
|
|
538
555
|
"UpdateSearchAds360LinkRequest",
|
|
539
556
|
"UpdateSKAdNetworkConversionValueSchemaRequest",
|
|
540
557
|
"UpdateSubpropertyEventFilterRequest",
|
|
@@ -593,6 +610,7 @@ __all__ = (
|
|
|
593
610
|
"PostbackWindow",
|
|
594
611
|
"Property",
|
|
595
612
|
"PropertySummary",
|
|
613
|
+
"ReportingDataAnnotation",
|
|
596
614
|
"RollupPropertySourceLink",
|
|
597
615
|
"SearchAds360Link",
|
|
598
616
|
"SKAdNetworkConversionValueSchema",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
|
-
# Copyright
|
|
2
|
+
# Copyright 2025 Google LLC
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
# you may not use this file except in compliance with the License.
|
|
@@ -13,4 +13,4 @@
|
|
|
13
13
|
# See the License for the specific language governing permissions and
|
|
14
14
|
# limitations under the License.
|
|
15
15
|
#
|
|
16
|
-
__version__ = "0.
|
|
16
|
+
__version__ = "0.24.0" # {x-release-please-version}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
|
-
# Copyright
|
|
2
|
+
# Copyright 2025 Google LLC
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
# you may not use this file except in compliance with the License.
|
|
@@ -81,6 +81,7 @@ from .types.analytics_admin import (
|
|
|
81
81
|
CreateKeyEventRequest,
|
|
82
82
|
CreateMeasurementProtocolSecretRequest,
|
|
83
83
|
CreatePropertyRequest,
|
|
84
|
+
CreateReportingDataAnnotationRequest,
|
|
84
85
|
CreateRollupPropertyRequest,
|
|
85
86
|
CreateRollupPropertyResponse,
|
|
86
87
|
CreateRollupPropertySourceLinkRequest,
|
|
@@ -106,6 +107,7 @@ from .types.analytics_admin import (
|
|
|
106
107
|
DeleteKeyEventRequest,
|
|
107
108
|
DeleteMeasurementProtocolSecretRequest,
|
|
108
109
|
DeletePropertyRequest,
|
|
110
|
+
DeleteReportingDataAnnotationRequest,
|
|
109
111
|
DeleteRollupPropertySourceLinkRequest,
|
|
110
112
|
DeleteSearchAds360LinkRequest,
|
|
111
113
|
DeleteSKAdNetworkConversionValueSchemaRequest,
|
|
@@ -140,6 +142,7 @@ from .types.analytics_admin import (
|
|
|
140
142
|
GetKeyEventRequest,
|
|
141
143
|
GetMeasurementProtocolSecretRequest,
|
|
142
144
|
GetPropertyRequest,
|
|
145
|
+
GetReportingDataAnnotationRequest,
|
|
143
146
|
GetRollupPropertySourceLinkRequest,
|
|
144
147
|
GetSearchAds360LinkRequest,
|
|
145
148
|
GetSKAdNetworkConversionValueSchemaRequest,
|
|
@@ -190,6 +193,8 @@ from .types.analytics_admin import (
|
|
|
190
193
|
ListMeasurementProtocolSecretsResponse,
|
|
191
194
|
ListPropertiesRequest,
|
|
192
195
|
ListPropertiesResponse,
|
|
196
|
+
ListReportingDataAnnotationsRequest,
|
|
197
|
+
ListReportingDataAnnotationsResponse,
|
|
193
198
|
ListRollupPropertySourceLinksRequest,
|
|
194
199
|
ListRollupPropertySourceLinksResponse,
|
|
195
200
|
ListSearchAds360LinksRequest,
|
|
@@ -209,6 +214,8 @@ from .types.analytics_admin import (
|
|
|
209
214
|
SearchChangeHistoryEventsResponse,
|
|
210
215
|
SetAutomatedGa4ConfigurationOptOutRequest,
|
|
211
216
|
SetAutomatedGa4ConfigurationOptOutResponse,
|
|
217
|
+
SubmitUserDeletionRequest,
|
|
218
|
+
SubmitUserDeletionResponse,
|
|
212
219
|
UpdateAccessBindingRequest,
|
|
213
220
|
UpdateAccountRequest,
|
|
214
221
|
UpdateAttributionSettingsRequest,
|
|
@@ -232,6 +239,7 @@ from .types.analytics_admin import (
|
|
|
232
239
|
UpdateKeyEventRequest,
|
|
233
240
|
UpdateMeasurementProtocolSecretRequest,
|
|
234
241
|
UpdatePropertyRequest,
|
|
242
|
+
UpdateReportingDataAnnotationRequest,
|
|
235
243
|
UpdateSearchAds360LinkRequest,
|
|
236
244
|
UpdateSKAdNetworkConversionValueSchemaRequest,
|
|
237
245
|
UpdateSubpropertyEventFilterRequest,
|
|
@@ -310,6 +318,7 @@ from .types.resources import (
|
|
|
310
318
|
Property,
|
|
311
319
|
PropertySummary,
|
|
312
320
|
PropertyType,
|
|
321
|
+
ReportingDataAnnotation,
|
|
313
322
|
RollupPropertySourceLink,
|
|
314
323
|
SearchAds360Link,
|
|
315
324
|
ServiceLevel,
|
|
@@ -411,6 +420,7 @@ __all__ = (
|
|
|
411
420
|
"CreateKeyEventRequest",
|
|
412
421
|
"CreateMeasurementProtocolSecretRequest",
|
|
413
422
|
"CreatePropertyRequest",
|
|
423
|
+
"CreateReportingDataAnnotationRequest",
|
|
414
424
|
"CreateRollupPropertyRequest",
|
|
415
425
|
"CreateRollupPropertyResponse",
|
|
416
426
|
"CreateRollupPropertySourceLinkRequest",
|
|
@@ -442,6 +452,7 @@ __all__ = (
|
|
|
442
452
|
"DeleteKeyEventRequest",
|
|
443
453
|
"DeleteMeasurementProtocolSecretRequest",
|
|
444
454
|
"DeletePropertyRequest",
|
|
455
|
+
"DeleteReportingDataAnnotationRequest",
|
|
445
456
|
"DeleteRollupPropertySourceLinkRequest",
|
|
446
457
|
"DeleteSKAdNetworkConversionValueSchemaRequest",
|
|
447
458
|
"DeleteSearchAds360LinkRequest",
|
|
@@ -487,6 +498,7 @@ __all__ = (
|
|
|
487
498
|
"GetKeyEventRequest",
|
|
488
499
|
"GetMeasurementProtocolSecretRequest",
|
|
489
500
|
"GetPropertyRequest",
|
|
501
|
+
"GetReportingDataAnnotationRequest",
|
|
490
502
|
"GetRollupPropertySourceLinkRequest",
|
|
491
503
|
"GetSKAdNetworkConversionValueSchemaRequest",
|
|
492
504
|
"GetSearchAds360LinkRequest",
|
|
@@ -548,6 +560,8 @@ __all__ = (
|
|
|
548
560
|
"ListMeasurementProtocolSecretsResponse",
|
|
549
561
|
"ListPropertiesRequest",
|
|
550
562
|
"ListPropertiesResponse",
|
|
563
|
+
"ListReportingDataAnnotationsRequest",
|
|
564
|
+
"ListReportingDataAnnotationsResponse",
|
|
551
565
|
"ListRollupPropertySourceLinksRequest",
|
|
552
566
|
"ListRollupPropertySourceLinksResponse",
|
|
553
567
|
"ListSKAdNetworkConversionValueSchemasRequest",
|
|
@@ -569,6 +583,7 @@ __all__ = (
|
|
|
569
583
|
"ProvisionSubpropertyRequest",
|
|
570
584
|
"ProvisionSubpropertyResponse",
|
|
571
585
|
"ReorderEventEditRulesRequest",
|
|
586
|
+
"ReportingDataAnnotation",
|
|
572
587
|
"RollupPropertySourceLink",
|
|
573
588
|
"RunAccessReportRequest",
|
|
574
589
|
"RunAccessReportResponse",
|
|
@@ -579,6 +594,8 @@ __all__ = (
|
|
|
579
594
|
"ServiceLevel",
|
|
580
595
|
"SetAutomatedGa4ConfigurationOptOutRequest",
|
|
581
596
|
"SetAutomatedGa4ConfigurationOptOutResponse",
|
|
597
|
+
"SubmitUserDeletionRequest",
|
|
598
|
+
"SubmitUserDeletionResponse",
|
|
582
599
|
"SubpropertyEventFilter",
|
|
583
600
|
"SubpropertyEventFilterClause",
|
|
584
601
|
"SubpropertyEventFilterCondition",
|
|
@@ -607,6 +624,7 @@ __all__ = (
|
|
|
607
624
|
"UpdateKeyEventRequest",
|
|
608
625
|
"UpdateMeasurementProtocolSecretRequest",
|
|
609
626
|
"UpdatePropertyRequest",
|
|
627
|
+
"UpdateReportingDataAnnotationRequest",
|
|
610
628
|
"UpdateSKAdNetworkConversionValueSchemaRequest",
|
|
611
629
|
"UpdateSearchAds360LinkRequest",
|
|
612
630
|
"UpdateSubpropertyEventFilterRequest",
|
|
@@ -165,6 +165,11 @@
|
|
|
165
165
|
"create_property"
|
|
166
166
|
]
|
|
167
167
|
},
|
|
168
|
+
"CreateReportingDataAnnotation": {
|
|
169
|
+
"methods": [
|
|
170
|
+
"create_reporting_data_annotation"
|
|
171
|
+
]
|
|
172
|
+
},
|
|
168
173
|
"CreateRollupProperty": {
|
|
169
174
|
"methods": [
|
|
170
175
|
"create_rollup_property"
|
|
@@ -285,6 +290,11 @@
|
|
|
285
290
|
"delete_property"
|
|
286
291
|
]
|
|
287
292
|
},
|
|
293
|
+
"DeleteReportingDataAnnotation": {
|
|
294
|
+
"methods": [
|
|
295
|
+
"delete_reporting_data_annotation"
|
|
296
|
+
]
|
|
297
|
+
},
|
|
288
298
|
"DeleteRollupPropertySourceLink": {
|
|
289
299
|
"methods": [
|
|
290
300
|
"delete_rollup_property_source_link"
|
|
@@ -445,6 +455,11 @@
|
|
|
445
455
|
"get_property"
|
|
446
456
|
]
|
|
447
457
|
},
|
|
458
|
+
"GetReportingDataAnnotation": {
|
|
459
|
+
"methods": [
|
|
460
|
+
"get_reporting_data_annotation"
|
|
461
|
+
]
|
|
462
|
+
},
|
|
448
463
|
"GetRollupPropertySourceLink": {
|
|
449
464
|
"methods": [
|
|
450
465
|
"get_rollup_property_source_link"
|
|
@@ -580,6 +595,11 @@
|
|
|
580
595
|
"list_properties"
|
|
581
596
|
]
|
|
582
597
|
},
|
|
598
|
+
"ListReportingDataAnnotations": {
|
|
599
|
+
"methods": [
|
|
600
|
+
"list_reporting_data_annotations"
|
|
601
|
+
]
|
|
602
|
+
},
|
|
583
603
|
"ListRollupPropertySourceLinks": {
|
|
584
604
|
"methods": [
|
|
585
605
|
"list_rollup_property_source_links"
|
|
@@ -630,6 +650,11 @@
|
|
|
630
650
|
"set_automated_ga4_configuration_opt_out"
|
|
631
651
|
]
|
|
632
652
|
},
|
|
653
|
+
"SubmitUserDeletion": {
|
|
654
|
+
"methods": [
|
|
655
|
+
"submit_user_deletion"
|
|
656
|
+
]
|
|
657
|
+
},
|
|
633
658
|
"UpdateAccessBinding": {
|
|
634
659
|
"methods": [
|
|
635
660
|
"update_access_binding"
|
|
@@ -745,6 +770,11 @@
|
|
|
745
770
|
"update_property"
|
|
746
771
|
]
|
|
747
772
|
},
|
|
773
|
+
"UpdateReportingDataAnnotation": {
|
|
774
|
+
"methods": [
|
|
775
|
+
"update_reporting_data_annotation"
|
|
776
|
+
]
|
|
777
|
+
},
|
|
748
778
|
"UpdateSKAdNetworkConversionValueSchema": {
|
|
749
779
|
"methods": [
|
|
750
780
|
"update_sk_ad_network_conversion_value_schema"
|
|
@@ -920,6 +950,11 @@
|
|
|
920
950
|
"create_property"
|
|
921
951
|
]
|
|
922
952
|
},
|
|
953
|
+
"CreateReportingDataAnnotation": {
|
|
954
|
+
"methods": [
|
|
955
|
+
"create_reporting_data_annotation"
|
|
956
|
+
]
|
|
957
|
+
},
|
|
923
958
|
"CreateRollupProperty": {
|
|
924
959
|
"methods": [
|
|
925
960
|
"create_rollup_property"
|
|
@@ -1040,6 +1075,11 @@
|
|
|
1040
1075
|
"delete_property"
|
|
1041
1076
|
]
|
|
1042
1077
|
},
|
|
1078
|
+
"DeleteReportingDataAnnotation": {
|
|
1079
|
+
"methods": [
|
|
1080
|
+
"delete_reporting_data_annotation"
|
|
1081
|
+
]
|
|
1082
|
+
},
|
|
1043
1083
|
"DeleteRollupPropertySourceLink": {
|
|
1044
1084
|
"methods": [
|
|
1045
1085
|
"delete_rollup_property_source_link"
|
|
@@ -1200,6 +1240,11 @@
|
|
|
1200
1240
|
"get_property"
|
|
1201
1241
|
]
|
|
1202
1242
|
},
|
|
1243
|
+
"GetReportingDataAnnotation": {
|
|
1244
|
+
"methods": [
|
|
1245
|
+
"get_reporting_data_annotation"
|
|
1246
|
+
]
|
|
1247
|
+
},
|
|
1203
1248
|
"GetRollupPropertySourceLink": {
|
|
1204
1249
|
"methods": [
|
|
1205
1250
|
"get_rollup_property_source_link"
|
|
@@ -1335,6 +1380,11 @@
|
|
|
1335
1380
|
"list_properties"
|
|
1336
1381
|
]
|
|
1337
1382
|
},
|
|
1383
|
+
"ListReportingDataAnnotations": {
|
|
1384
|
+
"methods": [
|
|
1385
|
+
"list_reporting_data_annotations"
|
|
1386
|
+
]
|
|
1387
|
+
},
|
|
1338
1388
|
"ListRollupPropertySourceLinks": {
|
|
1339
1389
|
"methods": [
|
|
1340
1390
|
"list_rollup_property_source_links"
|
|
@@ -1385,6 +1435,11 @@
|
|
|
1385
1435
|
"set_automated_ga4_configuration_opt_out"
|
|
1386
1436
|
]
|
|
1387
1437
|
},
|
|
1438
|
+
"SubmitUserDeletion": {
|
|
1439
|
+
"methods": [
|
|
1440
|
+
"submit_user_deletion"
|
|
1441
|
+
]
|
|
1442
|
+
},
|
|
1388
1443
|
"UpdateAccessBinding": {
|
|
1389
1444
|
"methods": [
|
|
1390
1445
|
"update_access_binding"
|
|
@@ -1500,6 +1555,11 @@
|
|
|
1500
1555
|
"update_property"
|
|
1501
1556
|
]
|
|
1502
1557
|
},
|
|
1558
|
+
"UpdateReportingDataAnnotation": {
|
|
1559
|
+
"methods": [
|
|
1560
|
+
"update_reporting_data_annotation"
|
|
1561
|
+
]
|
|
1562
|
+
},
|
|
1503
1563
|
"UpdateSKAdNetworkConversionValueSchema": {
|
|
1504
1564
|
"methods": [
|
|
1505
1565
|
"update_sk_ad_network_conversion_value_schema"
|
|
@@ -1675,6 +1735,11 @@
|
|
|
1675
1735
|
"create_property"
|
|
1676
1736
|
]
|
|
1677
1737
|
},
|
|
1738
|
+
"CreateReportingDataAnnotation": {
|
|
1739
|
+
"methods": [
|
|
1740
|
+
"create_reporting_data_annotation"
|
|
1741
|
+
]
|
|
1742
|
+
},
|
|
1678
1743
|
"CreateRollupProperty": {
|
|
1679
1744
|
"methods": [
|
|
1680
1745
|
"create_rollup_property"
|
|
@@ -1795,6 +1860,11 @@
|
|
|
1795
1860
|
"delete_property"
|
|
1796
1861
|
]
|
|
1797
1862
|
},
|
|
1863
|
+
"DeleteReportingDataAnnotation": {
|
|
1864
|
+
"methods": [
|
|
1865
|
+
"delete_reporting_data_annotation"
|
|
1866
|
+
]
|
|
1867
|
+
},
|
|
1798
1868
|
"DeleteRollupPropertySourceLink": {
|
|
1799
1869
|
"methods": [
|
|
1800
1870
|
"delete_rollup_property_source_link"
|
|
@@ -1955,6 +2025,11 @@
|
|
|
1955
2025
|
"get_property"
|
|
1956
2026
|
]
|
|
1957
2027
|
},
|
|
2028
|
+
"GetReportingDataAnnotation": {
|
|
2029
|
+
"methods": [
|
|
2030
|
+
"get_reporting_data_annotation"
|
|
2031
|
+
]
|
|
2032
|
+
},
|
|
1958
2033
|
"GetRollupPropertySourceLink": {
|
|
1959
2034
|
"methods": [
|
|
1960
2035
|
"get_rollup_property_source_link"
|
|
@@ -2090,6 +2165,11 @@
|
|
|
2090
2165
|
"list_properties"
|
|
2091
2166
|
]
|
|
2092
2167
|
},
|
|
2168
|
+
"ListReportingDataAnnotations": {
|
|
2169
|
+
"methods": [
|
|
2170
|
+
"list_reporting_data_annotations"
|
|
2171
|
+
]
|
|
2172
|
+
},
|
|
2093
2173
|
"ListRollupPropertySourceLinks": {
|
|
2094
2174
|
"methods": [
|
|
2095
2175
|
"list_rollup_property_source_links"
|
|
@@ -2140,6 +2220,11 @@
|
|
|
2140
2220
|
"set_automated_ga4_configuration_opt_out"
|
|
2141
2221
|
]
|
|
2142
2222
|
},
|
|
2223
|
+
"SubmitUserDeletion": {
|
|
2224
|
+
"methods": [
|
|
2225
|
+
"submit_user_deletion"
|
|
2226
|
+
]
|
|
2227
|
+
},
|
|
2143
2228
|
"UpdateAccessBinding": {
|
|
2144
2229
|
"methods": [
|
|
2145
2230
|
"update_access_binding"
|
|
@@ -2255,6 +2340,11 @@
|
|
|
2255
2340
|
"update_property"
|
|
2256
2341
|
]
|
|
2257
2342
|
},
|
|
2343
|
+
"UpdateReportingDataAnnotation": {
|
|
2344
|
+
"methods": [
|
|
2345
|
+
"update_reporting_data_annotation"
|
|
2346
|
+
]
|
|
2347
|
+
},
|
|
2258
2348
|
"UpdateSKAdNetworkConversionValueSchema": {
|
|
2259
2349
|
"methods": [
|
|
2260
2350
|
"update_sk_ad_network_conversion_value_schema"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
|
-
# Copyright
|
|
2
|
+
# Copyright 2025 Google LLC
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
5
|
# you may not use this file except in compliance with the License.
|
|
@@ -13,4 +13,4 @@
|
|
|
13
13
|
# See the License for the specific language governing permissions and
|
|
14
14
|
# limitations under the License.
|
|
15
15
|
#
|
|
16
|
-
__version__ = "0.
|
|
16
|
+
__version__ = "0.24.0" # {x-release-please-version}
|