google-analytics-admin 0.23.6__py3-none-any.whl
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/__init__.py +615 -0
- google/analytics/admin/gapic_version.py +16 -0
- google/analytics/admin/py.typed +2 -0
- google/analytics/admin_v1alpha/__init__.py +613 -0
- google/analytics/admin_v1alpha/gapic_metadata.json +2278 -0
- google/analytics/admin_v1alpha/gapic_version.py +16 -0
- google/analytics/admin_v1alpha/py.typed +2 -0
- google/analytics/admin_v1alpha/services/__init__.py +15 -0
- google/analytics/admin_v1alpha/services/analytics_admin_service/__init__.py +22 -0
- google/analytics/admin_v1alpha/services/analytics_admin_service/async_client.py +14122 -0
- google/analytics/admin_v1alpha/services/analytics_admin_service/client.py +14680 -0
- google/analytics/admin_v1alpha/services/analytics_admin_service/pagers.py +4337 -0
- google/analytics/admin_v1alpha/services/analytics_admin_service/transports/__init__.py +41 -0
- google/analytics/admin_v1alpha/services/analytics_admin_service/transports/base.py +2494 -0
- google/analytics/admin_v1alpha/services/analytics_admin_service/transports/grpc.py +4797 -0
- google/analytics/admin_v1alpha/services/analytics_admin_service/transports/grpc_asyncio.py +5671 -0
- google/analytics/admin_v1alpha/services/analytics_admin_service/transports/rest.py +31875 -0
- google/analytics/admin_v1alpha/services/analytics_admin_service/transports/rest_base.py +7944 -0
- google/analytics/admin_v1alpha/types/__init__.py +602 -0
- google/analytics/admin_v1alpha/types/access_report.py +705 -0
- google/analytics/admin_v1alpha/types/analytics_admin.py +4997 -0
- google/analytics/admin_v1alpha/types/audience.py +781 -0
- google/analytics/admin_v1alpha/types/channel_group.py +309 -0
- google/analytics/admin_v1alpha/types/event_create_and_edit.py +298 -0
- google/analytics/admin_v1alpha/types/expanded_data_set.py +282 -0
- google/analytics/admin_v1alpha/types/resources.py +3289 -0
- google/analytics/admin_v1alpha/types/subproperty_event_filter.py +292 -0
- google/analytics/admin_v1beta/__init__.py +255 -0
- google/analytics/admin_v1beta/gapic_metadata.json +838 -0
- google/analytics/admin_v1beta/gapic_version.py +16 -0
- google/analytics/admin_v1beta/py.typed +2 -0
- google/analytics/admin_v1beta/services/__init__.py +15 -0
- google/analytics/admin_v1beta/services/analytics_admin_service/__init__.py +22 -0
- google/analytics/admin_v1beta/services/analytics_admin_service/async_client.py +6707 -0
- google/analytics/admin_v1beta/services/analytics_admin_service/client.py +7164 -0
- google/analytics/admin_v1beta/services/analytics_admin_service/pagers.py +1927 -0
- google/analytics/admin_v1beta/services/analytics_admin_service/transports/__init__.py +41 -0
- google/analytics/admin_v1beta/services/analytics_admin_service/transports/base.py +965 -0
- google/analytics/admin_v1beta/services/analytics_admin_service/transports/grpc.py +1917 -0
- google/analytics/admin_v1beta/services/analytics_admin_service/transports/grpc_asyncio.py +2251 -0
- google/analytics/admin_v1beta/services/analytics_admin_service/transports/rest.py +11423 -0
- google/analytics/admin_v1beta/services/analytics_admin_service/transports/rest_base.py +2857 -0
- google/analytics/admin_v1beta/types/__init__.py +244 -0
- google/analytics/admin_v1beta/types/access_report.py +705 -0
- google/analytics/admin_v1beta/types/analytics_admin.py +2006 -0
- google/analytics/admin_v1beta/types/resources.py +1677 -0
- google_analytics_admin-0.23.6.dist-info/LICENSE +202 -0
- google_analytics_admin-0.23.6.dist-info/METADATA +228 -0
- google_analytics_admin-0.23.6.dist-info/RECORD +51 -0
- google_analytics_admin-0.23.6.dist-info/WHEEL +5 -0
- google_analytics_admin-0.23.6.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,2494 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Copyright 2024 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
|
+
import abc
|
|
17
|
+
from typing import Awaitable, Callable, Dict, Optional, Sequence, Union
|
|
18
|
+
|
|
19
|
+
import google.api_core
|
|
20
|
+
from google.api_core import exceptions as core_exceptions
|
|
21
|
+
from google.api_core import gapic_v1
|
|
22
|
+
from google.api_core import retry as retries
|
|
23
|
+
import google.auth # type: ignore
|
|
24
|
+
from google.auth import credentials as ga_credentials # type: ignore
|
|
25
|
+
from google.oauth2 import service_account # type: ignore
|
|
26
|
+
from google.protobuf import empty_pb2 # type: ignore
|
|
27
|
+
|
|
28
|
+
from google.analytics.admin_v1alpha import gapic_version as package_version
|
|
29
|
+
from google.analytics.admin_v1alpha.types import channel_group as gaa_channel_group
|
|
30
|
+
from google.analytics.admin_v1alpha.types import (
|
|
31
|
+
expanded_data_set as gaa_expanded_data_set,
|
|
32
|
+
)
|
|
33
|
+
from google.analytics.admin_v1alpha.types import (
|
|
34
|
+
subproperty_event_filter as gaa_subproperty_event_filter,
|
|
35
|
+
)
|
|
36
|
+
from google.analytics.admin_v1alpha.types import analytics_admin
|
|
37
|
+
from google.analytics.admin_v1alpha.types import audience
|
|
38
|
+
from google.analytics.admin_v1alpha.types import audience as gaa_audience
|
|
39
|
+
from google.analytics.admin_v1alpha.types import channel_group
|
|
40
|
+
from google.analytics.admin_v1alpha.types import event_create_and_edit
|
|
41
|
+
from google.analytics.admin_v1alpha.types import expanded_data_set
|
|
42
|
+
from google.analytics.admin_v1alpha.types import resources
|
|
43
|
+
from google.analytics.admin_v1alpha.types import subproperty_event_filter
|
|
44
|
+
|
|
45
|
+
DEFAULT_CLIENT_INFO = gapic_v1.client_info.ClientInfo(
|
|
46
|
+
gapic_version=package_version.__version__
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
class AnalyticsAdminServiceTransport(abc.ABC):
|
|
51
|
+
"""Abstract transport class for AnalyticsAdminService."""
|
|
52
|
+
|
|
53
|
+
AUTH_SCOPES = (
|
|
54
|
+
"https://www.googleapis.com/auth/analytics.edit",
|
|
55
|
+
"https://www.googleapis.com/auth/analytics.manage.users",
|
|
56
|
+
"https://www.googleapis.com/auth/analytics.manage.users.readonly",
|
|
57
|
+
"https://www.googleapis.com/auth/analytics.readonly",
|
|
58
|
+
)
|
|
59
|
+
|
|
60
|
+
DEFAULT_HOST: str = "analyticsadmin.googleapis.com"
|
|
61
|
+
|
|
62
|
+
def __init__(
|
|
63
|
+
self,
|
|
64
|
+
*,
|
|
65
|
+
host: str = DEFAULT_HOST,
|
|
66
|
+
credentials: Optional[ga_credentials.Credentials] = None,
|
|
67
|
+
credentials_file: Optional[str] = None,
|
|
68
|
+
scopes: Optional[Sequence[str]] = None,
|
|
69
|
+
quota_project_id: Optional[str] = None,
|
|
70
|
+
client_info: gapic_v1.client_info.ClientInfo = DEFAULT_CLIENT_INFO,
|
|
71
|
+
always_use_jwt_access: Optional[bool] = False,
|
|
72
|
+
api_audience: Optional[str] = None,
|
|
73
|
+
**kwargs,
|
|
74
|
+
) -> None:
|
|
75
|
+
"""Instantiate the transport.
|
|
76
|
+
|
|
77
|
+
Args:
|
|
78
|
+
host (Optional[str]):
|
|
79
|
+
The hostname to connect to (default: 'analyticsadmin.googleapis.com').
|
|
80
|
+
credentials (Optional[google.auth.credentials.Credentials]): The
|
|
81
|
+
authorization credentials to attach to requests. These
|
|
82
|
+
credentials identify the application to the service; if none
|
|
83
|
+
are specified, the client will attempt to ascertain the
|
|
84
|
+
credentials from the environment.
|
|
85
|
+
credentials_file (Optional[str]): A file with credentials that can
|
|
86
|
+
be loaded with :func:`google.auth.load_credentials_from_file`.
|
|
87
|
+
This argument is mutually exclusive with credentials.
|
|
88
|
+
scopes (Optional[Sequence[str]]): A list of scopes.
|
|
89
|
+
quota_project_id (Optional[str]): An optional project to use for billing
|
|
90
|
+
and quota.
|
|
91
|
+
client_info (google.api_core.gapic_v1.client_info.ClientInfo):
|
|
92
|
+
The client info used to send a user-agent string along with
|
|
93
|
+
API requests. If ``None``, then default info will be used.
|
|
94
|
+
Generally, you only need to set this if you're developing
|
|
95
|
+
your own client library.
|
|
96
|
+
always_use_jwt_access (Optional[bool]): Whether self signed JWT should
|
|
97
|
+
be used for service account credentials.
|
|
98
|
+
"""
|
|
99
|
+
|
|
100
|
+
scopes_kwargs = {"scopes": scopes, "default_scopes": self.AUTH_SCOPES}
|
|
101
|
+
|
|
102
|
+
# Save the scopes.
|
|
103
|
+
self._scopes = scopes
|
|
104
|
+
if not hasattr(self, "_ignore_credentials"):
|
|
105
|
+
self._ignore_credentials: bool = False
|
|
106
|
+
|
|
107
|
+
# If no credentials are provided, then determine the appropriate
|
|
108
|
+
# defaults.
|
|
109
|
+
if credentials and credentials_file:
|
|
110
|
+
raise core_exceptions.DuplicateCredentialArgs(
|
|
111
|
+
"'credentials_file' and 'credentials' are mutually exclusive"
|
|
112
|
+
)
|
|
113
|
+
|
|
114
|
+
if credentials_file is not None:
|
|
115
|
+
credentials, _ = google.auth.load_credentials_from_file(
|
|
116
|
+
credentials_file, **scopes_kwargs, quota_project_id=quota_project_id
|
|
117
|
+
)
|
|
118
|
+
elif credentials is None and not self._ignore_credentials:
|
|
119
|
+
credentials, _ = google.auth.default(
|
|
120
|
+
**scopes_kwargs, quota_project_id=quota_project_id
|
|
121
|
+
)
|
|
122
|
+
# Don't apply audience if the credentials file passed from user.
|
|
123
|
+
if hasattr(credentials, "with_gdch_audience"):
|
|
124
|
+
credentials = credentials.with_gdch_audience(
|
|
125
|
+
api_audience if api_audience else host
|
|
126
|
+
)
|
|
127
|
+
|
|
128
|
+
# If the credentials are service account credentials, then always try to use self signed JWT.
|
|
129
|
+
if (
|
|
130
|
+
always_use_jwt_access
|
|
131
|
+
and isinstance(credentials, service_account.Credentials)
|
|
132
|
+
and hasattr(service_account.Credentials, "with_always_use_jwt_access")
|
|
133
|
+
):
|
|
134
|
+
credentials = credentials.with_always_use_jwt_access(True)
|
|
135
|
+
|
|
136
|
+
# Save the credentials.
|
|
137
|
+
self._credentials = credentials
|
|
138
|
+
|
|
139
|
+
# Save the hostname. Default to port 443 (HTTPS) if none is specified.
|
|
140
|
+
if ":" not in host:
|
|
141
|
+
host += ":443"
|
|
142
|
+
self._host = host
|
|
143
|
+
|
|
144
|
+
@property
|
|
145
|
+
def host(self):
|
|
146
|
+
return self._host
|
|
147
|
+
|
|
148
|
+
def _prep_wrapped_messages(self, client_info):
|
|
149
|
+
# Precompute the wrapped methods.
|
|
150
|
+
self._wrapped_methods = {
|
|
151
|
+
self.get_account: gapic_v1.method.wrap_method(
|
|
152
|
+
self.get_account,
|
|
153
|
+
default_timeout=60.0,
|
|
154
|
+
client_info=client_info,
|
|
155
|
+
),
|
|
156
|
+
self.list_accounts: gapic_v1.method.wrap_method(
|
|
157
|
+
self.list_accounts,
|
|
158
|
+
default_timeout=60.0,
|
|
159
|
+
client_info=client_info,
|
|
160
|
+
),
|
|
161
|
+
self.delete_account: gapic_v1.method.wrap_method(
|
|
162
|
+
self.delete_account,
|
|
163
|
+
default_timeout=60.0,
|
|
164
|
+
client_info=client_info,
|
|
165
|
+
),
|
|
166
|
+
self.update_account: gapic_v1.method.wrap_method(
|
|
167
|
+
self.update_account,
|
|
168
|
+
default_timeout=60.0,
|
|
169
|
+
client_info=client_info,
|
|
170
|
+
),
|
|
171
|
+
self.provision_account_ticket: gapic_v1.method.wrap_method(
|
|
172
|
+
self.provision_account_ticket,
|
|
173
|
+
default_timeout=60.0,
|
|
174
|
+
client_info=client_info,
|
|
175
|
+
),
|
|
176
|
+
self.list_account_summaries: gapic_v1.method.wrap_method(
|
|
177
|
+
self.list_account_summaries,
|
|
178
|
+
default_timeout=None,
|
|
179
|
+
client_info=client_info,
|
|
180
|
+
),
|
|
181
|
+
self.get_property: gapic_v1.method.wrap_method(
|
|
182
|
+
self.get_property,
|
|
183
|
+
default_timeout=60.0,
|
|
184
|
+
client_info=client_info,
|
|
185
|
+
),
|
|
186
|
+
self.list_properties: gapic_v1.method.wrap_method(
|
|
187
|
+
self.list_properties,
|
|
188
|
+
default_timeout=60.0,
|
|
189
|
+
client_info=client_info,
|
|
190
|
+
),
|
|
191
|
+
self.create_property: gapic_v1.method.wrap_method(
|
|
192
|
+
self.create_property,
|
|
193
|
+
default_timeout=60.0,
|
|
194
|
+
client_info=client_info,
|
|
195
|
+
),
|
|
196
|
+
self.delete_property: gapic_v1.method.wrap_method(
|
|
197
|
+
self.delete_property,
|
|
198
|
+
default_timeout=60.0,
|
|
199
|
+
client_info=client_info,
|
|
200
|
+
),
|
|
201
|
+
self.update_property: gapic_v1.method.wrap_method(
|
|
202
|
+
self.update_property,
|
|
203
|
+
default_timeout=60.0,
|
|
204
|
+
client_info=client_info,
|
|
205
|
+
),
|
|
206
|
+
self.create_firebase_link: gapic_v1.method.wrap_method(
|
|
207
|
+
self.create_firebase_link,
|
|
208
|
+
default_timeout=60.0,
|
|
209
|
+
client_info=client_info,
|
|
210
|
+
),
|
|
211
|
+
self.delete_firebase_link: gapic_v1.method.wrap_method(
|
|
212
|
+
self.delete_firebase_link,
|
|
213
|
+
default_timeout=60.0,
|
|
214
|
+
client_info=client_info,
|
|
215
|
+
),
|
|
216
|
+
self.list_firebase_links: gapic_v1.method.wrap_method(
|
|
217
|
+
self.list_firebase_links,
|
|
218
|
+
default_timeout=60.0,
|
|
219
|
+
client_info=client_info,
|
|
220
|
+
),
|
|
221
|
+
self.get_global_site_tag: gapic_v1.method.wrap_method(
|
|
222
|
+
self.get_global_site_tag,
|
|
223
|
+
default_timeout=60.0,
|
|
224
|
+
client_info=client_info,
|
|
225
|
+
),
|
|
226
|
+
self.create_google_ads_link: gapic_v1.method.wrap_method(
|
|
227
|
+
self.create_google_ads_link,
|
|
228
|
+
default_timeout=60.0,
|
|
229
|
+
client_info=client_info,
|
|
230
|
+
),
|
|
231
|
+
self.update_google_ads_link: gapic_v1.method.wrap_method(
|
|
232
|
+
self.update_google_ads_link,
|
|
233
|
+
default_timeout=60.0,
|
|
234
|
+
client_info=client_info,
|
|
235
|
+
),
|
|
236
|
+
self.delete_google_ads_link: gapic_v1.method.wrap_method(
|
|
237
|
+
self.delete_google_ads_link,
|
|
238
|
+
default_timeout=60.0,
|
|
239
|
+
client_info=client_info,
|
|
240
|
+
),
|
|
241
|
+
self.list_google_ads_links: gapic_v1.method.wrap_method(
|
|
242
|
+
self.list_google_ads_links,
|
|
243
|
+
default_timeout=60.0,
|
|
244
|
+
client_info=client_info,
|
|
245
|
+
),
|
|
246
|
+
self.get_data_sharing_settings: gapic_v1.method.wrap_method(
|
|
247
|
+
self.get_data_sharing_settings,
|
|
248
|
+
default_timeout=None,
|
|
249
|
+
client_info=client_info,
|
|
250
|
+
),
|
|
251
|
+
self.get_measurement_protocol_secret: gapic_v1.method.wrap_method(
|
|
252
|
+
self.get_measurement_protocol_secret,
|
|
253
|
+
default_timeout=None,
|
|
254
|
+
client_info=client_info,
|
|
255
|
+
),
|
|
256
|
+
self.list_measurement_protocol_secrets: gapic_v1.method.wrap_method(
|
|
257
|
+
self.list_measurement_protocol_secrets,
|
|
258
|
+
default_timeout=None,
|
|
259
|
+
client_info=client_info,
|
|
260
|
+
),
|
|
261
|
+
self.create_measurement_protocol_secret: gapic_v1.method.wrap_method(
|
|
262
|
+
self.create_measurement_protocol_secret,
|
|
263
|
+
default_timeout=None,
|
|
264
|
+
client_info=client_info,
|
|
265
|
+
),
|
|
266
|
+
self.delete_measurement_protocol_secret: gapic_v1.method.wrap_method(
|
|
267
|
+
self.delete_measurement_protocol_secret,
|
|
268
|
+
default_timeout=None,
|
|
269
|
+
client_info=client_info,
|
|
270
|
+
),
|
|
271
|
+
self.update_measurement_protocol_secret: gapic_v1.method.wrap_method(
|
|
272
|
+
self.update_measurement_protocol_secret,
|
|
273
|
+
default_timeout=None,
|
|
274
|
+
client_info=client_info,
|
|
275
|
+
),
|
|
276
|
+
self.acknowledge_user_data_collection: gapic_v1.method.wrap_method(
|
|
277
|
+
self.acknowledge_user_data_collection,
|
|
278
|
+
default_timeout=None,
|
|
279
|
+
client_info=client_info,
|
|
280
|
+
),
|
|
281
|
+
self.get_sk_ad_network_conversion_value_schema: gapic_v1.method.wrap_method(
|
|
282
|
+
self.get_sk_ad_network_conversion_value_schema,
|
|
283
|
+
default_timeout=None,
|
|
284
|
+
client_info=client_info,
|
|
285
|
+
),
|
|
286
|
+
self.create_sk_ad_network_conversion_value_schema: gapic_v1.method.wrap_method(
|
|
287
|
+
self.create_sk_ad_network_conversion_value_schema,
|
|
288
|
+
default_timeout=None,
|
|
289
|
+
client_info=client_info,
|
|
290
|
+
),
|
|
291
|
+
self.delete_sk_ad_network_conversion_value_schema: gapic_v1.method.wrap_method(
|
|
292
|
+
self.delete_sk_ad_network_conversion_value_schema,
|
|
293
|
+
default_timeout=None,
|
|
294
|
+
client_info=client_info,
|
|
295
|
+
),
|
|
296
|
+
self.update_sk_ad_network_conversion_value_schema: gapic_v1.method.wrap_method(
|
|
297
|
+
self.update_sk_ad_network_conversion_value_schema,
|
|
298
|
+
default_timeout=None,
|
|
299
|
+
client_info=client_info,
|
|
300
|
+
),
|
|
301
|
+
self.list_sk_ad_network_conversion_value_schemas: gapic_v1.method.wrap_method(
|
|
302
|
+
self.list_sk_ad_network_conversion_value_schemas,
|
|
303
|
+
default_timeout=None,
|
|
304
|
+
client_info=client_info,
|
|
305
|
+
),
|
|
306
|
+
self.search_change_history_events: gapic_v1.method.wrap_method(
|
|
307
|
+
self.search_change_history_events,
|
|
308
|
+
default_timeout=None,
|
|
309
|
+
client_info=client_info,
|
|
310
|
+
),
|
|
311
|
+
self.get_google_signals_settings: gapic_v1.method.wrap_method(
|
|
312
|
+
self.get_google_signals_settings,
|
|
313
|
+
default_timeout=None,
|
|
314
|
+
client_info=client_info,
|
|
315
|
+
),
|
|
316
|
+
self.update_google_signals_settings: gapic_v1.method.wrap_method(
|
|
317
|
+
self.update_google_signals_settings,
|
|
318
|
+
default_timeout=None,
|
|
319
|
+
client_info=client_info,
|
|
320
|
+
),
|
|
321
|
+
self.create_conversion_event: gapic_v1.method.wrap_method(
|
|
322
|
+
self.create_conversion_event,
|
|
323
|
+
default_timeout=None,
|
|
324
|
+
client_info=client_info,
|
|
325
|
+
),
|
|
326
|
+
self.update_conversion_event: gapic_v1.method.wrap_method(
|
|
327
|
+
self.update_conversion_event,
|
|
328
|
+
default_timeout=None,
|
|
329
|
+
client_info=client_info,
|
|
330
|
+
),
|
|
331
|
+
self.get_conversion_event: gapic_v1.method.wrap_method(
|
|
332
|
+
self.get_conversion_event,
|
|
333
|
+
default_timeout=None,
|
|
334
|
+
client_info=client_info,
|
|
335
|
+
),
|
|
336
|
+
self.delete_conversion_event: gapic_v1.method.wrap_method(
|
|
337
|
+
self.delete_conversion_event,
|
|
338
|
+
default_timeout=None,
|
|
339
|
+
client_info=client_info,
|
|
340
|
+
),
|
|
341
|
+
self.list_conversion_events: gapic_v1.method.wrap_method(
|
|
342
|
+
self.list_conversion_events,
|
|
343
|
+
default_timeout=None,
|
|
344
|
+
client_info=client_info,
|
|
345
|
+
),
|
|
346
|
+
self.create_key_event: gapic_v1.method.wrap_method(
|
|
347
|
+
self.create_key_event,
|
|
348
|
+
default_timeout=None,
|
|
349
|
+
client_info=client_info,
|
|
350
|
+
),
|
|
351
|
+
self.update_key_event: gapic_v1.method.wrap_method(
|
|
352
|
+
self.update_key_event,
|
|
353
|
+
default_timeout=None,
|
|
354
|
+
client_info=client_info,
|
|
355
|
+
),
|
|
356
|
+
self.get_key_event: gapic_v1.method.wrap_method(
|
|
357
|
+
self.get_key_event,
|
|
358
|
+
default_timeout=None,
|
|
359
|
+
client_info=client_info,
|
|
360
|
+
),
|
|
361
|
+
self.delete_key_event: gapic_v1.method.wrap_method(
|
|
362
|
+
self.delete_key_event,
|
|
363
|
+
default_timeout=None,
|
|
364
|
+
client_info=client_info,
|
|
365
|
+
),
|
|
366
|
+
self.list_key_events: gapic_v1.method.wrap_method(
|
|
367
|
+
self.list_key_events,
|
|
368
|
+
default_timeout=None,
|
|
369
|
+
client_info=client_info,
|
|
370
|
+
),
|
|
371
|
+
self.get_display_video360_advertiser_link: gapic_v1.method.wrap_method(
|
|
372
|
+
self.get_display_video360_advertiser_link,
|
|
373
|
+
default_timeout=None,
|
|
374
|
+
client_info=client_info,
|
|
375
|
+
),
|
|
376
|
+
self.list_display_video360_advertiser_links: gapic_v1.method.wrap_method(
|
|
377
|
+
self.list_display_video360_advertiser_links,
|
|
378
|
+
default_timeout=None,
|
|
379
|
+
client_info=client_info,
|
|
380
|
+
),
|
|
381
|
+
self.create_display_video360_advertiser_link: gapic_v1.method.wrap_method(
|
|
382
|
+
self.create_display_video360_advertiser_link,
|
|
383
|
+
default_timeout=None,
|
|
384
|
+
client_info=client_info,
|
|
385
|
+
),
|
|
386
|
+
self.delete_display_video360_advertiser_link: gapic_v1.method.wrap_method(
|
|
387
|
+
self.delete_display_video360_advertiser_link,
|
|
388
|
+
default_timeout=None,
|
|
389
|
+
client_info=client_info,
|
|
390
|
+
),
|
|
391
|
+
self.update_display_video360_advertiser_link: gapic_v1.method.wrap_method(
|
|
392
|
+
self.update_display_video360_advertiser_link,
|
|
393
|
+
default_timeout=None,
|
|
394
|
+
client_info=client_info,
|
|
395
|
+
),
|
|
396
|
+
self.get_display_video360_advertiser_link_proposal: gapic_v1.method.wrap_method(
|
|
397
|
+
self.get_display_video360_advertiser_link_proposal,
|
|
398
|
+
default_timeout=None,
|
|
399
|
+
client_info=client_info,
|
|
400
|
+
),
|
|
401
|
+
self.list_display_video360_advertiser_link_proposals: gapic_v1.method.wrap_method(
|
|
402
|
+
self.list_display_video360_advertiser_link_proposals,
|
|
403
|
+
default_timeout=None,
|
|
404
|
+
client_info=client_info,
|
|
405
|
+
),
|
|
406
|
+
self.create_display_video360_advertiser_link_proposal: gapic_v1.method.wrap_method(
|
|
407
|
+
self.create_display_video360_advertiser_link_proposal,
|
|
408
|
+
default_timeout=None,
|
|
409
|
+
client_info=client_info,
|
|
410
|
+
),
|
|
411
|
+
self.delete_display_video360_advertiser_link_proposal: gapic_v1.method.wrap_method(
|
|
412
|
+
self.delete_display_video360_advertiser_link_proposal,
|
|
413
|
+
default_timeout=None,
|
|
414
|
+
client_info=client_info,
|
|
415
|
+
),
|
|
416
|
+
self.approve_display_video360_advertiser_link_proposal: gapic_v1.method.wrap_method(
|
|
417
|
+
self.approve_display_video360_advertiser_link_proposal,
|
|
418
|
+
default_timeout=None,
|
|
419
|
+
client_info=client_info,
|
|
420
|
+
),
|
|
421
|
+
self.cancel_display_video360_advertiser_link_proposal: gapic_v1.method.wrap_method(
|
|
422
|
+
self.cancel_display_video360_advertiser_link_proposal,
|
|
423
|
+
default_timeout=None,
|
|
424
|
+
client_info=client_info,
|
|
425
|
+
),
|
|
426
|
+
self.create_custom_dimension: gapic_v1.method.wrap_method(
|
|
427
|
+
self.create_custom_dimension,
|
|
428
|
+
default_timeout=None,
|
|
429
|
+
client_info=client_info,
|
|
430
|
+
),
|
|
431
|
+
self.update_custom_dimension: gapic_v1.method.wrap_method(
|
|
432
|
+
self.update_custom_dimension,
|
|
433
|
+
default_timeout=None,
|
|
434
|
+
client_info=client_info,
|
|
435
|
+
),
|
|
436
|
+
self.list_custom_dimensions: gapic_v1.method.wrap_method(
|
|
437
|
+
self.list_custom_dimensions,
|
|
438
|
+
default_timeout=None,
|
|
439
|
+
client_info=client_info,
|
|
440
|
+
),
|
|
441
|
+
self.archive_custom_dimension: gapic_v1.method.wrap_method(
|
|
442
|
+
self.archive_custom_dimension,
|
|
443
|
+
default_timeout=None,
|
|
444
|
+
client_info=client_info,
|
|
445
|
+
),
|
|
446
|
+
self.get_custom_dimension: gapic_v1.method.wrap_method(
|
|
447
|
+
self.get_custom_dimension,
|
|
448
|
+
default_timeout=None,
|
|
449
|
+
client_info=client_info,
|
|
450
|
+
),
|
|
451
|
+
self.create_custom_metric: gapic_v1.method.wrap_method(
|
|
452
|
+
self.create_custom_metric,
|
|
453
|
+
default_timeout=None,
|
|
454
|
+
client_info=client_info,
|
|
455
|
+
),
|
|
456
|
+
self.update_custom_metric: gapic_v1.method.wrap_method(
|
|
457
|
+
self.update_custom_metric,
|
|
458
|
+
default_timeout=None,
|
|
459
|
+
client_info=client_info,
|
|
460
|
+
),
|
|
461
|
+
self.list_custom_metrics: gapic_v1.method.wrap_method(
|
|
462
|
+
self.list_custom_metrics,
|
|
463
|
+
default_timeout=None,
|
|
464
|
+
client_info=client_info,
|
|
465
|
+
),
|
|
466
|
+
self.archive_custom_metric: gapic_v1.method.wrap_method(
|
|
467
|
+
self.archive_custom_metric,
|
|
468
|
+
default_timeout=None,
|
|
469
|
+
client_info=client_info,
|
|
470
|
+
),
|
|
471
|
+
self.get_custom_metric: gapic_v1.method.wrap_method(
|
|
472
|
+
self.get_custom_metric,
|
|
473
|
+
default_timeout=None,
|
|
474
|
+
client_info=client_info,
|
|
475
|
+
),
|
|
476
|
+
self.get_data_retention_settings: gapic_v1.method.wrap_method(
|
|
477
|
+
self.get_data_retention_settings,
|
|
478
|
+
default_timeout=None,
|
|
479
|
+
client_info=client_info,
|
|
480
|
+
),
|
|
481
|
+
self.update_data_retention_settings: gapic_v1.method.wrap_method(
|
|
482
|
+
self.update_data_retention_settings,
|
|
483
|
+
default_timeout=None,
|
|
484
|
+
client_info=client_info,
|
|
485
|
+
),
|
|
486
|
+
self.create_data_stream: gapic_v1.method.wrap_method(
|
|
487
|
+
self.create_data_stream,
|
|
488
|
+
default_timeout=None,
|
|
489
|
+
client_info=client_info,
|
|
490
|
+
),
|
|
491
|
+
self.delete_data_stream: gapic_v1.method.wrap_method(
|
|
492
|
+
self.delete_data_stream,
|
|
493
|
+
default_timeout=None,
|
|
494
|
+
client_info=client_info,
|
|
495
|
+
),
|
|
496
|
+
self.update_data_stream: gapic_v1.method.wrap_method(
|
|
497
|
+
self.update_data_stream,
|
|
498
|
+
default_timeout=None,
|
|
499
|
+
client_info=client_info,
|
|
500
|
+
),
|
|
501
|
+
self.list_data_streams: gapic_v1.method.wrap_method(
|
|
502
|
+
self.list_data_streams,
|
|
503
|
+
default_timeout=None,
|
|
504
|
+
client_info=client_info,
|
|
505
|
+
),
|
|
506
|
+
self.get_data_stream: gapic_v1.method.wrap_method(
|
|
507
|
+
self.get_data_stream,
|
|
508
|
+
default_timeout=None,
|
|
509
|
+
client_info=client_info,
|
|
510
|
+
),
|
|
511
|
+
self.get_audience: gapic_v1.method.wrap_method(
|
|
512
|
+
self.get_audience,
|
|
513
|
+
default_timeout=None,
|
|
514
|
+
client_info=client_info,
|
|
515
|
+
),
|
|
516
|
+
self.list_audiences: gapic_v1.method.wrap_method(
|
|
517
|
+
self.list_audiences,
|
|
518
|
+
default_timeout=None,
|
|
519
|
+
client_info=client_info,
|
|
520
|
+
),
|
|
521
|
+
self.create_audience: gapic_v1.method.wrap_method(
|
|
522
|
+
self.create_audience,
|
|
523
|
+
default_timeout=None,
|
|
524
|
+
client_info=client_info,
|
|
525
|
+
),
|
|
526
|
+
self.update_audience: gapic_v1.method.wrap_method(
|
|
527
|
+
self.update_audience,
|
|
528
|
+
default_timeout=None,
|
|
529
|
+
client_info=client_info,
|
|
530
|
+
),
|
|
531
|
+
self.archive_audience: gapic_v1.method.wrap_method(
|
|
532
|
+
self.archive_audience,
|
|
533
|
+
default_timeout=None,
|
|
534
|
+
client_info=client_info,
|
|
535
|
+
),
|
|
536
|
+
self.get_search_ads360_link: gapic_v1.method.wrap_method(
|
|
537
|
+
self.get_search_ads360_link,
|
|
538
|
+
default_timeout=None,
|
|
539
|
+
client_info=client_info,
|
|
540
|
+
),
|
|
541
|
+
self.list_search_ads360_links: gapic_v1.method.wrap_method(
|
|
542
|
+
self.list_search_ads360_links,
|
|
543
|
+
default_timeout=None,
|
|
544
|
+
client_info=client_info,
|
|
545
|
+
),
|
|
546
|
+
self.create_search_ads360_link: gapic_v1.method.wrap_method(
|
|
547
|
+
self.create_search_ads360_link,
|
|
548
|
+
default_timeout=None,
|
|
549
|
+
client_info=client_info,
|
|
550
|
+
),
|
|
551
|
+
self.delete_search_ads360_link: gapic_v1.method.wrap_method(
|
|
552
|
+
self.delete_search_ads360_link,
|
|
553
|
+
default_timeout=None,
|
|
554
|
+
client_info=client_info,
|
|
555
|
+
),
|
|
556
|
+
self.update_search_ads360_link: gapic_v1.method.wrap_method(
|
|
557
|
+
self.update_search_ads360_link,
|
|
558
|
+
default_timeout=None,
|
|
559
|
+
client_info=client_info,
|
|
560
|
+
),
|
|
561
|
+
self.get_attribution_settings: gapic_v1.method.wrap_method(
|
|
562
|
+
self.get_attribution_settings,
|
|
563
|
+
default_timeout=None,
|
|
564
|
+
client_info=client_info,
|
|
565
|
+
),
|
|
566
|
+
self.update_attribution_settings: gapic_v1.method.wrap_method(
|
|
567
|
+
self.update_attribution_settings,
|
|
568
|
+
default_timeout=None,
|
|
569
|
+
client_info=client_info,
|
|
570
|
+
),
|
|
571
|
+
self.run_access_report: gapic_v1.method.wrap_method(
|
|
572
|
+
self.run_access_report,
|
|
573
|
+
default_timeout=None,
|
|
574
|
+
client_info=client_info,
|
|
575
|
+
),
|
|
576
|
+
self.create_access_binding: gapic_v1.method.wrap_method(
|
|
577
|
+
self.create_access_binding,
|
|
578
|
+
default_timeout=None,
|
|
579
|
+
client_info=client_info,
|
|
580
|
+
),
|
|
581
|
+
self.get_access_binding: gapic_v1.method.wrap_method(
|
|
582
|
+
self.get_access_binding,
|
|
583
|
+
default_timeout=None,
|
|
584
|
+
client_info=client_info,
|
|
585
|
+
),
|
|
586
|
+
self.update_access_binding: gapic_v1.method.wrap_method(
|
|
587
|
+
self.update_access_binding,
|
|
588
|
+
default_timeout=None,
|
|
589
|
+
client_info=client_info,
|
|
590
|
+
),
|
|
591
|
+
self.delete_access_binding: gapic_v1.method.wrap_method(
|
|
592
|
+
self.delete_access_binding,
|
|
593
|
+
default_timeout=None,
|
|
594
|
+
client_info=client_info,
|
|
595
|
+
),
|
|
596
|
+
self.list_access_bindings: gapic_v1.method.wrap_method(
|
|
597
|
+
self.list_access_bindings,
|
|
598
|
+
default_timeout=None,
|
|
599
|
+
client_info=client_info,
|
|
600
|
+
),
|
|
601
|
+
self.batch_create_access_bindings: gapic_v1.method.wrap_method(
|
|
602
|
+
self.batch_create_access_bindings,
|
|
603
|
+
default_timeout=None,
|
|
604
|
+
client_info=client_info,
|
|
605
|
+
),
|
|
606
|
+
self.batch_get_access_bindings: gapic_v1.method.wrap_method(
|
|
607
|
+
self.batch_get_access_bindings,
|
|
608
|
+
default_timeout=None,
|
|
609
|
+
client_info=client_info,
|
|
610
|
+
),
|
|
611
|
+
self.batch_update_access_bindings: gapic_v1.method.wrap_method(
|
|
612
|
+
self.batch_update_access_bindings,
|
|
613
|
+
default_timeout=None,
|
|
614
|
+
client_info=client_info,
|
|
615
|
+
),
|
|
616
|
+
self.batch_delete_access_bindings: gapic_v1.method.wrap_method(
|
|
617
|
+
self.batch_delete_access_bindings,
|
|
618
|
+
default_timeout=None,
|
|
619
|
+
client_info=client_info,
|
|
620
|
+
),
|
|
621
|
+
self.get_expanded_data_set: gapic_v1.method.wrap_method(
|
|
622
|
+
self.get_expanded_data_set,
|
|
623
|
+
default_timeout=None,
|
|
624
|
+
client_info=client_info,
|
|
625
|
+
),
|
|
626
|
+
self.list_expanded_data_sets: gapic_v1.method.wrap_method(
|
|
627
|
+
self.list_expanded_data_sets,
|
|
628
|
+
default_timeout=None,
|
|
629
|
+
client_info=client_info,
|
|
630
|
+
),
|
|
631
|
+
self.create_expanded_data_set: gapic_v1.method.wrap_method(
|
|
632
|
+
self.create_expanded_data_set,
|
|
633
|
+
default_timeout=None,
|
|
634
|
+
client_info=client_info,
|
|
635
|
+
),
|
|
636
|
+
self.update_expanded_data_set: gapic_v1.method.wrap_method(
|
|
637
|
+
self.update_expanded_data_set,
|
|
638
|
+
default_timeout=None,
|
|
639
|
+
client_info=client_info,
|
|
640
|
+
),
|
|
641
|
+
self.delete_expanded_data_set: gapic_v1.method.wrap_method(
|
|
642
|
+
self.delete_expanded_data_set,
|
|
643
|
+
default_timeout=None,
|
|
644
|
+
client_info=client_info,
|
|
645
|
+
),
|
|
646
|
+
self.get_channel_group: gapic_v1.method.wrap_method(
|
|
647
|
+
self.get_channel_group,
|
|
648
|
+
default_timeout=None,
|
|
649
|
+
client_info=client_info,
|
|
650
|
+
),
|
|
651
|
+
self.list_channel_groups: gapic_v1.method.wrap_method(
|
|
652
|
+
self.list_channel_groups,
|
|
653
|
+
default_timeout=None,
|
|
654
|
+
client_info=client_info,
|
|
655
|
+
),
|
|
656
|
+
self.create_channel_group: gapic_v1.method.wrap_method(
|
|
657
|
+
self.create_channel_group,
|
|
658
|
+
default_timeout=None,
|
|
659
|
+
client_info=client_info,
|
|
660
|
+
),
|
|
661
|
+
self.update_channel_group: gapic_v1.method.wrap_method(
|
|
662
|
+
self.update_channel_group,
|
|
663
|
+
default_timeout=None,
|
|
664
|
+
client_info=client_info,
|
|
665
|
+
),
|
|
666
|
+
self.delete_channel_group: gapic_v1.method.wrap_method(
|
|
667
|
+
self.delete_channel_group,
|
|
668
|
+
default_timeout=None,
|
|
669
|
+
client_info=client_info,
|
|
670
|
+
),
|
|
671
|
+
self.set_automated_ga4_configuration_opt_out: gapic_v1.method.wrap_method(
|
|
672
|
+
self.set_automated_ga4_configuration_opt_out,
|
|
673
|
+
default_timeout=None,
|
|
674
|
+
client_info=client_info,
|
|
675
|
+
),
|
|
676
|
+
self.fetch_automated_ga4_configuration_opt_out: gapic_v1.method.wrap_method(
|
|
677
|
+
self.fetch_automated_ga4_configuration_opt_out,
|
|
678
|
+
default_timeout=None,
|
|
679
|
+
client_info=client_info,
|
|
680
|
+
),
|
|
681
|
+
self.create_big_query_link: gapic_v1.method.wrap_method(
|
|
682
|
+
self.create_big_query_link,
|
|
683
|
+
default_timeout=None,
|
|
684
|
+
client_info=client_info,
|
|
685
|
+
),
|
|
686
|
+
self.get_big_query_link: gapic_v1.method.wrap_method(
|
|
687
|
+
self.get_big_query_link,
|
|
688
|
+
default_timeout=None,
|
|
689
|
+
client_info=client_info,
|
|
690
|
+
),
|
|
691
|
+
self.list_big_query_links: gapic_v1.method.wrap_method(
|
|
692
|
+
self.list_big_query_links,
|
|
693
|
+
default_timeout=None,
|
|
694
|
+
client_info=client_info,
|
|
695
|
+
),
|
|
696
|
+
self.delete_big_query_link: gapic_v1.method.wrap_method(
|
|
697
|
+
self.delete_big_query_link,
|
|
698
|
+
default_timeout=None,
|
|
699
|
+
client_info=client_info,
|
|
700
|
+
),
|
|
701
|
+
self.update_big_query_link: gapic_v1.method.wrap_method(
|
|
702
|
+
self.update_big_query_link,
|
|
703
|
+
default_timeout=None,
|
|
704
|
+
client_info=client_info,
|
|
705
|
+
),
|
|
706
|
+
self.get_enhanced_measurement_settings: gapic_v1.method.wrap_method(
|
|
707
|
+
self.get_enhanced_measurement_settings,
|
|
708
|
+
default_timeout=60.0,
|
|
709
|
+
client_info=client_info,
|
|
710
|
+
),
|
|
711
|
+
self.update_enhanced_measurement_settings: gapic_v1.method.wrap_method(
|
|
712
|
+
self.update_enhanced_measurement_settings,
|
|
713
|
+
default_timeout=60.0,
|
|
714
|
+
client_info=client_info,
|
|
715
|
+
),
|
|
716
|
+
self.create_connected_site_tag: gapic_v1.method.wrap_method(
|
|
717
|
+
self.create_connected_site_tag,
|
|
718
|
+
default_timeout=None,
|
|
719
|
+
client_info=client_info,
|
|
720
|
+
),
|
|
721
|
+
self.delete_connected_site_tag: gapic_v1.method.wrap_method(
|
|
722
|
+
self.delete_connected_site_tag,
|
|
723
|
+
default_timeout=None,
|
|
724
|
+
client_info=client_info,
|
|
725
|
+
),
|
|
726
|
+
self.list_connected_site_tags: gapic_v1.method.wrap_method(
|
|
727
|
+
self.list_connected_site_tags,
|
|
728
|
+
default_timeout=None,
|
|
729
|
+
client_info=client_info,
|
|
730
|
+
),
|
|
731
|
+
self.fetch_connected_ga4_property: gapic_v1.method.wrap_method(
|
|
732
|
+
self.fetch_connected_ga4_property,
|
|
733
|
+
default_timeout=None,
|
|
734
|
+
client_info=client_info,
|
|
735
|
+
),
|
|
736
|
+
self.get_ad_sense_link: gapic_v1.method.wrap_method(
|
|
737
|
+
self.get_ad_sense_link,
|
|
738
|
+
default_timeout=None,
|
|
739
|
+
client_info=client_info,
|
|
740
|
+
),
|
|
741
|
+
self.create_ad_sense_link: gapic_v1.method.wrap_method(
|
|
742
|
+
self.create_ad_sense_link,
|
|
743
|
+
default_timeout=None,
|
|
744
|
+
client_info=client_info,
|
|
745
|
+
),
|
|
746
|
+
self.delete_ad_sense_link: gapic_v1.method.wrap_method(
|
|
747
|
+
self.delete_ad_sense_link,
|
|
748
|
+
default_timeout=None,
|
|
749
|
+
client_info=client_info,
|
|
750
|
+
),
|
|
751
|
+
self.list_ad_sense_links: gapic_v1.method.wrap_method(
|
|
752
|
+
self.list_ad_sense_links,
|
|
753
|
+
default_timeout=None,
|
|
754
|
+
client_info=client_info,
|
|
755
|
+
),
|
|
756
|
+
self.get_event_create_rule: gapic_v1.method.wrap_method(
|
|
757
|
+
self.get_event_create_rule,
|
|
758
|
+
default_timeout=None,
|
|
759
|
+
client_info=client_info,
|
|
760
|
+
),
|
|
761
|
+
self.list_event_create_rules: gapic_v1.method.wrap_method(
|
|
762
|
+
self.list_event_create_rules,
|
|
763
|
+
default_timeout=None,
|
|
764
|
+
client_info=client_info,
|
|
765
|
+
),
|
|
766
|
+
self.create_event_create_rule: gapic_v1.method.wrap_method(
|
|
767
|
+
self.create_event_create_rule,
|
|
768
|
+
default_timeout=None,
|
|
769
|
+
client_info=client_info,
|
|
770
|
+
),
|
|
771
|
+
self.update_event_create_rule: gapic_v1.method.wrap_method(
|
|
772
|
+
self.update_event_create_rule,
|
|
773
|
+
default_timeout=None,
|
|
774
|
+
client_info=client_info,
|
|
775
|
+
),
|
|
776
|
+
self.delete_event_create_rule: gapic_v1.method.wrap_method(
|
|
777
|
+
self.delete_event_create_rule,
|
|
778
|
+
default_timeout=None,
|
|
779
|
+
client_info=client_info,
|
|
780
|
+
),
|
|
781
|
+
self.get_event_edit_rule: gapic_v1.method.wrap_method(
|
|
782
|
+
self.get_event_edit_rule,
|
|
783
|
+
default_timeout=None,
|
|
784
|
+
client_info=client_info,
|
|
785
|
+
),
|
|
786
|
+
self.list_event_edit_rules: gapic_v1.method.wrap_method(
|
|
787
|
+
self.list_event_edit_rules,
|
|
788
|
+
default_timeout=None,
|
|
789
|
+
client_info=client_info,
|
|
790
|
+
),
|
|
791
|
+
self.create_event_edit_rule: gapic_v1.method.wrap_method(
|
|
792
|
+
self.create_event_edit_rule,
|
|
793
|
+
default_timeout=None,
|
|
794
|
+
client_info=client_info,
|
|
795
|
+
),
|
|
796
|
+
self.update_event_edit_rule: gapic_v1.method.wrap_method(
|
|
797
|
+
self.update_event_edit_rule,
|
|
798
|
+
default_timeout=None,
|
|
799
|
+
client_info=client_info,
|
|
800
|
+
),
|
|
801
|
+
self.delete_event_edit_rule: gapic_v1.method.wrap_method(
|
|
802
|
+
self.delete_event_edit_rule,
|
|
803
|
+
default_timeout=None,
|
|
804
|
+
client_info=client_info,
|
|
805
|
+
),
|
|
806
|
+
self.reorder_event_edit_rules: gapic_v1.method.wrap_method(
|
|
807
|
+
self.reorder_event_edit_rules,
|
|
808
|
+
default_timeout=None,
|
|
809
|
+
client_info=client_info,
|
|
810
|
+
),
|
|
811
|
+
self.update_data_redaction_settings: gapic_v1.method.wrap_method(
|
|
812
|
+
self.update_data_redaction_settings,
|
|
813
|
+
default_timeout=None,
|
|
814
|
+
client_info=client_info,
|
|
815
|
+
),
|
|
816
|
+
self.get_data_redaction_settings: gapic_v1.method.wrap_method(
|
|
817
|
+
self.get_data_redaction_settings,
|
|
818
|
+
default_timeout=None,
|
|
819
|
+
client_info=client_info,
|
|
820
|
+
),
|
|
821
|
+
self.get_calculated_metric: gapic_v1.method.wrap_method(
|
|
822
|
+
self.get_calculated_metric,
|
|
823
|
+
default_timeout=None,
|
|
824
|
+
client_info=client_info,
|
|
825
|
+
),
|
|
826
|
+
self.create_calculated_metric: gapic_v1.method.wrap_method(
|
|
827
|
+
self.create_calculated_metric,
|
|
828
|
+
default_timeout=None,
|
|
829
|
+
client_info=client_info,
|
|
830
|
+
),
|
|
831
|
+
self.list_calculated_metrics: gapic_v1.method.wrap_method(
|
|
832
|
+
self.list_calculated_metrics,
|
|
833
|
+
default_timeout=None,
|
|
834
|
+
client_info=client_info,
|
|
835
|
+
),
|
|
836
|
+
self.update_calculated_metric: gapic_v1.method.wrap_method(
|
|
837
|
+
self.update_calculated_metric,
|
|
838
|
+
default_timeout=None,
|
|
839
|
+
client_info=client_info,
|
|
840
|
+
),
|
|
841
|
+
self.delete_calculated_metric: gapic_v1.method.wrap_method(
|
|
842
|
+
self.delete_calculated_metric,
|
|
843
|
+
default_timeout=None,
|
|
844
|
+
client_info=client_info,
|
|
845
|
+
),
|
|
846
|
+
self.create_rollup_property: gapic_v1.method.wrap_method(
|
|
847
|
+
self.create_rollup_property,
|
|
848
|
+
default_timeout=None,
|
|
849
|
+
client_info=client_info,
|
|
850
|
+
),
|
|
851
|
+
self.get_rollup_property_source_link: gapic_v1.method.wrap_method(
|
|
852
|
+
self.get_rollup_property_source_link,
|
|
853
|
+
default_timeout=None,
|
|
854
|
+
client_info=client_info,
|
|
855
|
+
),
|
|
856
|
+
self.list_rollup_property_source_links: gapic_v1.method.wrap_method(
|
|
857
|
+
self.list_rollup_property_source_links,
|
|
858
|
+
default_timeout=None,
|
|
859
|
+
client_info=client_info,
|
|
860
|
+
),
|
|
861
|
+
self.create_rollup_property_source_link: gapic_v1.method.wrap_method(
|
|
862
|
+
self.create_rollup_property_source_link,
|
|
863
|
+
default_timeout=None,
|
|
864
|
+
client_info=client_info,
|
|
865
|
+
),
|
|
866
|
+
self.delete_rollup_property_source_link: gapic_v1.method.wrap_method(
|
|
867
|
+
self.delete_rollup_property_source_link,
|
|
868
|
+
default_timeout=None,
|
|
869
|
+
client_info=client_info,
|
|
870
|
+
),
|
|
871
|
+
self.provision_subproperty: gapic_v1.method.wrap_method(
|
|
872
|
+
self.provision_subproperty,
|
|
873
|
+
default_timeout=None,
|
|
874
|
+
client_info=client_info,
|
|
875
|
+
),
|
|
876
|
+
self.create_subproperty_event_filter: gapic_v1.method.wrap_method(
|
|
877
|
+
self.create_subproperty_event_filter,
|
|
878
|
+
default_timeout=None,
|
|
879
|
+
client_info=client_info,
|
|
880
|
+
),
|
|
881
|
+
self.get_subproperty_event_filter: gapic_v1.method.wrap_method(
|
|
882
|
+
self.get_subproperty_event_filter,
|
|
883
|
+
default_timeout=None,
|
|
884
|
+
client_info=client_info,
|
|
885
|
+
),
|
|
886
|
+
self.list_subproperty_event_filters: gapic_v1.method.wrap_method(
|
|
887
|
+
self.list_subproperty_event_filters,
|
|
888
|
+
default_timeout=None,
|
|
889
|
+
client_info=client_info,
|
|
890
|
+
),
|
|
891
|
+
self.update_subproperty_event_filter: gapic_v1.method.wrap_method(
|
|
892
|
+
self.update_subproperty_event_filter,
|
|
893
|
+
default_timeout=None,
|
|
894
|
+
client_info=client_info,
|
|
895
|
+
),
|
|
896
|
+
self.delete_subproperty_event_filter: gapic_v1.method.wrap_method(
|
|
897
|
+
self.delete_subproperty_event_filter,
|
|
898
|
+
default_timeout=None,
|
|
899
|
+
client_info=client_info,
|
|
900
|
+
),
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
def close(self):
|
|
904
|
+
"""Closes resources associated with the transport.
|
|
905
|
+
|
|
906
|
+
.. warning::
|
|
907
|
+
Only call this method if the transport is NOT shared
|
|
908
|
+
with other clients - this may cause errors in other clients!
|
|
909
|
+
"""
|
|
910
|
+
raise NotImplementedError()
|
|
911
|
+
|
|
912
|
+
@property
|
|
913
|
+
def get_account(
|
|
914
|
+
self,
|
|
915
|
+
) -> Callable[
|
|
916
|
+
[analytics_admin.GetAccountRequest],
|
|
917
|
+
Union[resources.Account, Awaitable[resources.Account]],
|
|
918
|
+
]:
|
|
919
|
+
raise NotImplementedError()
|
|
920
|
+
|
|
921
|
+
@property
|
|
922
|
+
def list_accounts(
|
|
923
|
+
self,
|
|
924
|
+
) -> Callable[
|
|
925
|
+
[analytics_admin.ListAccountsRequest],
|
|
926
|
+
Union[
|
|
927
|
+
analytics_admin.ListAccountsResponse,
|
|
928
|
+
Awaitable[analytics_admin.ListAccountsResponse],
|
|
929
|
+
],
|
|
930
|
+
]:
|
|
931
|
+
raise NotImplementedError()
|
|
932
|
+
|
|
933
|
+
@property
|
|
934
|
+
def delete_account(
|
|
935
|
+
self,
|
|
936
|
+
) -> Callable[
|
|
937
|
+
[analytics_admin.DeleteAccountRequest],
|
|
938
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
939
|
+
]:
|
|
940
|
+
raise NotImplementedError()
|
|
941
|
+
|
|
942
|
+
@property
|
|
943
|
+
def update_account(
|
|
944
|
+
self,
|
|
945
|
+
) -> Callable[
|
|
946
|
+
[analytics_admin.UpdateAccountRequest],
|
|
947
|
+
Union[resources.Account, Awaitable[resources.Account]],
|
|
948
|
+
]:
|
|
949
|
+
raise NotImplementedError()
|
|
950
|
+
|
|
951
|
+
@property
|
|
952
|
+
def provision_account_ticket(
|
|
953
|
+
self,
|
|
954
|
+
) -> Callable[
|
|
955
|
+
[analytics_admin.ProvisionAccountTicketRequest],
|
|
956
|
+
Union[
|
|
957
|
+
analytics_admin.ProvisionAccountTicketResponse,
|
|
958
|
+
Awaitable[analytics_admin.ProvisionAccountTicketResponse],
|
|
959
|
+
],
|
|
960
|
+
]:
|
|
961
|
+
raise NotImplementedError()
|
|
962
|
+
|
|
963
|
+
@property
|
|
964
|
+
def list_account_summaries(
|
|
965
|
+
self,
|
|
966
|
+
) -> Callable[
|
|
967
|
+
[analytics_admin.ListAccountSummariesRequest],
|
|
968
|
+
Union[
|
|
969
|
+
analytics_admin.ListAccountSummariesResponse,
|
|
970
|
+
Awaitable[analytics_admin.ListAccountSummariesResponse],
|
|
971
|
+
],
|
|
972
|
+
]:
|
|
973
|
+
raise NotImplementedError()
|
|
974
|
+
|
|
975
|
+
@property
|
|
976
|
+
def get_property(
|
|
977
|
+
self,
|
|
978
|
+
) -> Callable[
|
|
979
|
+
[analytics_admin.GetPropertyRequest],
|
|
980
|
+
Union[resources.Property, Awaitable[resources.Property]],
|
|
981
|
+
]:
|
|
982
|
+
raise NotImplementedError()
|
|
983
|
+
|
|
984
|
+
@property
|
|
985
|
+
def list_properties(
|
|
986
|
+
self,
|
|
987
|
+
) -> Callable[
|
|
988
|
+
[analytics_admin.ListPropertiesRequest],
|
|
989
|
+
Union[
|
|
990
|
+
analytics_admin.ListPropertiesResponse,
|
|
991
|
+
Awaitable[analytics_admin.ListPropertiesResponse],
|
|
992
|
+
],
|
|
993
|
+
]:
|
|
994
|
+
raise NotImplementedError()
|
|
995
|
+
|
|
996
|
+
@property
|
|
997
|
+
def create_property(
|
|
998
|
+
self,
|
|
999
|
+
) -> Callable[
|
|
1000
|
+
[analytics_admin.CreatePropertyRequest],
|
|
1001
|
+
Union[resources.Property, Awaitable[resources.Property]],
|
|
1002
|
+
]:
|
|
1003
|
+
raise NotImplementedError()
|
|
1004
|
+
|
|
1005
|
+
@property
|
|
1006
|
+
def delete_property(
|
|
1007
|
+
self,
|
|
1008
|
+
) -> Callable[
|
|
1009
|
+
[analytics_admin.DeletePropertyRequest],
|
|
1010
|
+
Union[resources.Property, Awaitable[resources.Property]],
|
|
1011
|
+
]:
|
|
1012
|
+
raise NotImplementedError()
|
|
1013
|
+
|
|
1014
|
+
@property
|
|
1015
|
+
def update_property(
|
|
1016
|
+
self,
|
|
1017
|
+
) -> Callable[
|
|
1018
|
+
[analytics_admin.UpdatePropertyRequest],
|
|
1019
|
+
Union[resources.Property, Awaitable[resources.Property]],
|
|
1020
|
+
]:
|
|
1021
|
+
raise NotImplementedError()
|
|
1022
|
+
|
|
1023
|
+
@property
|
|
1024
|
+
def create_firebase_link(
|
|
1025
|
+
self,
|
|
1026
|
+
) -> Callable[
|
|
1027
|
+
[analytics_admin.CreateFirebaseLinkRequest],
|
|
1028
|
+
Union[resources.FirebaseLink, Awaitable[resources.FirebaseLink]],
|
|
1029
|
+
]:
|
|
1030
|
+
raise NotImplementedError()
|
|
1031
|
+
|
|
1032
|
+
@property
|
|
1033
|
+
def delete_firebase_link(
|
|
1034
|
+
self,
|
|
1035
|
+
) -> Callable[
|
|
1036
|
+
[analytics_admin.DeleteFirebaseLinkRequest],
|
|
1037
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1038
|
+
]:
|
|
1039
|
+
raise NotImplementedError()
|
|
1040
|
+
|
|
1041
|
+
@property
|
|
1042
|
+
def list_firebase_links(
|
|
1043
|
+
self,
|
|
1044
|
+
) -> Callable[
|
|
1045
|
+
[analytics_admin.ListFirebaseLinksRequest],
|
|
1046
|
+
Union[
|
|
1047
|
+
analytics_admin.ListFirebaseLinksResponse,
|
|
1048
|
+
Awaitable[analytics_admin.ListFirebaseLinksResponse],
|
|
1049
|
+
],
|
|
1050
|
+
]:
|
|
1051
|
+
raise NotImplementedError()
|
|
1052
|
+
|
|
1053
|
+
@property
|
|
1054
|
+
def get_global_site_tag(
|
|
1055
|
+
self,
|
|
1056
|
+
) -> Callable[
|
|
1057
|
+
[analytics_admin.GetGlobalSiteTagRequest],
|
|
1058
|
+
Union[resources.GlobalSiteTag, Awaitable[resources.GlobalSiteTag]],
|
|
1059
|
+
]:
|
|
1060
|
+
raise NotImplementedError()
|
|
1061
|
+
|
|
1062
|
+
@property
|
|
1063
|
+
def create_google_ads_link(
|
|
1064
|
+
self,
|
|
1065
|
+
) -> Callable[
|
|
1066
|
+
[analytics_admin.CreateGoogleAdsLinkRequest],
|
|
1067
|
+
Union[resources.GoogleAdsLink, Awaitable[resources.GoogleAdsLink]],
|
|
1068
|
+
]:
|
|
1069
|
+
raise NotImplementedError()
|
|
1070
|
+
|
|
1071
|
+
@property
|
|
1072
|
+
def update_google_ads_link(
|
|
1073
|
+
self,
|
|
1074
|
+
) -> Callable[
|
|
1075
|
+
[analytics_admin.UpdateGoogleAdsLinkRequest],
|
|
1076
|
+
Union[resources.GoogleAdsLink, Awaitable[resources.GoogleAdsLink]],
|
|
1077
|
+
]:
|
|
1078
|
+
raise NotImplementedError()
|
|
1079
|
+
|
|
1080
|
+
@property
|
|
1081
|
+
def delete_google_ads_link(
|
|
1082
|
+
self,
|
|
1083
|
+
) -> Callable[
|
|
1084
|
+
[analytics_admin.DeleteGoogleAdsLinkRequest],
|
|
1085
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1086
|
+
]:
|
|
1087
|
+
raise NotImplementedError()
|
|
1088
|
+
|
|
1089
|
+
@property
|
|
1090
|
+
def list_google_ads_links(
|
|
1091
|
+
self,
|
|
1092
|
+
) -> Callable[
|
|
1093
|
+
[analytics_admin.ListGoogleAdsLinksRequest],
|
|
1094
|
+
Union[
|
|
1095
|
+
analytics_admin.ListGoogleAdsLinksResponse,
|
|
1096
|
+
Awaitable[analytics_admin.ListGoogleAdsLinksResponse],
|
|
1097
|
+
],
|
|
1098
|
+
]:
|
|
1099
|
+
raise NotImplementedError()
|
|
1100
|
+
|
|
1101
|
+
@property
|
|
1102
|
+
def get_data_sharing_settings(
|
|
1103
|
+
self,
|
|
1104
|
+
) -> Callable[
|
|
1105
|
+
[analytics_admin.GetDataSharingSettingsRequest],
|
|
1106
|
+
Union[resources.DataSharingSettings, Awaitable[resources.DataSharingSettings]],
|
|
1107
|
+
]:
|
|
1108
|
+
raise NotImplementedError()
|
|
1109
|
+
|
|
1110
|
+
@property
|
|
1111
|
+
def get_measurement_protocol_secret(
|
|
1112
|
+
self,
|
|
1113
|
+
) -> Callable[
|
|
1114
|
+
[analytics_admin.GetMeasurementProtocolSecretRequest],
|
|
1115
|
+
Union[
|
|
1116
|
+
resources.MeasurementProtocolSecret,
|
|
1117
|
+
Awaitable[resources.MeasurementProtocolSecret],
|
|
1118
|
+
],
|
|
1119
|
+
]:
|
|
1120
|
+
raise NotImplementedError()
|
|
1121
|
+
|
|
1122
|
+
@property
|
|
1123
|
+
def list_measurement_protocol_secrets(
|
|
1124
|
+
self,
|
|
1125
|
+
) -> Callable[
|
|
1126
|
+
[analytics_admin.ListMeasurementProtocolSecretsRequest],
|
|
1127
|
+
Union[
|
|
1128
|
+
analytics_admin.ListMeasurementProtocolSecretsResponse,
|
|
1129
|
+
Awaitable[analytics_admin.ListMeasurementProtocolSecretsResponse],
|
|
1130
|
+
],
|
|
1131
|
+
]:
|
|
1132
|
+
raise NotImplementedError()
|
|
1133
|
+
|
|
1134
|
+
@property
|
|
1135
|
+
def create_measurement_protocol_secret(
|
|
1136
|
+
self,
|
|
1137
|
+
) -> Callable[
|
|
1138
|
+
[analytics_admin.CreateMeasurementProtocolSecretRequest],
|
|
1139
|
+
Union[
|
|
1140
|
+
resources.MeasurementProtocolSecret,
|
|
1141
|
+
Awaitable[resources.MeasurementProtocolSecret],
|
|
1142
|
+
],
|
|
1143
|
+
]:
|
|
1144
|
+
raise NotImplementedError()
|
|
1145
|
+
|
|
1146
|
+
@property
|
|
1147
|
+
def delete_measurement_protocol_secret(
|
|
1148
|
+
self,
|
|
1149
|
+
) -> Callable[
|
|
1150
|
+
[analytics_admin.DeleteMeasurementProtocolSecretRequest],
|
|
1151
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1152
|
+
]:
|
|
1153
|
+
raise NotImplementedError()
|
|
1154
|
+
|
|
1155
|
+
@property
|
|
1156
|
+
def update_measurement_protocol_secret(
|
|
1157
|
+
self,
|
|
1158
|
+
) -> Callable[
|
|
1159
|
+
[analytics_admin.UpdateMeasurementProtocolSecretRequest],
|
|
1160
|
+
Union[
|
|
1161
|
+
resources.MeasurementProtocolSecret,
|
|
1162
|
+
Awaitable[resources.MeasurementProtocolSecret],
|
|
1163
|
+
],
|
|
1164
|
+
]:
|
|
1165
|
+
raise NotImplementedError()
|
|
1166
|
+
|
|
1167
|
+
@property
|
|
1168
|
+
def acknowledge_user_data_collection(
|
|
1169
|
+
self,
|
|
1170
|
+
) -> Callable[
|
|
1171
|
+
[analytics_admin.AcknowledgeUserDataCollectionRequest],
|
|
1172
|
+
Union[
|
|
1173
|
+
analytics_admin.AcknowledgeUserDataCollectionResponse,
|
|
1174
|
+
Awaitable[analytics_admin.AcknowledgeUserDataCollectionResponse],
|
|
1175
|
+
],
|
|
1176
|
+
]:
|
|
1177
|
+
raise NotImplementedError()
|
|
1178
|
+
|
|
1179
|
+
@property
|
|
1180
|
+
def get_sk_ad_network_conversion_value_schema(
|
|
1181
|
+
self,
|
|
1182
|
+
) -> Callable[
|
|
1183
|
+
[analytics_admin.GetSKAdNetworkConversionValueSchemaRequest],
|
|
1184
|
+
Union[
|
|
1185
|
+
resources.SKAdNetworkConversionValueSchema,
|
|
1186
|
+
Awaitable[resources.SKAdNetworkConversionValueSchema],
|
|
1187
|
+
],
|
|
1188
|
+
]:
|
|
1189
|
+
raise NotImplementedError()
|
|
1190
|
+
|
|
1191
|
+
@property
|
|
1192
|
+
def create_sk_ad_network_conversion_value_schema(
|
|
1193
|
+
self,
|
|
1194
|
+
) -> Callable[
|
|
1195
|
+
[analytics_admin.CreateSKAdNetworkConversionValueSchemaRequest],
|
|
1196
|
+
Union[
|
|
1197
|
+
resources.SKAdNetworkConversionValueSchema,
|
|
1198
|
+
Awaitable[resources.SKAdNetworkConversionValueSchema],
|
|
1199
|
+
],
|
|
1200
|
+
]:
|
|
1201
|
+
raise NotImplementedError()
|
|
1202
|
+
|
|
1203
|
+
@property
|
|
1204
|
+
def delete_sk_ad_network_conversion_value_schema(
|
|
1205
|
+
self,
|
|
1206
|
+
) -> Callable[
|
|
1207
|
+
[analytics_admin.DeleteSKAdNetworkConversionValueSchemaRequest],
|
|
1208
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1209
|
+
]:
|
|
1210
|
+
raise NotImplementedError()
|
|
1211
|
+
|
|
1212
|
+
@property
|
|
1213
|
+
def update_sk_ad_network_conversion_value_schema(
|
|
1214
|
+
self,
|
|
1215
|
+
) -> Callable[
|
|
1216
|
+
[analytics_admin.UpdateSKAdNetworkConversionValueSchemaRequest],
|
|
1217
|
+
Union[
|
|
1218
|
+
resources.SKAdNetworkConversionValueSchema,
|
|
1219
|
+
Awaitable[resources.SKAdNetworkConversionValueSchema],
|
|
1220
|
+
],
|
|
1221
|
+
]:
|
|
1222
|
+
raise NotImplementedError()
|
|
1223
|
+
|
|
1224
|
+
@property
|
|
1225
|
+
def list_sk_ad_network_conversion_value_schemas(
|
|
1226
|
+
self,
|
|
1227
|
+
) -> Callable[
|
|
1228
|
+
[analytics_admin.ListSKAdNetworkConversionValueSchemasRequest],
|
|
1229
|
+
Union[
|
|
1230
|
+
analytics_admin.ListSKAdNetworkConversionValueSchemasResponse,
|
|
1231
|
+
Awaitable[analytics_admin.ListSKAdNetworkConversionValueSchemasResponse],
|
|
1232
|
+
],
|
|
1233
|
+
]:
|
|
1234
|
+
raise NotImplementedError()
|
|
1235
|
+
|
|
1236
|
+
@property
|
|
1237
|
+
def search_change_history_events(
|
|
1238
|
+
self,
|
|
1239
|
+
) -> Callable[
|
|
1240
|
+
[analytics_admin.SearchChangeHistoryEventsRequest],
|
|
1241
|
+
Union[
|
|
1242
|
+
analytics_admin.SearchChangeHistoryEventsResponse,
|
|
1243
|
+
Awaitable[analytics_admin.SearchChangeHistoryEventsResponse],
|
|
1244
|
+
],
|
|
1245
|
+
]:
|
|
1246
|
+
raise NotImplementedError()
|
|
1247
|
+
|
|
1248
|
+
@property
|
|
1249
|
+
def get_google_signals_settings(
|
|
1250
|
+
self,
|
|
1251
|
+
) -> Callable[
|
|
1252
|
+
[analytics_admin.GetGoogleSignalsSettingsRequest],
|
|
1253
|
+
Union[
|
|
1254
|
+
resources.GoogleSignalsSettings, Awaitable[resources.GoogleSignalsSettings]
|
|
1255
|
+
],
|
|
1256
|
+
]:
|
|
1257
|
+
raise NotImplementedError()
|
|
1258
|
+
|
|
1259
|
+
@property
|
|
1260
|
+
def update_google_signals_settings(
|
|
1261
|
+
self,
|
|
1262
|
+
) -> Callable[
|
|
1263
|
+
[analytics_admin.UpdateGoogleSignalsSettingsRequest],
|
|
1264
|
+
Union[
|
|
1265
|
+
resources.GoogleSignalsSettings, Awaitable[resources.GoogleSignalsSettings]
|
|
1266
|
+
],
|
|
1267
|
+
]:
|
|
1268
|
+
raise NotImplementedError()
|
|
1269
|
+
|
|
1270
|
+
@property
|
|
1271
|
+
def create_conversion_event(
|
|
1272
|
+
self,
|
|
1273
|
+
) -> Callable[
|
|
1274
|
+
[analytics_admin.CreateConversionEventRequest],
|
|
1275
|
+
Union[resources.ConversionEvent, Awaitable[resources.ConversionEvent]],
|
|
1276
|
+
]:
|
|
1277
|
+
raise NotImplementedError()
|
|
1278
|
+
|
|
1279
|
+
@property
|
|
1280
|
+
def update_conversion_event(
|
|
1281
|
+
self,
|
|
1282
|
+
) -> Callable[
|
|
1283
|
+
[analytics_admin.UpdateConversionEventRequest],
|
|
1284
|
+
Union[resources.ConversionEvent, Awaitable[resources.ConversionEvent]],
|
|
1285
|
+
]:
|
|
1286
|
+
raise NotImplementedError()
|
|
1287
|
+
|
|
1288
|
+
@property
|
|
1289
|
+
def get_conversion_event(
|
|
1290
|
+
self,
|
|
1291
|
+
) -> Callable[
|
|
1292
|
+
[analytics_admin.GetConversionEventRequest],
|
|
1293
|
+
Union[resources.ConversionEvent, Awaitable[resources.ConversionEvent]],
|
|
1294
|
+
]:
|
|
1295
|
+
raise NotImplementedError()
|
|
1296
|
+
|
|
1297
|
+
@property
|
|
1298
|
+
def delete_conversion_event(
|
|
1299
|
+
self,
|
|
1300
|
+
) -> Callable[
|
|
1301
|
+
[analytics_admin.DeleteConversionEventRequest],
|
|
1302
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1303
|
+
]:
|
|
1304
|
+
raise NotImplementedError()
|
|
1305
|
+
|
|
1306
|
+
@property
|
|
1307
|
+
def list_conversion_events(
|
|
1308
|
+
self,
|
|
1309
|
+
) -> Callable[
|
|
1310
|
+
[analytics_admin.ListConversionEventsRequest],
|
|
1311
|
+
Union[
|
|
1312
|
+
analytics_admin.ListConversionEventsResponse,
|
|
1313
|
+
Awaitable[analytics_admin.ListConversionEventsResponse],
|
|
1314
|
+
],
|
|
1315
|
+
]:
|
|
1316
|
+
raise NotImplementedError()
|
|
1317
|
+
|
|
1318
|
+
@property
|
|
1319
|
+
def create_key_event(
|
|
1320
|
+
self,
|
|
1321
|
+
) -> Callable[
|
|
1322
|
+
[analytics_admin.CreateKeyEventRequest],
|
|
1323
|
+
Union[resources.KeyEvent, Awaitable[resources.KeyEvent]],
|
|
1324
|
+
]:
|
|
1325
|
+
raise NotImplementedError()
|
|
1326
|
+
|
|
1327
|
+
@property
|
|
1328
|
+
def update_key_event(
|
|
1329
|
+
self,
|
|
1330
|
+
) -> Callable[
|
|
1331
|
+
[analytics_admin.UpdateKeyEventRequest],
|
|
1332
|
+
Union[resources.KeyEvent, Awaitable[resources.KeyEvent]],
|
|
1333
|
+
]:
|
|
1334
|
+
raise NotImplementedError()
|
|
1335
|
+
|
|
1336
|
+
@property
|
|
1337
|
+
def get_key_event(
|
|
1338
|
+
self,
|
|
1339
|
+
) -> Callable[
|
|
1340
|
+
[analytics_admin.GetKeyEventRequest],
|
|
1341
|
+
Union[resources.KeyEvent, Awaitable[resources.KeyEvent]],
|
|
1342
|
+
]:
|
|
1343
|
+
raise NotImplementedError()
|
|
1344
|
+
|
|
1345
|
+
@property
|
|
1346
|
+
def delete_key_event(
|
|
1347
|
+
self,
|
|
1348
|
+
) -> Callable[
|
|
1349
|
+
[analytics_admin.DeleteKeyEventRequest],
|
|
1350
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1351
|
+
]:
|
|
1352
|
+
raise NotImplementedError()
|
|
1353
|
+
|
|
1354
|
+
@property
|
|
1355
|
+
def list_key_events(
|
|
1356
|
+
self,
|
|
1357
|
+
) -> Callable[
|
|
1358
|
+
[analytics_admin.ListKeyEventsRequest],
|
|
1359
|
+
Union[
|
|
1360
|
+
analytics_admin.ListKeyEventsResponse,
|
|
1361
|
+
Awaitable[analytics_admin.ListKeyEventsResponse],
|
|
1362
|
+
],
|
|
1363
|
+
]:
|
|
1364
|
+
raise NotImplementedError()
|
|
1365
|
+
|
|
1366
|
+
@property
|
|
1367
|
+
def get_display_video360_advertiser_link(
|
|
1368
|
+
self,
|
|
1369
|
+
) -> Callable[
|
|
1370
|
+
[analytics_admin.GetDisplayVideo360AdvertiserLinkRequest],
|
|
1371
|
+
Union[
|
|
1372
|
+
resources.DisplayVideo360AdvertiserLink,
|
|
1373
|
+
Awaitable[resources.DisplayVideo360AdvertiserLink],
|
|
1374
|
+
],
|
|
1375
|
+
]:
|
|
1376
|
+
raise NotImplementedError()
|
|
1377
|
+
|
|
1378
|
+
@property
|
|
1379
|
+
def list_display_video360_advertiser_links(
|
|
1380
|
+
self,
|
|
1381
|
+
) -> Callable[
|
|
1382
|
+
[analytics_admin.ListDisplayVideo360AdvertiserLinksRequest],
|
|
1383
|
+
Union[
|
|
1384
|
+
analytics_admin.ListDisplayVideo360AdvertiserLinksResponse,
|
|
1385
|
+
Awaitable[analytics_admin.ListDisplayVideo360AdvertiserLinksResponse],
|
|
1386
|
+
],
|
|
1387
|
+
]:
|
|
1388
|
+
raise NotImplementedError()
|
|
1389
|
+
|
|
1390
|
+
@property
|
|
1391
|
+
def create_display_video360_advertiser_link(
|
|
1392
|
+
self,
|
|
1393
|
+
) -> Callable[
|
|
1394
|
+
[analytics_admin.CreateDisplayVideo360AdvertiserLinkRequest],
|
|
1395
|
+
Union[
|
|
1396
|
+
resources.DisplayVideo360AdvertiserLink,
|
|
1397
|
+
Awaitable[resources.DisplayVideo360AdvertiserLink],
|
|
1398
|
+
],
|
|
1399
|
+
]:
|
|
1400
|
+
raise NotImplementedError()
|
|
1401
|
+
|
|
1402
|
+
@property
|
|
1403
|
+
def delete_display_video360_advertiser_link(
|
|
1404
|
+
self,
|
|
1405
|
+
) -> Callable[
|
|
1406
|
+
[analytics_admin.DeleteDisplayVideo360AdvertiserLinkRequest],
|
|
1407
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1408
|
+
]:
|
|
1409
|
+
raise NotImplementedError()
|
|
1410
|
+
|
|
1411
|
+
@property
|
|
1412
|
+
def update_display_video360_advertiser_link(
|
|
1413
|
+
self,
|
|
1414
|
+
) -> Callable[
|
|
1415
|
+
[analytics_admin.UpdateDisplayVideo360AdvertiserLinkRequest],
|
|
1416
|
+
Union[
|
|
1417
|
+
resources.DisplayVideo360AdvertiserLink,
|
|
1418
|
+
Awaitable[resources.DisplayVideo360AdvertiserLink],
|
|
1419
|
+
],
|
|
1420
|
+
]:
|
|
1421
|
+
raise NotImplementedError()
|
|
1422
|
+
|
|
1423
|
+
@property
|
|
1424
|
+
def get_display_video360_advertiser_link_proposal(
|
|
1425
|
+
self,
|
|
1426
|
+
) -> Callable[
|
|
1427
|
+
[analytics_admin.GetDisplayVideo360AdvertiserLinkProposalRequest],
|
|
1428
|
+
Union[
|
|
1429
|
+
resources.DisplayVideo360AdvertiserLinkProposal,
|
|
1430
|
+
Awaitable[resources.DisplayVideo360AdvertiserLinkProposal],
|
|
1431
|
+
],
|
|
1432
|
+
]:
|
|
1433
|
+
raise NotImplementedError()
|
|
1434
|
+
|
|
1435
|
+
@property
|
|
1436
|
+
def list_display_video360_advertiser_link_proposals(
|
|
1437
|
+
self,
|
|
1438
|
+
) -> Callable[
|
|
1439
|
+
[analytics_admin.ListDisplayVideo360AdvertiserLinkProposalsRequest],
|
|
1440
|
+
Union[
|
|
1441
|
+
analytics_admin.ListDisplayVideo360AdvertiserLinkProposalsResponse,
|
|
1442
|
+
Awaitable[
|
|
1443
|
+
analytics_admin.ListDisplayVideo360AdvertiserLinkProposalsResponse
|
|
1444
|
+
],
|
|
1445
|
+
],
|
|
1446
|
+
]:
|
|
1447
|
+
raise NotImplementedError()
|
|
1448
|
+
|
|
1449
|
+
@property
|
|
1450
|
+
def create_display_video360_advertiser_link_proposal(
|
|
1451
|
+
self,
|
|
1452
|
+
) -> Callable[
|
|
1453
|
+
[analytics_admin.CreateDisplayVideo360AdvertiserLinkProposalRequest],
|
|
1454
|
+
Union[
|
|
1455
|
+
resources.DisplayVideo360AdvertiserLinkProposal,
|
|
1456
|
+
Awaitable[resources.DisplayVideo360AdvertiserLinkProposal],
|
|
1457
|
+
],
|
|
1458
|
+
]:
|
|
1459
|
+
raise NotImplementedError()
|
|
1460
|
+
|
|
1461
|
+
@property
|
|
1462
|
+
def delete_display_video360_advertiser_link_proposal(
|
|
1463
|
+
self,
|
|
1464
|
+
) -> Callable[
|
|
1465
|
+
[analytics_admin.DeleteDisplayVideo360AdvertiserLinkProposalRequest],
|
|
1466
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1467
|
+
]:
|
|
1468
|
+
raise NotImplementedError()
|
|
1469
|
+
|
|
1470
|
+
@property
|
|
1471
|
+
def approve_display_video360_advertiser_link_proposal(
|
|
1472
|
+
self,
|
|
1473
|
+
) -> Callable[
|
|
1474
|
+
[analytics_admin.ApproveDisplayVideo360AdvertiserLinkProposalRequest],
|
|
1475
|
+
Union[
|
|
1476
|
+
analytics_admin.ApproveDisplayVideo360AdvertiserLinkProposalResponse,
|
|
1477
|
+
Awaitable[
|
|
1478
|
+
analytics_admin.ApproveDisplayVideo360AdvertiserLinkProposalResponse
|
|
1479
|
+
],
|
|
1480
|
+
],
|
|
1481
|
+
]:
|
|
1482
|
+
raise NotImplementedError()
|
|
1483
|
+
|
|
1484
|
+
@property
|
|
1485
|
+
def cancel_display_video360_advertiser_link_proposal(
|
|
1486
|
+
self,
|
|
1487
|
+
) -> Callable[
|
|
1488
|
+
[analytics_admin.CancelDisplayVideo360AdvertiserLinkProposalRequest],
|
|
1489
|
+
Union[
|
|
1490
|
+
resources.DisplayVideo360AdvertiserLinkProposal,
|
|
1491
|
+
Awaitable[resources.DisplayVideo360AdvertiserLinkProposal],
|
|
1492
|
+
],
|
|
1493
|
+
]:
|
|
1494
|
+
raise NotImplementedError()
|
|
1495
|
+
|
|
1496
|
+
@property
|
|
1497
|
+
def create_custom_dimension(
|
|
1498
|
+
self,
|
|
1499
|
+
) -> Callable[
|
|
1500
|
+
[analytics_admin.CreateCustomDimensionRequest],
|
|
1501
|
+
Union[resources.CustomDimension, Awaitable[resources.CustomDimension]],
|
|
1502
|
+
]:
|
|
1503
|
+
raise NotImplementedError()
|
|
1504
|
+
|
|
1505
|
+
@property
|
|
1506
|
+
def update_custom_dimension(
|
|
1507
|
+
self,
|
|
1508
|
+
) -> Callable[
|
|
1509
|
+
[analytics_admin.UpdateCustomDimensionRequest],
|
|
1510
|
+
Union[resources.CustomDimension, Awaitable[resources.CustomDimension]],
|
|
1511
|
+
]:
|
|
1512
|
+
raise NotImplementedError()
|
|
1513
|
+
|
|
1514
|
+
@property
|
|
1515
|
+
def list_custom_dimensions(
|
|
1516
|
+
self,
|
|
1517
|
+
) -> Callable[
|
|
1518
|
+
[analytics_admin.ListCustomDimensionsRequest],
|
|
1519
|
+
Union[
|
|
1520
|
+
analytics_admin.ListCustomDimensionsResponse,
|
|
1521
|
+
Awaitable[analytics_admin.ListCustomDimensionsResponse],
|
|
1522
|
+
],
|
|
1523
|
+
]:
|
|
1524
|
+
raise NotImplementedError()
|
|
1525
|
+
|
|
1526
|
+
@property
|
|
1527
|
+
def archive_custom_dimension(
|
|
1528
|
+
self,
|
|
1529
|
+
) -> Callable[
|
|
1530
|
+
[analytics_admin.ArchiveCustomDimensionRequest],
|
|
1531
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1532
|
+
]:
|
|
1533
|
+
raise NotImplementedError()
|
|
1534
|
+
|
|
1535
|
+
@property
|
|
1536
|
+
def get_custom_dimension(
|
|
1537
|
+
self,
|
|
1538
|
+
) -> Callable[
|
|
1539
|
+
[analytics_admin.GetCustomDimensionRequest],
|
|
1540
|
+
Union[resources.CustomDimension, Awaitable[resources.CustomDimension]],
|
|
1541
|
+
]:
|
|
1542
|
+
raise NotImplementedError()
|
|
1543
|
+
|
|
1544
|
+
@property
|
|
1545
|
+
def create_custom_metric(
|
|
1546
|
+
self,
|
|
1547
|
+
) -> Callable[
|
|
1548
|
+
[analytics_admin.CreateCustomMetricRequest],
|
|
1549
|
+
Union[resources.CustomMetric, Awaitable[resources.CustomMetric]],
|
|
1550
|
+
]:
|
|
1551
|
+
raise NotImplementedError()
|
|
1552
|
+
|
|
1553
|
+
@property
|
|
1554
|
+
def update_custom_metric(
|
|
1555
|
+
self,
|
|
1556
|
+
) -> Callable[
|
|
1557
|
+
[analytics_admin.UpdateCustomMetricRequest],
|
|
1558
|
+
Union[resources.CustomMetric, Awaitable[resources.CustomMetric]],
|
|
1559
|
+
]:
|
|
1560
|
+
raise NotImplementedError()
|
|
1561
|
+
|
|
1562
|
+
@property
|
|
1563
|
+
def list_custom_metrics(
|
|
1564
|
+
self,
|
|
1565
|
+
) -> Callable[
|
|
1566
|
+
[analytics_admin.ListCustomMetricsRequest],
|
|
1567
|
+
Union[
|
|
1568
|
+
analytics_admin.ListCustomMetricsResponse,
|
|
1569
|
+
Awaitable[analytics_admin.ListCustomMetricsResponse],
|
|
1570
|
+
],
|
|
1571
|
+
]:
|
|
1572
|
+
raise NotImplementedError()
|
|
1573
|
+
|
|
1574
|
+
@property
|
|
1575
|
+
def archive_custom_metric(
|
|
1576
|
+
self,
|
|
1577
|
+
) -> Callable[
|
|
1578
|
+
[analytics_admin.ArchiveCustomMetricRequest],
|
|
1579
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1580
|
+
]:
|
|
1581
|
+
raise NotImplementedError()
|
|
1582
|
+
|
|
1583
|
+
@property
|
|
1584
|
+
def get_custom_metric(
|
|
1585
|
+
self,
|
|
1586
|
+
) -> Callable[
|
|
1587
|
+
[analytics_admin.GetCustomMetricRequest],
|
|
1588
|
+
Union[resources.CustomMetric, Awaitable[resources.CustomMetric]],
|
|
1589
|
+
]:
|
|
1590
|
+
raise NotImplementedError()
|
|
1591
|
+
|
|
1592
|
+
@property
|
|
1593
|
+
def get_data_retention_settings(
|
|
1594
|
+
self,
|
|
1595
|
+
) -> Callable[
|
|
1596
|
+
[analytics_admin.GetDataRetentionSettingsRequest],
|
|
1597
|
+
Union[
|
|
1598
|
+
resources.DataRetentionSettings, Awaitable[resources.DataRetentionSettings]
|
|
1599
|
+
],
|
|
1600
|
+
]:
|
|
1601
|
+
raise NotImplementedError()
|
|
1602
|
+
|
|
1603
|
+
@property
|
|
1604
|
+
def update_data_retention_settings(
|
|
1605
|
+
self,
|
|
1606
|
+
) -> Callable[
|
|
1607
|
+
[analytics_admin.UpdateDataRetentionSettingsRequest],
|
|
1608
|
+
Union[
|
|
1609
|
+
resources.DataRetentionSettings, Awaitable[resources.DataRetentionSettings]
|
|
1610
|
+
],
|
|
1611
|
+
]:
|
|
1612
|
+
raise NotImplementedError()
|
|
1613
|
+
|
|
1614
|
+
@property
|
|
1615
|
+
def create_data_stream(
|
|
1616
|
+
self,
|
|
1617
|
+
) -> Callable[
|
|
1618
|
+
[analytics_admin.CreateDataStreamRequest],
|
|
1619
|
+
Union[resources.DataStream, Awaitable[resources.DataStream]],
|
|
1620
|
+
]:
|
|
1621
|
+
raise NotImplementedError()
|
|
1622
|
+
|
|
1623
|
+
@property
|
|
1624
|
+
def delete_data_stream(
|
|
1625
|
+
self,
|
|
1626
|
+
) -> Callable[
|
|
1627
|
+
[analytics_admin.DeleteDataStreamRequest],
|
|
1628
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1629
|
+
]:
|
|
1630
|
+
raise NotImplementedError()
|
|
1631
|
+
|
|
1632
|
+
@property
|
|
1633
|
+
def update_data_stream(
|
|
1634
|
+
self,
|
|
1635
|
+
) -> Callable[
|
|
1636
|
+
[analytics_admin.UpdateDataStreamRequest],
|
|
1637
|
+
Union[resources.DataStream, Awaitable[resources.DataStream]],
|
|
1638
|
+
]:
|
|
1639
|
+
raise NotImplementedError()
|
|
1640
|
+
|
|
1641
|
+
@property
|
|
1642
|
+
def list_data_streams(
|
|
1643
|
+
self,
|
|
1644
|
+
) -> Callable[
|
|
1645
|
+
[analytics_admin.ListDataStreamsRequest],
|
|
1646
|
+
Union[
|
|
1647
|
+
analytics_admin.ListDataStreamsResponse,
|
|
1648
|
+
Awaitable[analytics_admin.ListDataStreamsResponse],
|
|
1649
|
+
],
|
|
1650
|
+
]:
|
|
1651
|
+
raise NotImplementedError()
|
|
1652
|
+
|
|
1653
|
+
@property
|
|
1654
|
+
def get_data_stream(
|
|
1655
|
+
self,
|
|
1656
|
+
) -> Callable[
|
|
1657
|
+
[analytics_admin.GetDataStreamRequest],
|
|
1658
|
+
Union[resources.DataStream, Awaitable[resources.DataStream]],
|
|
1659
|
+
]:
|
|
1660
|
+
raise NotImplementedError()
|
|
1661
|
+
|
|
1662
|
+
@property
|
|
1663
|
+
def get_audience(
|
|
1664
|
+
self,
|
|
1665
|
+
) -> Callable[
|
|
1666
|
+
[analytics_admin.GetAudienceRequest],
|
|
1667
|
+
Union[audience.Audience, Awaitable[audience.Audience]],
|
|
1668
|
+
]:
|
|
1669
|
+
raise NotImplementedError()
|
|
1670
|
+
|
|
1671
|
+
@property
|
|
1672
|
+
def list_audiences(
|
|
1673
|
+
self,
|
|
1674
|
+
) -> Callable[
|
|
1675
|
+
[analytics_admin.ListAudiencesRequest],
|
|
1676
|
+
Union[
|
|
1677
|
+
analytics_admin.ListAudiencesResponse,
|
|
1678
|
+
Awaitable[analytics_admin.ListAudiencesResponse],
|
|
1679
|
+
],
|
|
1680
|
+
]:
|
|
1681
|
+
raise NotImplementedError()
|
|
1682
|
+
|
|
1683
|
+
@property
|
|
1684
|
+
def create_audience(
|
|
1685
|
+
self,
|
|
1686
|
+
) -> Callable[
|
|
1687
|
+
[analytics_admin.CreateAudienceRequest],
|
|
1688
|
+
Union[gaa_audience.Audience, Awaitable[gaa_audience.Audience]],
|
|
1689
|
+
]:
|
|
1690
|
+
raise NotImplementedError()
|
|
1691
|
+
|
|
1692
|
+
@property
|
|
1693
|
+
def update_audience(
|
|
1694
|
+
self,
|
|
1695
|
+
) -> Callable[
|
|
1696
|
+
[analytics_admin.UpdateAudienceRequest],
|
|
1697
|
+
Union[gaa_audience.Audience, Awaitable[gaa_audience.Audience]],
|
|
1698
|
+
]:
|
|
1699
|
+
raise NotImplementedError()
|
|
1700
|
+
|
|
1701
|
+
@property
|
|
1702
|
+
def archive_audience(
|
|
1703
|
+
self,
|
|
1704
|
+
) -> Callable[
|
|
1705
|
+
[analytics_admin.ArchiveAudienceRequest],
|
|
1706
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1707
|
+
]:
|
|
1708
|
+
raise NotImplementedError()
|
|
1709
|
+
|
|
1710
|
+
@property
|
|
1711
|
+
def get_search_ads360_link(
|
|
1712
|
+
self,
|
|
1713
|
+
) -> Callable[
|
|
1714
|
+
[analytics_admin.GetSearchAds360LinkRequest],
|
|
1715
|
+
Union[resources.SearchAds360Link, Awaitable[resources.SearchAds360Link]],
|
|
1716
|
+
]:
|
|
1717
|
+
raise NotImplementedError()
|
|
1718
|
+
|
|
1719
|
+
@property
|
|
1720
|
+
def list_search_ads360_links(
|
|
1721
|
+
self,
|
|
1722
|
+
) -> Callable[
|
|
1723
|
+
[analytics_admin.ListSearchAds360LinksRequest],
|
|
1724
|
+
Union[
|
|
1725
|
+
analytics_admin.ListSearchAds360LinksResponse,
|
|
1726
|
+
Awaitable[analytics_admin.ListSearchAds360LinksResponse],
|
|
1727
|
+
],
|
|
1728
|
+
]:
|
|
1729
|
+
raise NotImplementedError()
|
|
1730
|
+
|
|
1731
|
+
@property
|
|
1732
|
+
def create_search_ads360_link(
|
|
1733
|
+
self,
|
|
1734
|
+
) -> Callable[
|
|
1735
|
+
[analytics_admin.CreateSearchAds360LinkRequest],
|
|
1736
|
+
Union[resources.SearchAds360Link, Awaitable[resources.SearchAds360Link]],
|
|
1737
|
+
]:
|
|
1738
|
+
raise NotImplementedError()
|
|
1739
|
+
|
|
1740
|
+
@property
|
|
1741
|
+
def delete_search_ads360_link(
|
|
1742
|
+
self,
|
|
1743
|
+
) -> Callable[
|
|
1744
|
+
[analytics_admin.DeleteSearchAds360LinkRequest],
|
|
1745
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1746
|
+
]:
|
|
1747
|
+
raise NotImplementedError()
|
|
1748
|
+
|
|
1749
|
+
@property
|
|
1750
|
+
def update_search_ads360_link(
|
|
1751
|
+
self,
|
|
1752
|
+
) -> Callable[
|
|
1753
|
+
[analytics_admin.UpdateSearchAds360LinkRequest],
|
|
1754
|
+
Union[resources.SearchAds360Link, Awaitable[resources.SearchAds360Link]],
|
|
1755
|
+
]:
|
|
1756
|
+
raise NotImplementedError()
|
|
1757
|
+
|
|
1758
|
+
@property
|
|
1759
|
+
def get_attribution_settings(
|
|
1760
|
+
self,
|
|
1761
|
+
) -> Callable[
|
|
1762
|
+
[analytics_admin.GetAttributionSettingsRequest],
|
|
1763
|
+
Union[resources.AttributionSettings, Awaitable[resources.AttributionSettings]],
|
|
1764
|
+
]:
|
|
1765
|
+
raise NotImplementedError()
|
|
1766
|
+
|
|
1767
|
+
@property
|
|
1768
|
+
def update_attribution_settings(
|
|
1769
|
+
self,
|
|
1770
|
+
) -> Callable[
|
|
1771
|
+
[analytics_admin.UpdateAttributionSettingsRequest],
|
|
1772
|
+
Union[resources.AttributionSettings, Awaitable[resources.AttributionSettings]],
|
|
1773
|
+
]:
|
|
1774
|
+
raise NotImplementedError()
|
|
1775
|
+
|
|
1776
|
+
@property
|
|
1777
|
+
def run_access_report(
|
|
1778
|
+
self,
|
|
1779
|
+
) -> Callable[
|
|
1780
|
+
[analytics_admin.RunAccessReportRequest],
|
|
1781
|
+
Union[
|
|
1782
|
+
analytics_admin.RunAccessReportResponse,
|
|
1783
|
+
Awaitable[analytics_admin.RunAccessReportResponse],
|
|
1784
|
+
],
|
|
1785
|
+
]:
|
|
1786
|
+
raise NotImplementedError()
|
|
1787
|
+
|
|
1788
|
+
@property
|
|
1789
|
+
def create_access_binding(
|
|
1790
|
+
self,
|
|
1791
|
+
) -> Callable[
|
|
1792
|
+
[analytics_admin.CreateAccessBindingRequest],
|
|
1793
|
+
Union[resources.AccessBinding, Awaitable[resources.AccessBinding]],
|
|
1794
|
+
]:
|
|
1795
|
+
raise NotImplementedError()
|
|
1796
|
+
|
|
1797
|
+
@property
|
|
1798
|
+
def get_access_binding(
|
|
1799
|
+
self,
|
|
1800
|
+
) -> Callable[
|
|
1801
|
+
[analytics_admin.GetAccessBindingRequest],
|
|
1802
|
+
Union[resources.AccessBinding, Awaitable[resources.AccessBinding]],
|
|
1803
|
+
]:
|
|
1804
|
+
raise NotImplementedError()
|
|
1805
|
+
|
|
1806
|
+
@property
|
|
1807
|
+
def update_access_binding(
|
|
1808
|
+
self,
|
|
1809
|
+
) -> Callable[
|
|
1810
|
+
[analytics_admin.UpdateAccessBindingRequest],
|
|
1811
|
+
Union[resources.AccessBinding, Awaitable[resources.AccessBinding]],
|
|
1812
|
+
]:
|
|
1813
|
+
raise NotImplementedError()
|
|
1814
|
+
|
|
1815
|
+
@property
|
|
1816
|
+
def delete_access_binding(
|
|
1817
|
+
self,
|
|
1818
|
+
) -> Callable[
|
|
1819
|
+
[analytics_admin.DeleteAccessBindingRequest],
|
|
1820
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1821
|
+
]:
|
|
1822
|
+
raise NotImplementedError()
|
|
1823
|
+
|
|
1824
|
+
@property
|
|
1825
|
+
def list_access_bindings(
|
|
1826
|
+
self,
|
|
1827
|
+
) -> Callable[
|
|
1828
|
+
[analytics_admin.ListAccessBindingsRequest],
|
|
1829
|
+
Union[
|
|
1830
|
+
analytics_admin.ListAccessBindingsResponse,
|
|
1831
|
+
Awaitable[analytics_admin.ListAccessBindingsResponse],
|
|
1832
|
+
],
|
|
1833
|
+
]:
|
|
1834
|
+
raise NotImplementedError()
|
|
1835
|
+
|
|
1836
|
+
@property
|
|
1837
|
+
def batch_create_access_bindings(
|
|
1838
|
+
self,
|
|
1839
|
+
) -> Callable[
|
|
1840
|
+
[analytics_admin.BatchCreateAccessBindingsRequest],
|
|
1841
|
+
Union[
|
|
1842
|
+
analytics_admin.BatchCreateAccessBindingsResponse,
|
|
1843
|
+
Awaitable[analytics_admin.BatchCreateAccessBindingsResponse],
|
|
1844
|
+
],
|
|
1845
|
+
]:
|
|
1846
|
+
raise NotImplementedError()
|
|
1847
|
+
|
|
1848
|
+
@property
|
|
1849
|
+
def batch_get_access_bindings(
|
|
1850
|
+
self,
|
|
1851
|
+
) -> Callable[
|
|
1852
|
+
[analytics_admin.BatchGetAccessBindingsRequest],
|
|
1853
|
+
Union[
|
|
1854
|
+
analytics_admin.BatchGetAccessBindingsResponse,
|
|
1855
|
+
Awaitable[analytics_admin.BatchGetAccessBindingsResponse],
|
|
1856
|
+
],
|
|
1857
|
+
]:
|
|
1858
|
+
raise NotImplementedError()
|
|
1859
|
+
|
|
1860
|
+
@property
|
|
1861
|
+
def batch_update_access_bindings(
|
|
1862
|
+
self,
|
|
1863
|
+
) -> Callable[
|
|
1864
|
+
[analytics_admin.BatchUpdateAccessBindingsRequest],
|
|
1865
|
+
Union[
|
|
1866
|
+
analytics_admin.BatchUpdateAccessBindingsResponse,
|
|
1867
|
+
Awaitable[analytics_admin.BatchUpdateAccessBindingsResponse],
|
|
1868
|
+
],
|
|
1869
|
+
]:
|
|
1870
|
+
raise NotImplementedError()
|
|
1871
|
+
|
|
1872
|
+
@property
|
|
1873
|
+
def batch_delete_access_bindings(
|
|
1874
|
+
self,
|
|
1875
|
+
) -> Callable[
|
|
1876
|
+
[analytics_admin.BatchDeleteAccessBindingsRequest],
|
|
1877
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1878
|
+
]:
|
|
1879
|
+
raise NotImplementedError()
|
|
1880
|
+
|
|
1881
|
+
@property
|
|
1882
|
+
def get_expanded_data_set(
|
|
1883
|
+
self,
|
|
1884
|
+
) -> Callable[
|
|
1885
|
+
[analytics_admin.GetExpandedDataSetRequest],
|
|
1886
|
+
Union[
|
|
1887
|
+
expanded_data_set.ExpandedDataSet,
|
|
1888
|
+
Awaitable[expanded_data_set.ExpandedDataSet],
|
|
1889
|
+
],
|
|
1890
|
+
]:
|
|
1891
|
+
raise NotImplementedError()
|
|
1892
|
+
|
|
1893
|
+
@property
|
|
1894
|
+
def list_expanded_data_sets(
|
|
1895
|
+
self,
|
|
1896
|
+
) -> Callable[
|
|
1897
|
+
[analytics_admin.ListExpandedDataSetsRequest],
|
|
1898
|
+
Union[
|
|
1899
|
+
analytics_admin.ListExpandedDataSetsResponse,
|
|
1900
|
+
Awaitable[analytics_admin.ListExpandedDataSetsResponse],
|
|
1901
|
+
],
|
|
1902
|
+
]:
|
|
1903
|
+
raise NotImplementedError()
|
|
1904
|
+
|
|
1905
|
+
@property
|
|
1906
|
+
def create_expanded_data_set(
|
|
1907
|
+
self,
|
|
1908
|
+
) -> Callable[
|
|
1909
|
+
[analytics_admin.CreateExpandedDataSetRequest],
|
|
1910
|
+
Union[
|
|
1911
|
+
gaa_expanded_data_set.ExpandedDataSet,
|
|
1912
|
+
Awaitable[gaa_expanded_data_set.ExpandedDataSet],
|
|
1913
|
+
],
|
|
1914
|
+
]:
|
|
1915
|
+
raise NotImplementedError()
|
|
1916
|
+
|
|
1917
|
+
@property
|
|
1918
|
+
def update_expanded_data_set(
|
|
1919
|
+
self,
|
|
1920
|
+
) -> Callable[
|
|
1921
|
+
[analytics_admin.UpdateExpandedDataSetRequest],
|
|
1922
|
+
Union[
|
|
1923
|
+
gaa_expanded_data_set.ExpandedDataSet,
|
|
1924
|
+
Awaitable[gaa_expanded_data_set.ExpandedDataSet],
|
|
1925
|
+
],
|
|
1926
|
+
]:
|
|
1927
|
+
raise NotImplementedError()
|
|
1928
|
+
|
|
1929
|
+
@property
|
|
1930
|
+
def delete_expanded_data_set(
|
|
1931
|
+
self,
|
|
1932
|
+
) -> Callable[
|
|
1933
|
+
[analytics_admin.DeleteExpandedDataSetRequest],
|
|
1934
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1935
|
+
]:
|
|
1936
|
+
raise NotImplementedError()
|
|
1937
|
+
|
|
1938
|
+
@property
|
|
1939
|
+
def get_channel_group(
|
|
1940
|
+
self,
|
|
1941
|
+
) -> Callable[
|
|
1942
|
+
[analytics_admin.GetChannelGroupRequest],
|
|
1943
|
+
Union[channel_group.ChannelGroup, Awaitable[channel_group.ChannelGroup]],
|
|
1944
|
+
]:
|
|
1945
|
+
raise NotImplementedError()
|
|
1946
|
+
|
|
1947
|
+
@property
|
|
1948
|
+
def list_channel_groups(
|
|
1949
|
+
self,
|
|
1950
|
+
) -> Callable[
|
|
1951
|
+
[analytics_admin.ListChannelGroupsRequest],
|
|
1952
|
+
Union[
|
|
1953
|
+
analytics_admin.ListChannelGroupsResponse,
|
|
1954
|
+
Awaitable[analytics_admin.ListChannelGroupsResponse],
|
|
1955
|
+
],
|
|
1956
|
+
]:
|
|
1957
|
+
raise NotImplementedError()
|
|
1958
|
+
|
|
1959
|
+
@property
|
|
1960
|
+
def create_channel_group(
|
|
1961
|
+
self,
|
|
1962
|
+
) -> Callable[
|
|
1963
|
+
[analytics_admin.CreateChannelGroupRequest],
|
|
1964
|
+
Union[
|
|
1965
|
+
gaa_channel_group.ChannelGroup, Awaitable[gaa_channel_group.ChannelGroup]
|
|
1966
|
+
],
|
|
1967
|
+
]:
|
|
1968
|
+
raise NotImplementedError()
|
|
1969
|
+
|
|
1970
|
+
@property
|
|
1971
|
+
def update_channel_group(
|
|
1972
|
+
self,
|
|
1973
|
+
) -> Callable[
|
|
1974
|
+
[analytics_admin.UpdateChannelGroupRequest],
|
|
1975
|
+
Union[
|
|
1976
|
+
gaa_channel_group.ChannelGroup, Awaitable[gaa_channel_group.ChannelGroup]
|
|
1977
|
+
],
|
|
1978
|
+
]:
|
|
1979
|
+
raise NotImplementedError()
|
|
1980
|
+
|
|
1981
|
+
@property
|
|
1982
|
+
def delete_channel_group(
|
|
1983
|
+
self,
|
|
1984
|
+
) -> Callable[
|
|
1985
|
+
[analytics_admin.DeleteChannelGroupRequest],
|
|
1986
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
1987
|
+
]:
|
|
1988
|
+
raise NotImplementedError()
|
|
1989
|
+
|
|
1990
|
+
@property
|
|
1991
|
+
def set_automated_ga4_configuration_opt_out(
|
|
1992
|
+
self,
|
|
1993
|
+
) -> Callable[
|
|
1994
|
+
[analytics_admin.SetAutomatedGa4ConfigurationOptOutRequest],
|
|
1995
|
+
Union[
|
|
1996
|
+
analytics_admin.SetAutomatedGa4ConfigurationOptOutResponse,
|
|
1997
|
+
Awaitable[analytics_admin.SetAutomatedGa4ConfigurationOptOutResponse],
|
|
1998
|
+
],
|
|
1999
|
+
]:
|
|
2000
|
+
raise NotImplementedError()
|
|
2001
|
+
|
|
2002
|
+
@property
|
|
2003
|
+
def fetch_automated_ga4_configuration_opt_out(
|
|
2004
|
+
self,
|
|
2005
|
+
) -> Callable[
|
|
2006
|
+
[analytics_admin.FetchAutomatedGa4ConfigurationOptOutRequest],
|
|
2007
|
+
Union[
|
|
2008
|
+
analytics_admin.FetchAutomatedGa4ConfigurationOptOutResponse,
|
|
2009
|
+
Awaitable[analytics_admin.FetchAutomatedGa4ConfigurationOptOutResponse],
|
|
2010
|
+
],
|
|
2011
|
+
]:
|
|
2012
|
+
raise NotImplementedError()
|
|
2013
|
+
|
|
2014
|
+
@property
|
|
2015
|
+
def create_big_query_link(
|
|
2016
|
+
self,
|
|
2017
|
+
) -> Callable[
|
|
2018
|
+
[analytics_admin.CreateBigQueryLinkRequest],
|
|
2019
|
+
Union[resources.BigQueryLink, Awaitable[resources.BigQueryLink]],
|
|
2020
|
+
]:
|
|
2021
|
+
raise NotImplementedError()
|
|
2022
|
+
|
|
2023
|
+
@property
|
|
2024
|
+
def get_big_query_link(
|
|
2025
|
+
self,
|
|
2026
|
+
) -> Callable[
|
|
2027
|
+
[analytics_admin.GetBigQueryLinkRequest],
|
|
2028
|
+
Union[resources.BigQueryLink, Awaitable[resources.BigQueryLink]],
|
|
2029
|
+
]:
|
|
2030
|
+
raise NotImplementedError()
|
|
2031
|
+
|
|
2032
|
+
@property
|
|
2033
|
+
def list_big_query_links(
|
|
2034
|
+
self,
|
|
2035
|
+
) -> Callable[
|
|
2036
|
+
[analytics_admin.ListBigQueryLinksRequest],
|
|
2037
|
+
Union[
|
|
2038
|
+
analytics_admin.ListBigQueryLinksResponse,
|
|
2039
|
+
Awaitable[analytics_admin.ListBigQueryLinksResponse],
|
|
2040
|
+
],
|
|
2041
|
+
]:
|
|
2042
|
+
raise NotImplementedError()
|
|
2043
|
+
|
|
2044
|
+
@property
|
|
2045
|
+
def delete_big_query_link(
|
|
2046
|
+
self,
|
|
2047
|
+
) -> Callable[
|
|
2048
|
+
[analytics_admin.DeleteBigQueryLinkRequest],
|
|
2049
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
2050
|
+
]:
|
|
2051
|
+
raise NotImplementedError()
|
|
2052
|
+
|
|
2053
|
+
@property
|
|
2054
|
+
def update_big_query_link(
|
|
2055
|
+
self,
|
|
2056
|
+
) -> Callable[
|
|
2057
|
+
[analytics_admin.UpdateBigQueryLinkRequest],
|
|
2058
|
+
Union[resources.BigQueryLink, Awaitable[resources.BigQueryLink]],
|
|
2059
|
+
]:
|
|
2060
|
+
raise NotImplementedError()
|
|
2061
|
+
|
|
2062
|
+
@property
|
|
2063
|
+
def get_enhanced_measurement_settings(
|
|
2064
|
+
self,
|
|
2065
|
+
) -> Callable[
|
|
2066
|
+
[analytics_admin.GetEnhancedMeasurementSettingsRequest],
|
|
2067
|
+
Union[
|
|
2068
|
+
resources.EnhancedMeasurementSettings,
|
|
2069
|
+
Awaitable[resources.EnhancedMeasurementSettings],
|
|
2070
|
+
],
|
|
2071
|
+
]:
|
|
2072
|
+
raise NotImplementedError()
|
|
2073
|
+
|
|
2074
|
+
@property
|
|
2075
|
+
def update_enhanced_measurement_settings(
|
|
2076
|
+
self,
|
|
2077
|
+
) -> Callable[
|
|
2078
|
+
[analytics_admin.UpdateEnhancedMeasurementSettingsRequest],
|
|
2079
|
+
Union[
|
|
2080
|
+
resources.EnhancedMeasurementSettings,
|
|
2081
|
+
Awaitable[resources.EnhancedMeasurementSettings],
|
|
2082
|
+
],
|
|
2083
|
+
]:
|
|
2084
|
+
raise NotImplementedError()
|
|
2085
|
+
|
|
2086
|
+
@property
|
|
2087
|
+
def create_connected_site_tag(
|
|
2088
|
+
self,
|
|
2089
|
+
) -> Callable[
|
|
2090
|
+
[analytics_admin.CreateConnectedSiteTagRequest],
|
|
2091
|
+
Union[
|
|
2092
|
+
analytics_admin.CreateConnectedSiteTagResponse,
|
|
2093
|
+
Awaitable[analytics_admin.CreateConnectedSiteTagResponse],
|
|
2094
|
+
],
|
|
2095
|
+
]:
|
|
2096
|
+
raise NotImplementedError()
|
|
2097
|
+
|
|
2098
|
+
@property
|
|
2099
|
+
def delete_connected_site_tag(
|
|
2100
|
+
self,
|
|
2101
|
+
) -> Callable[
|
|
2102
|
+
[analytics_admin.DeleteConnectedSiteTagRequest],
|
|
2103
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
2104
|
+
]:
|
|
2105
|
+
raise NotImplementedError()
|
|
2106
|
+
|
|
2107
|
+
@property
|
|
2108
|
+
def list_connected_site_tags(
|
|
2109
|
+
self,
|
|
2110
|
+
) -> Callable[
|
|
2111
|
+
[analytics_admin.ListConnectedSiteTagsRequest],
|
|
2112
|
+
Union[
|
|
2113
|
+
analytics_admin.ListConnectedSiteTagsResponse,
|
|
2114
|
+
Awaitable[analytics_admin.ListConnectedSiteTagsResponse],
|
|
2115
|
+
],
|
|
2116
|
+
]:
|
|
2117
|
+
raise NotImplementedError()
|
|
2118
|
+
|
|
2119
|
+
@property
|
|
2120
|
+
def fetch_connected_ga4_property(
|
|
2121
|
+
self,
|
|
2122
|
+
) -> Callable[
|
|
2123
|
+
[analytics_admin.FetchConnectedGa4PropertyRequest],
|
|
2124
|
+
Union[
|
|
2125
|
+
analytics_admin.FetchConnectedGa4PropertyResponse,
|
|
2126
|
+
Awaitable[analytics_admin.FetchConnectedGa4PropertyResponse],
|
|
2127
|
+
],
|
|
2128
|
+
]:
|
|
2129
|
+
raise NotImplementedError()
|
|
2130
|
+
|
|
2131
|
+
@property
|
|
2132
|
+
def get_ad_sense_link(
|
|
2133
|
+
self,
|
|
2134
|
+
) -> Callable[
|
|
2135
|
+
[analytics_admin.GetAdSenseLinkRequest],
|
|
2136
|
+
Union[resources.AdSenseLink, Awaitable[resources.AdSenseLink]],
|
|
2137
|
+
]:
|
|
2138
|
+
raise NotImplementedError()
|
|
2139
|
+
|
|
2140
|
+
@property
|
|
2141
|
+
def create_ad_sense_link(
|
|
2142
|
+
self,
|
|
2143
|
+
) -> Callable[
|
|
2144
|
+
[analytics_admin.CreateAdSenseLinkRequest],
|
|
2145
|
+
Union[resources.AdSenseLink, Awaitable[resources.AdSenseLink]],
|
|
2146
|
+
]:
|
|
2147
|
+
raise NotImplementedError()
|
|
2148
|
+
|
|
2149
|
+
@property
|
|
2150
|
+
def delete_ad_sense_link(
|
|
2151
|
+
self,
|
|
2152
|
+
) -> Callable[
|
|
2153
|
+
[analytics_admin.DeleteAdSenseLinkRequest],
|
|
2154
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
2155
|
+
]:
|
|
2156
|
+
raise NotImplementedError()
|
|
2157
|
+
|
|
2158
|
+
@property
|
|
2159
|
+
def list_ad_sense_links(
|
|
2160
|
+
self,
|
|
2161
|
+
) -> Callable[
|
|
2162
|
+
[analytics_admin.ListAdSenseLinksRequest],
|
|
2163
|
+
Union[
|
|
2164
|
+
analytics_admin.ListAdSenseLinksResponse,
|
|
2165
|
+
Awaitable[analytics_admin.ListAdSenseLinksResponse],
|
|
2166
|
+
],
|
|
2167
|
+
]:
|
|
2168
|
+
raise NotImplementedError()
|
|
2169
|
+
|
|
2170
|
+
@property
|
|
2171
|
+
def get_event_create_rule(
|
|
2172
|
+
self,
|
|
2173
|
+
) -> Callable[
|
|
2174
|
+
[analytics_admin.GetEventCreateRuleRequest],
|
|
2175
|
+
Union[
|
|
2176
|
+
event_create_and_edit.EventCreateRule,
|
|
2177
|
+
Awaitable[event_create_and_edit.EventCreateRule],
|
|
2178
|
+
],
|
|
2179
|
+
]:
|
|
2180
|
+
raise NotImplementedError()
|
|
2181
|
+
|
|
2182
|
+
@property
|
|
2183
|
+
def list_event_create_rules(
|
|
2184
|
+
self,
|
|
2185
|
+
) -> Callable[
|
|
2186
|
+
[analytics_admin.ListEventCreateRulesRequest],
|
|
2187
|
+
Union[
|
|
2188
|
+
analytics_admin.ListEventCreateRulesResponse,
|
|
2189
|
+
Awaitable[analytics_admin.ListEventCreateRulesResponse],
|
|
2190
|
+
],
|
|
2191
|
+
]:
|
|
2192
|
+
raise NotImplementedError()
|
|
2193
|
+
|
|
2194
|
+
@property
|
|
2195
|
+
def create_event_create_rule(
|
|
2196
|
+
self,
|
|
2197
|
+
) -> Callable[
|
|
2198
|
+
[analytics_admin.CreateEventCreateRuleRequest],
|
|
2199
|
+
Union[
|
|
2200
|
+
event_create_and_edit.EventCreateRule,
|
|
2201
|
+
Awaitable[event_create_and_edit.EventCreateRule],
|
|
2202
|
+
],
|
|
2203
|
+
]:
|
|
2204
|
+
raise NotImplementedError()
|
|
2205
|
+
|
|
2206
|
+
@property
|
|
2207
|
+
def update_event_create_rule(
|
|
2208
|
+
self,
|
|
2209
|
+
) -> Callable[
|
|
2210
|
+
[analytics_admin.UpdateEventCreateRuleRequest],
|
|
2211
|
+
Union[
|
|
2212
|
+
event_create_and_edit.EventCreateRule,
|
|
2213
|
+
Awaitable[event_create_and_edit.EventCreateRule],
|
|
2214
|
+
],
|
|
2215
|
+
]:
|
|
2216
|
+
raise NotImplementedError()
|
|
2217
|
+
|
|
2218
|
+
@property
|
|
2219
|
+
def delete_event_create_rule(
|
|
2220
|
+
self,
|
|
2221
|
+
) -> Callable[
|
|
2222
|
+
[analytics_admin.DeleteEventCreateRuleRequest],
|
|
2223
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
2224
|
+
]:
|
|
2225
|
+
raise NotImplementedError()
|
|
2226
|
+
|
|
2227
|
+
@property
|
|
2228
|
+
def get_event_edit_rule(
|
|
2229
|
+
self,
|
|
2230
|
+
) -> Callable[
|
|
2231
|
+
[analytics_admin.GetEventEditRuleRequest],
|
|
2232
|
+
Union[
|
|
2233
|
+
event_create_and_edit.EventEditRule,
|
|
2234
|
+
Awaitable[event_create_and_edit.EventEditRule],
|
|
2235
|
+
],
|
|
2236
|
+
]:
|
|
2237
|
+
raise NotImplementedError()
|
|
2238
|
+
|
|
2239
|
+
@property
|
|
2240
|
+
def list_event_edit_rules(
|
|
2241
|
+
self,
|
|
2242
|
+
) -> Callable[
|
|
2243
|
+
[analytics_admin.ListEventEditRulesRequest],
|
|
2244
|
+
Union[
|
|
2245
|
+
analytics_admin.ListEventEditRulesResponse,
|
|
2246
|
+
Awaitable[analytics_admin.ListEventEditRulesResponse],
|
|
2247
|
+
],
|
|
2248
|
+
]:
|
|
2249
|
+
raise NotImplementedError()
|
|
2250
|
+
|
|
2251
|
+
@property
|
|
2252
|
+
def create_event_edit_rule(
|
|
2253
|
+
self,
|
|
2254
|
+
) -> Callable[
|
|
2255
|
+
[analytics_admin.CreateEventEditRuleRequest],
|
|
2256
|
+
Union[
|
|
2257
|
+
event_create_and_edit.EventEditRule,
|
|
2258
|
+
Awaitable[event_create_and_edit.EventEditRule],
|
|
2259
|
+
],
|
|
2260
|
+
]:
|
|
2261
|
+
raise NotImplementedError()
|
|
2262
|
+
|
|
2263
|
+
@property
|
|
2264
|
+
def update_event_edit_rule(
|
|
2265
|
+
self,
|
|
2266
|
+
) -> Callable[
|
|
2267
|
+
[analytics_admin.UpdateEventEditRuleRequest],
|
|
2268
|
+
Union[
|
|
2269
|
+
event_create_and_edit.EventEditRule,
|
|
2270
|
+
Awaitable[event_create_and_edit.EventEditRule],
|
|
2271
|
+
],
|
|
2272
|
+
]:
|
|
2273
|
+
raise NotImplementedError()
|
|
2274
|
+
|
|
2275
|
+
@property
|
|
2276
|
+
def delete_event_edit_rule(
|
|
2277
|
+
self,
|
|
2278
|
+
) -> Callable[
|
|
2279
|
+
[analytics_admin.DeleteEventEditRuleRequest],
|
|
2280
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
2281
|
+
]:
|
|
2282
|
+
raise NotImplementedError()
|
|
2283
|
+
|
|
2284
|
+
@property
|
|
2285
|
+
def reorder_event_edit_rules(
|
|
2286
|
+
self,
|
|
2287
|
+
) -> Callable[
|
|
2288
|
+
[analytics_admin.ReorderEventEditRulesRequest],
|
|
2289
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
2290
|
+
]:
|
|
2291
|
+
raise NotImplementedError()
|
|
2292
|
+
|
|
2293
|
+
@property
|
|
2294
|
+
def update_data_redaction_settings(
|
|
2295
|
+
self,
|
|
2296
|
+
) -> Callable[
|
|
2297
|
+
[analytics_admin.UpdateDataRedactionSettingsRequest],
|
|
2298
|
+
Union[
|
|
2299
|
+
resources.DataRedactionSettings, Awaitable[resources.DataRedactionSettings]
|
|
2300
|
+
],
|
|
2301
|
+
]:
|
|
2302
|
+
raise NotImplementedError()
|
|
2303
|
+
|
|
2304
|
+
@property
|
|
2305
|
+
def get_data_redaction_settings(
|
|
2306
|
+
self,
|
|
2307
|
+
) -> Callable[
|
|
2308
|
+
[analytics_admin.GetDataRedactionSettingsRequest],
|
|
2309
|
+
Union[
|
|
2310
|
+
resources.DataRedactionSettings, Awaitable[resources.DataRedactionSettings]
|
|
2311
|
+
],
|
|
2312
|
+
]:
|
|
2313
|
+
raise NotImplementedError()
|
|
2314
|
+
|
|
2315
|
+
@property
|
|
2316
|
+
def get_calculated_metric(
|
|
2317
|
+
self,
|
|
2318
|
+
) -> Callable[
|
|
2319
|
+
[analytics_admin.GetCalculatedMetricRequest],
|
|
2320
|
+
Union[resources.CalculatedMetric, Awaitable[resources.CalculatedMetric]],
|
|
2321
|
+
]:
|
|
2322
|
+
raise NotImplementedError()
|
|
2323
|
+
|
|
2324
|
+
@property
|
|
2325
|
+
def create_calculated_metric(
|
|
2326
|
+
self,
|
|
2327
|
+
) -> Callable[
|
|
2328
|
+
[analytics_admin.CreateCalculatedMetricRequest],
|
|
2329
|
+
Union[resources.CalculatedMetric, Awaitable[resources.CalculatedMetric]],
|
|
2330
|
+
]:
|
|
2331
|
+
raise NotImplementedError()
|
|
2332
|
+
|
|
2333
|
+
@property
|
|
2334
|
+
def list_calculated_metrics(
|
|
2335
|
+
self,
|
|
2336
|
+
) -> Callable[
|
|
2337
|
+
[analytics_admin.ListCalculatedMetricsRequest],
|
|
2338
|
+
Union[
|
|
2339
|
+
analytics_admin.ListCalculatedMetricsResponse,
|
|
2340
|
+
Awaitable[analytics_admin.ListCalculatedMetricsResponse],
|
|
2341
|
+
],
|
|
2342
|
+
]:
|
|
2343
|
+
raise NotImplementedError()
|
|
2344
|
+
|
|
2345
|
+
@property
|
|
2346
|
+
def update_calculated_metric(
|
|
2347
|
+
self,
|
|
2348
|
+
) -> Callable[
|
|
2349
|
+
[analytics_admin.UpdateCalculatedMetricRequest],
|
|
2350
|
+
Union[resources.CalculatedMetric, Awaitable[resources.CalculatedMetric]],
|
|
2351
|
+
]:
|
|
2352
|
+
raise NotImplementedError()
|
|
2353
|
+
|
|
2354
|
+
@property
|
|
2355
|
+
def delete_calculated_metric(
|
|
2356
|
+
self,
|
|
2357
|
+
) -> Callable[
|
|
2358
|
+
[analytics_admin.DeleteCalculatedMetricRequest],
|
|
2359
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
2360
|
+
]:
|
|
2361
|
+
raise NotImplementedError()
|
|
2362
|
+
|
|
2363
|
+
@property
|
|
2364
|
+
def create_rollup_property(
|
|
2365
|
+
self,
|
|
2366
|
+
) -> Callable[
|
|
2367
|
+
[analytics_admin.CreateRollupPropertyRequest],
|
|
2368
|
+
Union[
|
|
2369
|
+
analytics_admin.CreateRollupPropertyResponse,
|
|
2370
|
+
Awaitable[analytics_admin.CreateRollupPropertyResponse],
|
|
2371
|
+
],
|
|
2372
|
+
]:
|
|
2373
|
+
raise NotImplementedError()
|
|
2374
|
+
|
|
2375
|
+
@property
|
|
2376
|
+
def get_rollup_property_source_link(
|
|
2377
|
+
self,
|
|
2378
|
+
) -> Callable[
|
|
2379
|
+
[analytics_admin.GetRollupPropertySourceLinkRequest],
|
|
2380
|
+
Union[
|
|
2381
|
+
resources.RollupPropertySourceLink,
|
|
2382
|
+
Awaitable[resources.RollupPropertySourceLink],
|
|
2383
|
+
],
|
|
2384
|
+
]:
|
|
2385
|
+
raise NotImplementedError()
|
|
2386
|
+
|
|
2387
|
+
@property
|
|
2388
|
+
def list_rollup_property_source_links(
|
|
2389
|
+
self,
|
|
2390
|
+
) -> Callable[
|
|
2391
|
+
[analytics_admin.ListRollupPropertySourceLinksRequest],
|
|
2392
|
+
Union[
|
|
2393
|
+
analytics_admin.ListRollupPropertySourceLinksResponse,
|
|
2394
|
+
Awaitable[analytics_admin.ListRollupPropertySourceLinksResponse],
|
|
2395
|
+
],
|
|
2396
|
+
]:
|
|
2397
|
+
raise NotImplementedError()
|
|
2398
|
+
|
|
2399
|
+
@property
|
|
2400
|
+
def create_rollup_property_source_link(
|
|
2401
|
+
self,
|
|
2402
|
+
) -> Callable[
|
|
2403
|
+
[analytics_admin.CreateRollupPropertySourceLinkRequest],
|
|
2404
|
+
Union[
|
|
2405
|
+
resources.RollupPropertySourceLink,
|
|
2406
|
+
Awaitable[resources.RollupPropertySourceLink],
|
|
2407
|
+
],
|
|
2408
|
+
]:
|
|
2409
|
+
raise NotImplementedError()
|
|
2410
|
+
|
|
2411
|
+
@property
|
|
2412
|
+
def delete_rollup_property_source_link(
|
|
2413
|
+
self,
|
|
2414
|
+
) -> Callable[
|
|
2415
|
+
[analytics_admin.DeleteRollupPropertySourceLinkRequest],
|
|
2416
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
2417
|
+
]:
|
|
2418
|
+
raise NotImplementedError()
|
|
2419
|
+
|
|
2420
|
+
@property
|
|
2421
|
+
def provision_subproperty(
|
|
2422
|
+
self,
|
|
2423
|
+
) -> Callable[
|
|
2424
|
+
[analytics_admin.ProvisionSubpropertyRequest],
|
|
2425
|
+
Union[
|
|
2426
|
+
analytics_admin.ProvisionSubpropertyResponse,
|
|
2427
|
+
Awaitable[analytics_admin.ProvisionSubpropertyResponse],
|
|
2428
|
+
],
|
|
2429
|
+
]:
|
|
2430
|
+
raise NotImplementedError()
|
|
2431
|
+
|
|
2432
|
+
@property
|
|
2433
|
+
def create_subproperty_event_filter(
|
|
2434
|
+
self,
|
|
2435
|
+
) -> Callable[
|
|
2436
|
+
[analytics_admin.CreateSubpropertyEventFilterRequest],
|
|
2437
|
+
Union[
|
|
2438
|
+
gaa_subproperty_event_filter.SubpropertyEventFilter,
|
|
2439
|
+
Awaitable[gaa_subproperty_event_filter.SubpropertyEventFilter],
|
|
2440
|
+
],
|
|
2441
|
+
]:
|
|
2442
|
+
raise NotImplementedError()
|
|
2443
|
+
|
|
2444
|
+
@property
|
|
2445
|
+
def get_subproperty_event_filter(
|
|
2446
|
+
self,
|
|
2447
|
+
) -> Callable[
|
|
2448
|
+
[analytics_admin.GetSubpropertyEventFilterRequest],
|
|
2449
|
+
Union[
|
|
2450
|
+
subproperty_event_filter.SubpropertyEventFilter,
|
|
2451
|
+
Awaitable[subproperty_event_filter.SubpropertyEventFilter],
|
|
2452
|
+
],
|
|
2453
|
+
]:
|
|
2454
|
+
raise NotImplementedError()
|
|
2455
|
+
|
|
2456
|
+
@property
|
|
2457
|
+
def list_subproperty_event_filters(
|
|
2458
|
+
self,
|
|
2459
|
+
) -> Callable[
|
|
2460
|
+
[analytics_admin.ListSubpropertyEventFiltersRequest],
|
|
2461
|
+
Union[
|
|
2462
|
+
analytics_admin.ListSubpropertyEventFiltersResponse,
|
|
2463
|
+
Awaitable[analytics_admin.ListSubpropertyEventFiltersResponse],
|
|
2464
|
+
],
|
|
2465
|
+
]:
|
|
2466
|
+
raise NotImplementedError()
|
|
2467
|
+
|
|
2468
|
+
@property
|
|
2469
|
+
def update_subproperty_event_filter(
|
|
2470
|
+
self,
|
|
2471
|
+
) -> Callable[
|
|
2472
|
+
[analytics_admin.UpdateSubpropertyEventFilterRequest],
|
|
2473
|
+
Union[
|
|
2474
|
+
gaa_subproperty_event_filter.SubpropertyEventFilter,
|
|
2475
|
+
Awaitable[gaa_subproperty_event_filter.SubpropertyEventFilter],
|
|
2476
|
+
],
|
|
2477
|
+
]:
|
|
2478
|
+
raise NotImplementedError()
|
|
2479
|
+
|
|
2480
|
+
@property
|
|
2481
|
+
def delete_subproperty_event_filter(
|
|
2482
|
+
self,
|
|
2483
|
+
) -> Callable[
|
|
2484
|
+
[analytics_admin.DeleteSubpropertyEventFilterRequest],
|
|
2485
|
+
Union[empty_pb2.Empty, Awaitable[empty_pb2.Empty]],
|
|
2486
|
+
]:
|
|
2487
|
+
raise NotImplementedError()
|
|
2488
|
+
|
|
2489
|
+
@property
|
|
2490
|
+
def kind(self) -> str:
|
|
2491
|
+
raise NotImplementedError()
|
|
2492
|
+
|
|
2493
|
+
|
|
2494
|
+
__all__ = ("AnalyticsAdminServiceTransport",)
|