google-analytics-admin 0.23.6__tar.gz → 0.24.1__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.1/MANIFEST.in +20 -0
- {google_analytics_admin-0.23.6/google_analytics_admin.egg-info → google_analytics_admin-0.24.1}/PKG-INFO +15 -4
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/README.rst +2 -2
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin/__init__.py +29 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin/gapic_version.py +2 -2
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/__init__.py +29 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/gapic_metadata.json +135 -0
- {google_analytics_admin-0.23.6/google/analytics/admin_v1beta → google_analytics_admin-0.24.1/google/analytics/admin_v1alpha}/gapic_version.py +2 -2
- {google_analytics_admin-0.23.6/google/analytics/admin_v1beta → google_analytics_admin-0.24.1/google/analytics/admin_v1alpha}/services/__init__.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/services/analytics_admin_service/__init__.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/services/analytics_admin_service/async_client.py +901 -8
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/services/analytics_admin_service/client.py +910 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/services/analytics_admin_service/pagers.py +321 -1
- {google_analytics_admin-0.23.6/google/analytics/admin_v1beta → google_analytics_admin-0.24.1/google/analytics/admin_v1alpha}/services/analytics_admin_service/transports/__init__.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/services/analytics_admin_service/transports/base.py +153 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/services/analytics_admin_service/transports/grpc.py +282 -3
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/services/analytics_admin_service/transports/grpc_asyncio.py +327 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/services/analytics_admin_service/transports/rest.py +2351 -356
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/services/analytics_admin_service/transports/rest_base.py +470 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/types/__init__.py +29 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/types/access_report.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/types/analytics_admin.py +414 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/types/audience.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/types/channel_group.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/types/event_create_and_edit.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/types/expanded_data_set.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/types/resources.py +282 -21
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/types/subproperty_event_filter.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/__init__.py +1 -1
- {google_analytics_admin-0.23.6/google/analytics/admin_v1alpha → google_analytics_admin-0.24.1/google/analytics/admin_v1beta}/gapic_version.py +2 -2
- {google_analytics_admin-0.23.6/tests → google_analytics_admin-0.24.1/google/analytics/admin_v1beta/services}/__init__.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/services/analytics_admin_service/__init__.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/services/analytics_admin_service/async_client.py +5 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/services/analytics_admin_service/client.py +4 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/services/analytics_admin_service/pagers.py +1 -1
- {google_analytics_admin-0.23.6/google/analytics/admin_v1alpha → google_analytics_admin-0.24.1/google/analytics/admin_v1beta}/services/analytics_admin_service/transports/__init__.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/services/analytics_admin_service/transports/base.py +5 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/services/analytics_admin_service/transports/grpc.py +2 -3
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/services/analytics_admin_service/transports/grpc_asyncio.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/services/analytics_admin_service/transports/rest.py +5 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/services/analytics_admin_service/transports/rest_base.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/types/__init__.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/types/access_report.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/types/analytics_admin.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/types/resources.py +1 -1
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1/google_analytics_admin.egg-info}/PKG-INFO +15 -4
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/setup.py +1 -1
- {google_analytics_admin-0.23.6/tests/unit → google_analytics_admin-0.24.1/tests}/__init__.py +1 -1
- {google_analytics_admin-0.23.6/google/analytics/admin_v1alpha/services → google_analytics_admin-0.24.1/tests/unit}/__init__.py +1 -1
- google_analytics_admin-0.24.1/tests/unit/gapic/__init__.py +15 -0
- google_analytics_admin-0.24.1/tests/unit/gapic/admin_v1alpha/__init__.py +15 -0
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/tests/unit/gapic/admin_v1alpha/test_analytics_admin_service.py +28610 -20910
- google_analytics_admin-0.24.1/tests/unit/gapic/admin_v1beta/__init__.py +15 -0
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/tests/unit/gapic/admin_v1beta/test_analytics_admin_service.py +1 -1
- google_analytics_admin-0.23.6/MANIFEST.in +0 -25
- google_analytics_admin-0.23.6/tests/unit/gapic/__init__.py +0 -15
- google_analytics_admin-0.23.6/tests/unit/gapic/admin_v1alpha/__init__.py +0 -15
- google_analytics_admin-0.23.6/tests/unit/gapic/admin_v1beta/__init__.py +0 -15
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/LICENSE +0 -0
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin/py.typed +0 -0
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1alpha/py.typed +0 -0
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/gapic_metadata.json +0 -0
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google/analytics/admin_v1beta/py.typed +0 -0
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google_analytics_admin.egg-info/SOURCES.txt +0 -0
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google_analytics_admin.egg-info/dependency_links.txt +0 -0
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google_analytics_admin.egg-info/not-zip-safe +0 -0
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google_analytics_admin.egg-info/requires.txt +0 -0
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/google_analytics_admin.egg-info/top_level.txt +0 -0
- {google_analytics_admin-0.23.6 → google_analytics_admin-0.24.1}/setup.cfg +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
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: google-analytics-admin
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.24.1
|
|
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
|
|
@@ -28,6 +28,17 @@ 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
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
|
+
Dynamic: author
|
|
32
|
+
Dynamic: author-email
|
|
33
|
+
Dynamic: classifier
|
|
34
|
+
Dynamic: description
|
|
35
|
+
Dynamic: home-page
|
|
36
|
+
Dynamic: license
|
|
37
|
+
Dynamic: license-file
|
|
38
|
+
Dynamic: platform
|
|
39
|
+
Dynamic: requires-dist
|
|
40
|
+
Dynamic: requires-python
|
|
41
|
+
Dynamic: summary
|
|
31
42
|
|
|
32
43
|
Python Client for Analytics Admin
|
|
33
44
|
=================================
|
|
@@ -193,7 +204,7 @@ Code-Based Examples
|
|
|
193
204
|
|
|
194
205
|
import logging
|
|
195
206
|
|
|
196
|
-
from google.cloud
|
|
207
|
+
from google.cloud import library_v1
|
|
197
208
|
|
|
198
209
|
base_logger = logging.getLogger("google")
|
|
199
210
|
base_logger.addHandler(logging.StreamHandler())
|
|
@@ -205,7 +216,7 @@ Code-Based Examples
|
|
|
205
216
|
|
|
206
217
|
import logging
|
|
207
218
|
|
|
208
|
-
from google.cloud
|
|
219
|
+
from google.cloud import library_v1
|
|
209
220
|
|
|
210
221
|
base_logger = logging.getLogger("google.cloud.library_v1")
|
|
211
222
|
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.6 → google_analytics_admin-0.24.1}/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,10 +144,12 @@ 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,
|
|
148
151
|
GetSubpropertyEventFilterRequest,
|
|
152
|
+
GetSubpropertySyncConfigRequest,
|
|
149
153
|
ListAccessBindingsRequest,
|
|
150
154
|
ListAccessBindingsResponse,
|
|
151
155
|
ListAccountsRequest,
|
|
@@ -192,6 +196,8 @@ from google.analytics.admin_v1alpha.types.analytics_admin import (
|
|
|
192
196
|
ListMeasurementProtocolSecretsResponse,
|
|
193
197
|
ListPropertiesRequest,
|
|
194
198
|
ListPropertiesResponse,
|
|
199
|
+
ListReportingDataAnnotationsRequest,
|
|
200
|
+
ListReportingDataAnnotationsResponse,
|
|
195
201
|
ListRollupPropertySourceLinksRequest,
|
|
196
202
|
ListRollupPropertySourceLinksResponse,
|
|
197
203
|
ListSearchAds360LinksRequest,
|
|
@@ -200,6 +206,8 @@ from google.analytics.admin_v1alpha.types.analytics_admin import (
|
|
|
200
206
|
ListSKAdNetworkConversionValueSchemasResponse,
|
|
201
207
|
ListSubpropertyEventFiltersRequest,
|
|
202
208
|
ListSubpropertyEventFiltersResponse,
|
|
209
|
+
ListSubpropertySyncConfigsRequest,
|
|
210
|
+
ListSubpropertySyncConfigsResponse,
|
|
203
211
|
ProvisionAccountTicketRequest,
|
|
204
212
|
ProvisionAccountTicketResponse,
|
|
205
213
|
ProvisionSubpropertyRequest,
|
|
@@ -211,6 +219,8 @@ from google.analytics.admin_v1alpha.types.analytics_admin import (
|
|
|
211
219
|
SearchChangeHistoryEventsResponse,
|
|
212
220
|
SetAutomatedGa4ConfigurationOptOutRequest,
|
|
213
221
|
SetAutomatedGa4ConfigurationOptOutResponse,
|
|
222
|
+
SubmitUserDeletionRequest,
|
|
223
|
+
SubmitUserDeletionResponse,
|
|
214
224
|
UpdateAccessBindingRequest,
|
|
215
225
|
UpdateAccountRequest,
|
|
216
226
|
UpdateAttributionSettingsRequest,
|
|
@@ -234,9 +244,11 @@ from google.analytics.admin_v1alpha.types.analytics_admin import (
|
|
|
234
244
|
UpdateKeyEventRequest,
|
|
235
245
|
UpdateMeasurementProtocolSecretRequest,
|
|
236
246
|
UpdatePropertyRequest,
|
|
247
|
+
UpdateReportingDataAnnotationRequest,
|
|
237
248
|
UpdateSearchAds360LinkRequest,
|
|
238
249
|
UpdateSKAdNetworkConversionValueSchemaRequest,
|
|
239
250
|
UpdateSubpropertyEventFilterRequest,
|
|
251
|
+
UpdateSubpropertySyncConfigRequest,
|
|
240
252
|
)
|
|
241
253
|
from google.analytics.admin_v1alpha.types.audience import (
|
|
242
254
|
Audience,
|
|
@@ -312,10 +324,12 @@ from google.analytics.admin_v1alpha.types.resources import (
|
|
|
312
324
|
Property,
|
|
313
325
|
PropertySummary,
|
|
314
326
|
PropertyType,
|
|
327
|
+
ReportingDataAnnotation,
|
|
315
328
|
RollupPropertySourceLink,
|
|
316
329
|
SearchAds360Link,
|
|
317
330
|
ServiceLevel,
|
|
318
331
|
SKAdNetworkConversionValueSchema,
|
|
332
|
+
SubpropertySyncConfig,
|
|
319
333
|
)
|
|
320
334
|
from google.analytics.admin_v1alpha.types.subproperty_event_filter import (
|
|
321
335
|
SubpropertyEventFilter,
|
|
@@ -384,6 +398,7 @@ __all__ = (
|
|
|
384
398
|
"CreateKeyEventRequest",
|
|
385
399
|
"CreateMeasurementProtocolSecretRequest",
|
|
386
400
|
"CreatePropertyRequest",
|
|
401
|
+
"CreateReportingDataAnnotationRequest",
|
|
387
402
|
"CreateRollupPropertyRequest",
|
|
388
403
|
"CreateRollupPropertyResponse",
|
|
389
404
|
"CreateRollupPropertySourceLinkRequest",
|
|
@@ -409,6 +424,7 @@ __all__ = (
|
|
|
409
424
|
"DeleteKeyEventRequest",
|
|
410
425
|
"DeleteMeasurementProtocolSecretRequest",
|
|
411
426
|
"DeletePropertyRequest",
|
|
427
|
+
"DeleteReportingDataAnnotationRequest",
|
|
412
428
|
"DeleteRollupPropertySourceLinkRequest",
|
|
413
429
|
"DeleteSearchAds360LinkRequest",
|
|
414
430
|
"DeleteSKAdNetworkConversionValueSchemaRequest",
|
|
@@ -443,10 +459,12 @@ __all__ = (
|
|
|
443
459
|
"GetKeyEventRequest",
|
|
444
460
|
"GetMeasurementProtocolSecretRequest",
|
|
445
461
|
"GetPropertyRequest",
|
|
462
|
+
"GetReportingDataAnnotationRequest",
|
|
446
463
|
"GetRollupPropertySourceLinkRequest",
|
|
447
464
|
"GetSearchAds360LinkRequest",
|
|
448
465
|
"GetSKAdNetworkConversionValueSchemaRequest",
|
|
449
466
|
"GetSubpropertyEventFilterRequest",
|
|
467
|
+
"GetSubpropertySyncConfigRequest",
|
|
450
468
|
"ListAccessBindingsRequest",
|
|
451
469
|
"ListAccessBindingsResponse",
|
|
452
470
|
"ListAccountsRequest",
|
|
@@ -493,6 +511,8 @@ __all__ = (
|
|
|
493
511
|
"ListMeasurementProtocolSecretsResponse",
|
|
494
512
|
"ListPropertiesRequest",
|
|
495
513
|
"ListPropertiesResponse",
|
|
514
|
+
"ListReportingDataAnnotationsRequest",
|
|
515
|
+
"ListReportingDataAnnotationsResponse",
|
|
496
516
|
"ListRollupPropertySourceLinksRequest",
|
|
497
517
|
"ListRollupPropertySourceLinksResponse",
|
|
498
518
|
"ListSearchAds360LinksRequest",
|
|
@@ -501,6 +521,8 @@ __all__ = (
|
|
|
501
521
|
"ListSKAdNetworkConversionValueSchemasResponse",
|
|
502
522
|
"ListSubpropertyEventFiltersRequest",
|
|
503
523
|
"ListSubpropertyEventFiltersResponse",
|
|
524
|
+
"ListSubpropertySyncConfigsRequest",
|
|
525
|
+
"ListSubpropertySyncConfigsResponse",
|
|
504
526
|
"ProvisionAccountTicketRequest",
|
|
505
527
|
"ProvisionAccountTicketResponse",
|
|
506
528
|
"ProvisionSubpropertyRequest",
|
|
@@ -512,6 +534,8 @@ __all__ = (
|
|
|
512
534
|
"SearchChangeHistoryEventsResponse",
|
|
513
535
|
"SetAutomatedGa4ConfigurationOptOutRequest",
|
|
514
536
|
"SetAutomatedGa4ConfigurationOptOutResponse",
|
|
537
|
+
"SubmitUserDeletionRequest",
|
|
538
|
+
"SubmitUserDeletionResponse",
|
|
515
539
|
"UpdateAccessBindingRequest",
|
|
516
540
|
"UpdateAccountRequest",
|
|
517
541
|
"UpdateAttributionSettingsRequest",
|
|
@@ -535,9 +559,11 @@ __all__ = (
|
|
|
535
559
|
"UpdateKeyEventRequest",
|
|
536
560
|
"UpdateMeasurementProtocolSecretRequest",
|
|
537
561
|
"UpdatePropertyRequest",
|
|
562
|
+
"UpdateReportingDataAnnotationRequest",
|
|
538
563
|
"UpdateSearchAds360LinkRequest",
|
|
539
564
|
"UpdateSKAdNetworkConversionValueSchemaRequest",
|
|
540
565
|
"UpdateSubpropertyEventFilterRequest",
|
|
566
|
+
"UpdateSubpropertySyncConfigRequest",
|
|
541
567
|
"Audience",
|
|
542
568
|
"AudienceDimensionOrMetricFilter",
|
|
543
569
|
"AudienceEventFilter",
|
|
@@ -593,9 +619,11 @@ __all__ = (
|
|
|
593
619
|
"PostbackWindow",
|
|
594
620
|
"Property",
|
|
595
621
|
"PropertySummary",
|
|
622
|
+
"ReportingDataAnnotation",
|
|
596
623
|
"RollupPropertySourceLink",
|
|
597
624
|
"SearchAds360Link",
|
|
598
625
|
"SKAdNetworkConversionValueSchema",
|
|
626
|
+
"SubpropertySyncConfig",
|
|
599
627
|
"ActionType",
|
|
600
628
|
"ActorType",
|
|
601
629
|
"ChangeHistoryResourceType",
|
|
@@ -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.1" # {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,10 +142,12 @@ 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,
|
|
146
149
|
GetSubpropertyEventFilterRequest,
|
|
150
|
+
GetSubpropertySyncConfigRequest,
|
|
147
151
|
ListAccessBindingsRequest,
|
|
148
152
|
ListAccessBindingsResponse,
|
|
149
153
|
ListAccountsRequest,
|
|
@@ -190,6 +194,8 @@ from .types.analytics_admin import (
|
|
|
190
194
|
ListMeasurementProtocolSecretsResponse,
|
|
191
195
|
ListPropertiesRequest,
|
|
192
196
|
ListPropertiesResponse,
|
|
197
|
+
ListReportingDataAnnotationsRequest,
|
|
198
|
+
ListReportingDataAnnotationsResponse,
|
|
193
199
|
ListRollupPropertySourceLinksRequest,
|
|
194
200
|
ListRollupPropertySourceLinksResponse,
|
|
195
201
|
ListSearchAds360LinksRequest,
|
|
@@ -198,6 +204,8 @@ from .types.analytics_admin import (
|
|
|
198
204
|
ListSKAdNetworkConversionValueSchemasResponse,
|
|
199
205
|
ListSubpropertyEventFiltersRequest,
|
|
200
206
|
ListSubpropertyEventFiltersResponse,
|
|
207
|
+
ListSubpropertySyncConfigsRequest,
|
|
208
|
+
ListSubpropertySyncConfigsResponse,
|
|
201
209
|
ProvisionAccountTicketRequest,
|
|
202
210
|
ProvisionAccountTicketResponse,
|
|
203
211
|
ProvisionSubpropertyRequest,
|
|
@@ -209,6 +217,8 @@ from .types.analytics_admin import (
|
|
|
209
217
|
SearchChangeHistoryEventsResponse,
|
|
210
218
|
SetAutomatedGa4ConfigurationOptOutRequest,
|
|
211
219
|
SetAutomatedGa4ConfigurationOptOutResponse,
|
|
220
|
+
SubmitUserDeletionRequest,
|
|
221
|
+
SubmitUserDeletionResponse,
|
|
212
222
|
UpdateAccessBindingRequest,
|
|
213
223
|
UpdateAccountRequest,
|
|
214
224
|
UpdateAttributionSettingsRequest,
|
|
@@ -232,9 +242,11 @@ from .types.analytics_admin import (
|
|
|
232
242
|
UpdateKeyEventRequest,
|
|
233
243
|
UpdateMeasurementProtocolSecretRequest,
|
|
234
244
|
UpdatePropertyRequest,
|
|
245
|
+
UpdateReportingDataAnnotationRequest,
|
|
235
246
|
UpdateSearchAds360LinkRequest,
|
|
236
247
|
UpdateSKAdNetworkConversionValueSchemaRequest,
|
|
237
248
|
UpdateSubpropertyEventFilterRequest,
|
|
249
|
+
UpdateSubpropertySyncConfigRequest,
|
|
238
250
|
)
|
|
239
251
|
from .types.audience import (
|
|
240
252
|
Audience,
|
|
@@ -310,10 +322,12 @@ from .types.resources import (
|
|
|
310
322
|
Property,
|
|
311
323
|
PropertySummary,
|
|
312
324
|
PropertyType,
|
|
325
|
+
ReportingDataAnnotation,
|
|
313
326
|
RollupPropertySourceLink,
|
|
314
327
|
SearchAds360Link,
|
|
315
328
|
ServiceLevel,
|
|
316
329
|
SKAdNetworkConversionValueSchema,
|
|
330
|
+
SubpropertySyncConfig,
|
|
317
331
|
)
|
|
318
332
|
from .types.subproperty_event_filter import (
|
|
319
333
|
SubpropertyEventFilter,
|
|
@@ -411,6 +425,7 @@ __all__ = (
|
|
|
411
425
|
"CreateKeyEventRequest",
|
|
412
426
|
"CreateMeasurementProtocolSecretRequest",
|
|
413
427
|
"CreatePropertyRequest",
|
|
428
|
+
"CreateReportingDataAnnotationRequest",
|
|
414
429
|
"CreateRollupPropertyRequest",
|
|
415
430
|
"CreateRollupPropertyResponse",
|
|
416
431
|
"CreateRollupPropertySourceLinkRequest",
|
|
@@ -442,6 +457,7 @@ __all__ = (
|
|
|
442
457
|
"DeleteKeyEventRequest",
|
|
443
458
|
"DeleteMeasurementProtocolSecretRequest",
|
|
444
459
|
"DeletePropertyRequest",
|
|
460
|
+
"DeleteReportingDataAnnotationRequest",
|
|
445
461
|
"DeleteRollupPropertySourceLinkRequest",
|
|
446
462
|
"DeleteSKAdNetworkConversionValueSchemaRequest",
|
|
447
463
|
"DeleteSearchAds360LinkRequest",
|
|
@@ -487,10 +503,12 @@ __all__ = (
|
|
|
487
503
|
"GetKeyEventRequest",
|
|
488
504
|
"GetMeasurementProtocolSecretRequest",
|
|
489
505
|
"GetPropertyRequest",
|
|
506
|
+
"GetReportingDataAnnotationRequest",
|
|
490
507
|
"GetRollupPropertySourceLinkRequest",
|
|
491
508
|
"GetSKAdNetworkConversionValueSchemaRequest",
|
|
492
509
|
"GetSearchAds360LinkRequest",
|
|
493
510
|
"GetSubpropertyEventFilterRequest",
|
|
511
|
+
"GetSubpropertySyncConfigRequest",
|
|
494
512
|
"GlobalSiteTag",
|
|
495
513
|
"GoogleAdsLink",
|
|
496
514
|
"GoogleSignalsConsent",
|
|
@@ -548,6 +566,8 @@ __all__ = (
|
|
|
548
566
|
"ListMeasurementProtocolSecretsResponse",
|
|
549
567
|
"ListPropertiesRequest",
|
|
550
568
|
"ListPropertiesResponse",
|
|
569
|
+
"ListReportingDataAnnotationsRequest",
|
|
570
|
+
"ListReportingDataAnnotationsResponse",
|
|
551
571
|
"ListRollupPropertySourceLinksRequest",
|
|
552
572
|
"ListRollupPropertySourceLinksResponse",
|
|
553
573
|
"ListSKAdNetworkConversionValueSchemasRequest",
|
|
@@ -556,6 +576,8 @@ __all__ = (
|
|
|
556
576
|
"ListSearchAds360LinksResponse",
|
|
557
577
|
"ListSubpropertyEventFiltersRequest",
|
|
558
578
|
"ListSubpropertyEventFiltersResponse",
|
|
579
|
+
"ListSubpropertySyncConfigsRequest",
|
|
580
|
+
"ListSubpropertySyncConfigsResponse",
|
|
559
581
|
"MatchingCondition",
|
|
560
582
|
"MeasurementProtocolSecret",
|
|
561
583
|
"NumericValue",
|
|
@@ -569,6 +591,7 @@ __all__ = (
|
|
|
569
591
|
"ProvisionSubpropertyRequest",
|
|
570
592
|
"ProvisionSubpropertyResponse",
|
|
571
593
|
"ReorderEventEditRulesRequest",
|
|
594
|
+
"ReportingDataAnnotation",
|
|
572
595
|
"RollupPropertySourceLink",
|
|
573
596
|
"RunAccessReportRequest",
|
|
574
597
|
"RunAccessReportResponse",
|
|
@@ -579,11 +602,14 @@ __all__ = (
|
|
|
579
602
|
"ServiceLevel",
|
|
580
603
|
"SetAutomatedGa4ConfigurationOptOutRequest",
|
|
581
604
|
"SetAutomatedGa4ConfigurationOptOutResponse",
|
|
605
|
+
"SubmitUserDeletionRequest",
|
|
606
|
+
"SubmitUserDeletionResponse",
|
|
582
607
|
"SubpropertyEventFilter",
|
|
583
608
|
"SubpropertyEventFilterClause",
|
|
584
609
|
"SubpropertyEventFilterCondition",
|
|
585
610
|
"SubpropertyEventFilterExpression",
|
|
586
611
|
"SubpropertyEventFilterExpressionList",
|
|
612
|
+
"SubpropertySyncConfig",
|
|
587
613
|
"UpdateAccessBindingRequest",
|
|
588
614
|
"UpdateAccountRequest",
|
|
589
615
|
"UpdateAttributionSettingsRequest",
|
|
@@ -607,7 +633,9 @@ __all__ = (
|
|
|
607
633
|
"UpdateKeyEventRequest",
|
|
608
634
|
"UpdateMeasurementProtocolSecretRequest",
|
|
609
635
|
"UpdatePropertyRequest",
|
|
636
|
+
"UpdateReportingDataAnnotationRequest",
|
|
610
637
|
"UpdateSKAdNetworkConversionValueSchemaRequest",
|
|
611
638
|
"UpdateSearchAds360LinkRequest",
|
|
612
639
|
"UpdateSubpropertyEventFilterRequest",
|
|
640
|
+
"UpdateSubpropertySyncConfigRequest",
|
|
613
641
|
)
|