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,292 @@
|
|
|
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
|
+
from __future__ import annotations
|
|
17
|
+
|
|
18
|
+
from typing import MutableMapping, MutableSequence
|
|
19
|
+
|
|
20
|
+
import proto # type: ignore
|
|
21
|
+
|
|
22
|
+
__protobuf__ = proto.module(
|
|
23
|
+
package="google.analytics.admin.v1alpha",
|
|
24
|
+
manifest={
|
|
25
|
+
"SubpropertyEventFilterCondition",
|
|
26
|
+
"SubpropertyEventFilterExpression",
|
|
27
|
+
"SubpropertyEventFilterExpressionList",
|
|
28
|
+
"SubpropertyEventFilterClause",
|
|
29
|
+
"SubpropertyEventFilter",
|
|
30
|
+
},
|
|
31
|
+
)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class SubpropertyEventFilterCondition(proto.Message):
|
|
35
|
+
r"""A specific filter expression
|
|
36
|
+
|
|
37
|
+
This message has `oneof`_ fields (mutually exclusive fields).
|
|
38
|
+
For each oneof, at most one member field can be set at the same time.
|
|
39
|
+
Setting any member of the oneof automatically clears all other
|
|
40
|
+
members.
|
|
41
|
+
|
|
42
|
+
.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields
|
|
43
|
+
|
|
44
|
+
Attributes:
|
|
45
|
+
null_filter (bool):
|
|
46
|
+
A filter for null values.
|
|
47
|
+
|
|
48
|
+
This field is a member of `oneof`_ ``one_filter``.
|
|
49
|
+
string_filter (google.analytics.admin_v1alpha.types.SubpropertyEventFilterCondition.StringFilter):
|
|
50
|
+
A filter for a string-type dimension that
|
|
51
|
+
matches a particular pattern.
|
|
52
|
+
|
|
53
|
+
This field is a member of `oneof`_ ``one_filter``.
|
|
54
|
+
field_name (str):
|
|
55
|
+
Required. The field that is being filtered.
|
|
56
|
+
"""
|
|
57
|
+
|
|
58
|
+
class StringFilter(proto.Message):
|
|
59
|
+
r"""A filter for a string-type dimension that matches a
|
|
60
|
+
particular pattern.
|
|
61
|
+
|
|
62
|
+
Attributes:
|
|
63
|
+
match_type (google.analytics.admin_v1alpha.types.SubpropertyEventFilterCondition.StringFilter.MatchType):
|
|
64
|
+
Required. The match type for the string
|
|
65
|
+
filter.
|
|
66
|
+
value (str):
|
|
67
|
+
Required. The string value used for the
|
|
68
|
+
matching.
|
|
69
|
+
case_sensitive (bool):
|
|
70
|
+
Optional. If true, the string value is case
|
|
71
|
+
sensitive. If false, the match is
|
|
72
|
+
case-insensitive.
|
|
73
|
+
"""
|
|
74
|
+
|
|
75
|
+
class MatchType(proto.Enum):
|
|
76
|
+
r"""How the filter will be used to determine a match.
|
|
77
|
+
|
|
78
|
+
Values:
|
|
79
|
+
MATCH_TYPE_UNSPECIFIED (0):
|
|
80
|
+
Match type unknown or not specified.
|
|
81
|
+
EXACT (1):
|
|
82
|
+
Exact match of the string value.
|
|
83
|
+
BEGINS_WITH (2):
|
|
84
|
+
Begins with the string value.
|
|
85
|
+
ENDS_WITH (3):
|
|
86
|
+
Ends with the string value.
|
|
87
|
+
CONTAINS (4):
|
|
88
|
+
Contains the string value.
|
|
89
|
+
FULL_REGEXP (5):
|
|
90
|
+
Full regular expression matches with the
|
|
91
|
+
string value.
|
|
92
|
+
PARTIAL_REGEXP (6):
|
|
93
|
+
Partial regular expression matches with the
|
|
94
|
+
string value.
|
|
95
|
+
"""
|
|
96
|
+
MATCH_TYPE_UNSPECIFIED = 0
|
|
97
|
+
EXACT = 1
|
|
98
|
+
BEGINS_WITH = 2
|
|
99
|
+
ENDS_WITH = 3
|
|
100
|
+
CONTAINS = 4
|
|
101
|
+
FULL_REGEXP = 5
|
|
102
|
+
PARTIAL_REGEXP = 6
|
|
103
|
+
|
|
104
|
+
match_type: "SubpropertyEventFilterCondition.StringFilter.MatchType" = (
|
|
105
|
+
proto.Field(
|
|
106
|
+
proto.ENUM,
|
|
107
|
+
number=1,
|
|
108
|
+
enum="SubpropertyEventFilterCondition.StringFilter.MatchType",
|
|
109
|
+
)
|
|
110
|
+
)
|
|
111
|
+
value: str = proto.Field(
|
|
112
|
+
proto.STRING,
|
|
113
|
+
number=2,
|
|
114
|
+
)
|
|
115
|
+
case_sensitive: bool = proto.Field(
|
|
116
|
+
proto.BOOL,
|
|
117
|
+
number=3,
|
|
118
|
+
)
|
|
119
|
+
|
|
120
|
+
null_filter: bool = proto.Field(
|
|
121
|
+
proto.BOOL,
|
|
122
|
+
number=2,
|
|
123
|
+
oneof="one_filter",
|
|
124
|
+
)
|
|
125
|
+
string_filter: StringFilter = proto.Field(
|
|
126
|
+
proto.MESSAGE,
|
|
127
|
+
number=3,
|
|
128
|
+
oneof="one_filter",
|
|
129
|
+
message=StringFilter,
|
|
130
|
+
)
|
|
131
|
+
field_name: str = proto.Field(
|
|
132
|
+
proto.STRING,
|
|
133
|
+
number=1,
|
|
134
|
+
)
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
class SubpropertyEventFilterExpression(proto.Message):
|
|
138
|
+
r"""A logical expression of Subproperty event filters.
|
|
139
|
+
|
|
140
|
+
This message has `oneof`_ fields (mutually exclusive fields).
|
|
141
|
+
For each oneof, at most one member field can be set at the same time.
|
|
142
|
+
Setting any member of the oneof automatically clears all other
|
|
143
|
+
members.
|
|
144
|
+
|
|
145
|
+
.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields
|
|
146
|
+
|
|
147
|
+
Attributes:
|
|
148
|
+
or_group (google.analytics.admin_v1alpha.types.SubpropertyEventFilterExpressionList):
|
|
149
|
+
A list of expressions to OR’ed together. Must only contain
|
|
150
|
+
not_expression or filter_condition expressions.
|
|
151
|
+
|
|
152
|
+
This field is a member of `oneof`_ ``expr``.
|
|
153
|
+
not_expression (google.analytics.admin_v1alpha.types.SubpropertyEventFilterExpression):
|
|
154
|
+
A filter expression to be NOT'ed (inverted,
|
|
155
|
+
complemented). It can only include a filter.
|
|
156
|
+
This cannot be set on the top level
|
|
157
|
+
SubpropertyEventFilterExpression.
|
|
158
|
+
|
|
159
|
+
This field is a member of `oneof`_ ``expr``.
|
|
160
|
+
filter_condition (google.analytics.admin_v1alpha.types.SubpropertyEventFilterCondition):
|
|
161
|
+
Creates a filter that matches a specific
|
|
162
|
+
event. This cannot be set on the top level
|
|
163
|
+
SubpropertyEventFilterExpression.
|
|
164
|
+
|
|
165
|
+
This field is a member of `oneof`_ ``expr``.
|
|
166
|
+
"""
|
|
167
|
+
|
|
168
|
+
or_group: "SubpropertyEventFilterExpressionList" = proto.Field(
|
|
169
|
+
proto.MESSAGE,
|
|
170
|
+
number=1,
|
|
171
|
+
oneof="expr",
|
|
172
|
+
message="SubpropertyEventFilterExpressionList",
|
|
173
|
+
)
|
|
174
|
+
not_expression: "SubpropertyEventFilterExpression" = proto.Field(
|
|
175
|
+
proto.MESSAGE,
|
|
176
|
+
number=2,
|
|
177
|
+
oneof="expr",
|
|
178
|
+
message="SubpropertyEventFilterExpression",
|
|
179
|
+
)
|
|
180
|
+
filter_condition: "SubpropertyEventFilterCondition" = proto.Field(
|
|
181
|
+
proto.MESSAGE,
|
|
182
|
+
number=3,
|
|
183
|
+
oneof="expr",
|
|
184
|
+
message="SubpropertyEventFilterCondition",
|
|
185
|
+
)
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
class SubpropertyEventFilterExpressionList(proto.Message):
|
|
189
|
+
r"""A list of Subproperty event filter expressions.
|
|
190
|
+
|
|
191
|
+
Attributes:
|
|
192
|
+
filter_expressions (MutableSequence[google.analytics.admin_v1alpha.types.SubpropertyEventFilterExpression]):
|
|
193
|
+
Required. Unordered list. A list of
|
|
194
|
+
Subproperty event filter expressions
|
|
195
|
+
"""
|
|
196
|
+
|
|
197
|
+
filter_expressions: MutableSequence[
|
|
198
|
+
"SubpropertyEventFilterExpression"
|
|
199
|
+
] = proto.RepeatedField(
|
|
200
|
+
proto.MESSAGE,
|
|
201
|
+
number=1,
|
|
202
|
+
message="SubpropertyEventFilterExpression",
|
|
203
|
+
)
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
class SubpropertyEventFilterClause(proto.Message):
|
|
207
|
+
r"""A clause for defining a filter. A filter may be inclusive
|
|
208
|
+
(events satisfying the filter clause are included in the
|
|
209
|
+
subproperty's data) or exclusive (events satisfying the filter
|
|
210
|
+
clause are excluded from the subproperty's data).
|
|
211
|
+
|
|
212
|
+
Attributes:
|
|
213
|
+
filter_clause_type (google.analytics.admin_v1alpha.types.SubpropertyEventFilterClause.FilterClauseType):
|
|
214
|
+
Required. The type for the filter clause.
|
|
215
|
+
filter_expression (google.analytics.admin_v1alpha.types.SubpropertyEventFilterExpression):
|
|
216
|
+
Required. The logical expression for what
|
|
217
|
+
events are sent to the subproperty.
|
|
218
|
+
"""
|
|
219
|
+
|
|
220
|
+
class FilterClauseType(proto.Enum):
|
|
221
|
+
r"""Specifies whether this is an include or exclude filter
|
|
222
|
+
clause.
|
|
223
|
+
|
|
224
|
+
Values:
|
|
225
|
+
FILTER_CLAUSE_TYPE_UNSPECIFIED (0):
|
|
226
|
+
Filter clause type unknown or not specified.
|
|
227
|
+
INCLUDE (1):
|
|
228
|
+
Events will be included in the Sub property
|
|
229
|
+
if the filter clause is met.
|
|
230
|
+
EXCLUDE (2):
|
|
231
|
+
Events will be excluded from the Sub property
|
|
232
|
+
if the filter clause is met.
|
|
233
|
+
"""
|
|
234
|
+
FILTER_CLAUSE_TYPE_UNSPECIFIED = 0
|
|
235
|
+
INCLUDE = 1
|
|
236
|
+
EXCLUDE = 2
|
|
237
|
+
|
|
238
|
+
filter_clause_type: FilterClauseType = proto.Field(
|
|
239
|
+
proto.ENUM,
|
|
240
|
+
number=1,
|
|
241
|
+
enum=FilterClauseType,
|
|
242
|
+
)
|
|
243
|
+
filter_expression: "SubpropertyEventFilterExpression" = proto.Field(
|
|
244
|
+
proto.MESSAGE,
|
|
245
|
+
number=2,
|
|
246
|
+
message="SubpropertyEventFilterExpression",
|
|
247
|
+
)
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
class SubpropertyEventFilter(proto.Message):
|
|
251
|
+
r"""A resource message representing a Google Analytics
|
|
252
|
+
subproperty event filter.
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
.. _oneof: https://proto-plus-python.readthedocs.io/en/stable/fields.html#oneofs-mutually-exclusive-fields
|
|
256
|
+
|
|
257
|
+
Attributes:
|
|
258
|
+
name (str):
|
|
259
|
+
Output only. Format:
|
|
260
|
+
properties/{ordinary_property_id}/subpropertyEventFilters/{sub_property_event_filter}
|
|
261
|
+
Example: properties/1234/subpropertyEventFilters/5678
|
|
262
|
+
apply_to_property (str):
|
|
263
|
+
Immutable. Resource name of the Subproperty
|
|
264
|
+
that uses this filter.
|
|
265
|
+
|
|
266
|
+
This field is a member of `oneof`_ ``_apply_to_property``.
|
|
267
|
+
filter_clauses (MutableSequence[google.analytics.admin_v1alpha.types.SubpropertyEventFilterClause]):
|
|
268
|
+
Required. Unordered list. Filter clauses that
|
|
269
|
+
define the SubpropertyEventFilter. All clauses
|
|
270
|
+
are AND'ed together to determine what data is
|
|
271
|
+
sent to the subproperty.
|
|
272
|
+
"""
|
|
273
|
+
|
|
274
|
+
name: str = proto.Field(
|
|
275
|
+
proto.STRING,
|
|
276
|
+
number=1,
|
|
277
|
+
)
|
|
278
|
+
apply_to_property: str = proto.Field(
|
|
279
|
+
proto.STRING,
|
|
280
|
+
number=2,
|
|
281
|
+
optional=True,
|
|
282
|
+
)
|
|
283
|
+
filter_clauses: MutableSequence[
|
|
284
|
+
"SubpropertyEventFilterClause"
|
|
285
|
+
] = proto.RepeatedField(
|
|
286
|
+
proto.MESSAGE,
|
|
287
|
+
number=3,
|
|
288
|
+
message="SubpropertyEventFilterClause",
|
|
289
|
+
)
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
__all__ = tuple(sorted(__protobuf__.manifest))
|
|
@@ -0,0 +1,255 @@
|
|
|
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
|
+
from google.analytics.admin_v1beta import gapic_version as package_version
|
|
17
|
+
|
|
18
|
+
__version__ = package_version.__version__
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
from .services.analytics_admin_service import (
|
|
22
|
+
AnalyticsAdminServiceAsyncClient,
|
|
23
|
+
AnalyticsAdminServiceClient,
|
|
24
|
+
)
|
|
25
|
+
from .types.access_report import (
|
|
26
|
+
AccessBetweenFilter,
|
|
27
|
+
AccessDateRange,
|
|
28
|
+
AccessDimension,
|
|
29
|
+
AccessDimensionHeader,
|
|
30
|
+
AccessDimensionValue,
|
|
31
|
+
AccessFilter,
|
|
32
|
+
AccessFilterExpression,
|
|
33
|
+
AccessFilterExpressionList,
|
|
34
|
+
AccessInListFilter,
|
|
35
|
+
AccessMetric,
|
|
36
|
+
AccessMetricHeader,
|
|
37
|
+
AccessMetricValue,
|
|
38
|
+
AccessNumericFilter,
|
|
39
|
+
AccessOrderBy,
|
|
40
|
+
AccessQuota,
|
|
41
|
+
AccessQuotaStatus,
|
|
42
|
+
AccessRow,
|
|
43
|
+
AccessStringFilter,
|
|
44
|
+
NumericValue,
|
|
45
|
+
)
|
|
46
|
+
from .types.analytics_admin import (
|
|
47
|
+
AcknowledgeUserDataCollectionRequest,
|
|
48
|
+
AcknowledgeUserDataCollectionResponse,
|
|
49
|
+
ArchiveCustomDimensionRequest,
|
|
50
|
+
ArchiveCustomMetricRequest,
|
|
51
|
+
CreateConversionEventRequest,
|
|
52
|
+
CreateCustomDimensionRequest,
|
|
53
|
+
CreateCustomMetricRequest,
|
|
54
|
+
CreateDataStreamRequest,
|
|
55
|
+
CreateFirebaseLinkRequest,
|
|
56
|
+
CreateGoogleAdsLinkRequest,
|
|
57
|
+
CreateKeyEventRequest,
|
|
58
|
+
CreateMeasurementProtocolSecretRequest,
|
|
59
|
+
CreatePropertyRequest,
|
|
60
|
+
DeleteAccountRequest,
|
|
61
|
+
DeleteConversionEventRequest,
|
|
62
|
+
DeleteDataStreamRequest,
|
|
63
|
+
DeleteFirebaseLinkRequest,
|
|
64
|
+
DeleteGoogleAdsLinkRequest,
|
|
65
|
+
DeleteKeyEventRequest,
|
|
66
|
+
DeleteMeasurementProtocolSecretRequest,
|
|
67
|
+
DeletePropertyRequest,
|
|
68
|
+
GetAccountRequest,
|
|
69
|
+
GetConversionEventRequest,
|
|
70
|
+
GetCustomDimensionRequest,
|
|
71
|
+
GetCustomMetricRequest,
|
|
72
|
+
GetDataRetentionSettingsRequest,
|
|
73
|
+
GetDataSharingSettingsRequest,
|
|
74
|
+
GetDataStreamRequest,
|
|
75
|
+
GetKeyEventRequest,
|
|
76
|
+
GetMeasurementProtocolSecretRequest,
|
|
77
|
+
GetPropertyRequest,
|
|
78
|
+
ListAccountsRequest,
|
|
79
|
+
ListAccountsResponse,
|
|
80
|
+
ListAccountSummariesRequest,
|
|
81
|
+
ListAccountSummariesResponse,
|
|
82
|
+
ListConversionEventsRequest,
|
|
83
|
+
ListConversionEventsResponse,
|
|
84
|
+
ListCustomDimensionsRequest,
|
|
85
|
+
ListCustomDimensionsResponse,
|
|
86
|
+
ListCustomMetricsRequest,
|
|
87
|
+
ListCustomMetricsResponse,
|
|
88
|
+
ListDataStreamsRequest,
|
|
89
|
+
ListDataStreamsResponse,
|
|
90
|
+
ListFirebaseLinksRequest,
|
|
91
|
+
ListFirebaseLinksResponse,
|
|
92
|
+
ListGoogleAdsLinksRequest,
|
|
93
|
+
ListGoogleAdsLinksResponse,
|
|
94
|
+
ListKeyEventsRequest,
|
|
95
|
+
ListKeyEventsResponse,
|
|
96
|
+
ListMeasurementProtocolSecretsRequest,
|
|
97
|
+
ListMeasurementProtocolSecretsResponse,
|
|
98
|
+
ListPropertiesRequest,
|
|
99
|
+
ListPropertiesResponse,
|
|
100
|
+
ProvisionAccountTicketRequest,
|
|
101
|
+
ProvisionAccountTicketResponse,
|
|
102
|
+
RunAccessReportRequest,
|
|
103
|
+
RunAccessReportResponse,
|
|
104
|
+
SearchChangeHistoryEventsRequest,
|
|
105
|
+
SearchChangeHistoryEventsResponse,
|
|
106
|
+
UpdateAccountRequest,
|
|
107
|
+
UpdateConversionEventRequest,
|
|
108
|
+
UpdateCustomDimensionRequest,
|
|
109
|
+
UpdateCustomMetricRequest,
|
|
110
|
+
UpdateDataRetentionSettingsRequest,
|
|
111
|
+
UpdateDataStreamRequest,
|
|
112
|
+
UpdateGoogleAdsLinkRequest,
|
|
113
|
+
UpdateKeyEventRequest,
|
|
114
|
+
UpdateMeasurementProtocolSecretRequest,
|
|
115
|
+
UpdatePropertyRequest,
|
|
116
|
+
)
|
|
117
|
+
from .types.resources import (
|
|
118
|
+
Account,
|
|
119
|
+
AccountSummary,
|
|
120
|
+
ActionType,
|
|
121
|
+
ActorType,
|
|
122
|
+
ChangeHistoryChange,
|
|
123
|
+
ChangeHistoryEvent,
|
|
124
|
+
ChangeHistoryResourceType,
|
|
125
|
+
ConversionEvent,
|
|
126
|
+
CustomDimension,
|
|
127
|
+
CustomMetric,
|
|
128
|
+
DataRetentionSettings,
|
|
129
|
+
DataSharingSettings,
|
|
130
|
+
DataStream,
|
|
131
|
+
FirebaseLink,
|
|
132
|
+
GoogleAdsLink,
|
|
133
|
+
IndustryCategory,
|
|
134
|
+
KeyEvent,
|
|
135
|
+
MeasurementProtocolSecret,
|
|
136
|
+
Property,
|
|
137
|
+
PropertySummary,
|
|
138
|
+
PropertyType,
|
|
139
|
+
ServiceLevel,
|
|
140
|
+
)
|
|
141
|
+
|
|
142
|
+
__all__ = (
|
|
143
|
+
"AnalyticsAdminServiceAsyncClient",
|
|
144
|
+
"AccessBetweenFilter",
|
|
145
|
+
"AccessDateRange",
|
|
146
|
+
"AccessDimension",
|
|
147
|
+
"AccessDimensionHeader",
|
|
148
|
+
"AccessDimensionValue",
|
|
149
|
+
"AccessFilter",
|
|
150
|
+
"AccessFilterExpression",
|
|
151
|
+
"AccessFilterExpressionList",
|
|
152
|
+
"AccessInListFilter",
|
|
153
|
+
"AccessMetric",
|
|
154
|
+
"AccessMetricHeader",
|
|
155
|
+
"AccessMetricValue",
|
|
156
|
+
"AccessNumericFilter",
|
|
157
|
+
"AccessOrderBy",
|
|
158
|
+
"AccessQuota",
|
|
159
|
+
"AccessQuotaStatus",
|
|
160
|
+
"AccessRow",
|
|
161
|
+
"AccessStringFilter",
|
|
162
|
+
"Account",
|
|
163
|
+
"AccountSummary",
|
|
164
|
+
"AcknowledgeUserDataCollectionRequest",
|
|
165
|
+
"AcknowledgeUserDataCollectionResponse",
|
|
166
|
+
"ActionType",
|
|
167
|
+
"ActorType",
|
|
168
|
+
"AnalyticsAdminServiceClient",
|
|
169
|
+
"ArchiveCustomDimensionRequest",
|
|
170
|
+
"ArchiveCustomMetricRequest",
|
|
171
|
+
"ChangeHistoryChange",
|
|
172
|
+
"ChangeHistoryEvent",
|
|
173
|
+
"ChangeHistoryResourceType",
|
|
174
|
+
"ConversionEvent",
|
|
175
|
+
"CreateConversionEventRequest",
|
|
176
|
+
"CreateCustomDimensionRequest",
|
|
177
|
+
"CreateCustomMetricRequest",
|
|
178
|
+
"CreateDataStreamRequest",
|
|
179
|
+
"CreateFirebaseLinkRequest",
|
|
180
|
+
"CreateGoogleAdsLinkRequest",
|
|
181
|
+
"CreateKeyEventRequest",
|
|
182
|
+
"CreateMeasurementProtocolSecretRequest",
|
|
183
|
+
"CreatePropertyRequest",
|
|
184
|
+
"CustomDimension",
|
|
185
|
+
"CustomMetric",
|
|
186
|
+
"DataRetentionSettings",
|
|
187
|
+
"DataSharingSettings",
|
|
188
|
+
"DataStream",
|
|
189
|
+
"DeleteAccountRequest",
|
|
190
|
+
"DeleteConversionEventRequest",
|
|
191
|
+
"DeleteDataStreamRequest",
|
|
192
|
+
"DeleteFirebaseLinkRequest",
|
|
193
|
+
"DeleteGoogleAdsLinkRequest",
|
|
194
|
+
"DeleteKeyEventRequest",
|
|
195
|
+
"DeleteMeasurementProtocolSecretRequest",
|
|
196
|
+
"DeletePropertyRequest",
|
|
197
|
+
"FirebaseLink",
|
|
198
|
+
"GetAccountRequest",
|
|
199
|
+
"GetConversionEventRequest",
|
|
200
|
+
"GetCustomDimensionRequest",
|
|
201
|
+
"GetCustomMetricRequest",
|
|
202
|
+
"GetDataRetentionSettingsRequest",
|
|
203
|
+
"GetDataSharingSettingsRequest",
|
|
204
|
+
"GetDataStreamRequest",
|
|
205
|
+
"GetKeyEventRequest",
|
|
206
|
+
"GetMeasurementProtocolSecretRequest",
|
|
207
|
+
"GetPropertyRequest",
|
|
208
|
+
"GoogleAdsLink",
|
|
209
|
+
"IndustryCategory",
|
|
210
|
+
"KeyEvent",
|
|
211
|
+
"ListAccountSummariesRequest",
|
|
212
|
+
"ListAccountSummariesResponse",
|
|
213
|
+
"ListAccountsRequest",
|
|
214
|
+
"ListAccountsResponse",
|
|
215
|
+
"ListConversionEventsRequest",
|
|
216
|
+
"ListConversionEventsResponse",
|
|
217
|
+
"ListCustomDimensionsRequest",
|
|
218
|
+
"ListCustomDimensionsResponse",
|
|
219
|
+
"ListCustomMetricsRequest",
|
|
220
|
+
"ListCustomMetricsResponse",
|
|
221
|
+
"ListDataStreamsRequest",
|
|
222
|
+
"ListDataStreamsResponse",
|
|
223
|
+
"ListFirebaseLinksRequest",
|
|
224
|
+
"ListFirebaseLinksResponse",
|
|
225
|
+
"ListGoogleAdsLinksRequest",
|
|
226
|
+
"ListGoogleAdsLinksResponse",
|
|
227
|
+
"ListKeyEventsRequest",
|
|
228
|
+
"ListKeyEventsResponse",
|
|
229
|
+
"ListMeasurementProtocolSecretsRequest",
|
|
230
|
+
"ListMeasurementProtocolSecretsResponse",
|
|
231
|
+
"ListPropertiesRequest",
|
|
232
|
+
"ListPropertiesResponse",
|
|
233
|
+
"MeasurementProtocolSecret",
|
|
234
|
+
"NumericValue",
|
|
235
|
+
"Property",
|
|
236
|
+
"PropertySummary",
|
|
237
|
+
"PropertyType",
|
|
238
|
+
"ProvisionAccountTicketRequest",
|
|
239
|
+
"ProvisionAccountTicketResponse",
|
|
240
|
+
"RunAccessReportRequest",
|
|
241
|
+
"RunAccessReportResponse",
|
|
242
|
+
"SearchChangeHistoryEventsRequest",
|
|
243
|
+
"SearchChangeHistoryEventsResponse",
|
|
244
|
+
"ServiceLevel",
|
|
245
|
+
"UpdateAccountRequest",
|
|
246
|
+
"UpdateConversionEventRequest",
|
|
247
|
+
"UpdateCustomDimensionRequest",
|
|
248
|
+
"UpdateCustomMetricRequest",
|
|
249
|
+
"UpdateDataRetentionSettingsRequest",
|
|
250
|
+
"UpdateDataStreamRequest",
|
|
251
|
+
"UpdateGoogleAdsLinkRequest",
|
|
252
|
+
"UpdateKeyEventRequest",
|
|
253
|
+
"UpdateMeasurementProtocolSecretRequest",
|
|
254
|
+
"UpdatePropertyRequest",
|
|
255
|
+
)
|