google-analytics-admin-v1alpha 0.31.0 → 0.32.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/client.rb +7 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/client.rb +7 -0
- data/lib/google/analytics/admin/v1alpha/version.rb +1 -1
- data/proto_docs/google/analytics/admin/v1alpha/access_report.rb +24 -0
- data/proto_docs/google/analytics/admin/v1alpha/audience.rb +26 -0
- data/proto_docs/google/analytics/admin/v1alpha/channel_group.rb +12 -0
- data/proto_docs/google/analytics/admin/v1alpha/expanded_data_set.rb +10 -0
- data/proto_docs/google/analytics/admin/v1alpha/resources.rb +56 -0
- data/proto_docs/google/analytics/admin/v1alpha/subproperty_event_filter.rb +10 -0
- metadata +6 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d1bfd82a295fd9fb593fb7897d14831afcb143fa9d5a15970304725b41cb682e
|
4
|
+
data.tar.gz: 4261ba4f4115ae6e1c7960d37e0e7c70a367a1e48976b7e36a906084ae47c836
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2e213cb3ec7aec92db681975fb77e32b369e22bb0508e94ab6d8e3d065ac45c7fcd1c232a2f7dcfdf2e0a4360348092fee49ebb3c344f428095901e851dc004
|
7
|
+
data.tar.gz: 26d1fcadbd7c35d9da346992ab38020cf59bc91a2f5922499821bda7c1a2dd8c267c5ea5149718b1c2837be16f6c42970d47017146f031972e2703163051c9c8
|
data/README.md
CHANGED
@@ -83,7 +83,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
|
|
83
83
|
|
84
84
|
## Supported Ruby Versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.0+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported
|
89
89
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
@@ -13982,6 +13982,13 @@ module Google
|
|
13982
13982
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
13983
13983
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
13984
13984
|
# * (`nil`) indicating no credentials
|
13985
|
+
#
|
13986
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
13987
|
+
# external source for authentication to Google Cloud, you must validate it before
|
13988
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
13989
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
13990
|
+
# For more information, refer to [Validate credential configurations from external
|
13991
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
13985
13992
|
# @return [::Object]
|
13986
13993
|
# @!attribute [rw] scope
|
13987
13994
|
# The OAuth scopes
|
@@ -13017,6 +13017,13 @@ module Google
|
|
13017
13017
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
13018
13018
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
13019
13019
|
# * (`nil`) indicating no credentials
|
13020
|
+
#
|
13021
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
13022
|
+
# external source for authentication to Google Cloud, you must validate it before
|
13023
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
13024
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
13025
|
+
# For more information, refer to [Validate credential configurations from external
|
13026
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
13020
13027
|
# @return [::Object]
|
13021
13028
|
# @!attribute [rw] scope
|
13022
13029
|
# The OAuth scopes
|
@@ -73,16 +73,24 @@ module Google
|
|
73
73
|
# @!attribute [rw] and_group
|
74
74
|
# @return [::Google::Analytics::Admin::V1alpha::AccessFilterExpressionList]
|
75
75
|
# Each of the FilterExpressions in the and_group has an AND relationship.
|
76
|
+
#
|
77
|
+
# Note: The following fields are mutually exclusive: `and_group`, `or_group`, `not_expression`, `access_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
76
78
|
# @!attribute [rw] or_group
|
77
79
|
# @return [::Google::Analytics::Admin::V1alpha::AccessFilterExpressionList]
|
78
80
|
# Each of the FilterExpressions in the or_group has an OR relationship.
|
81
|
+
#
|
82
|
+
# Note: The following fields are mutually exclusive: `or_group`, `and_group`, `not_expression`, `access_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
79
83
|
# @!attribute [rw] not_expression
|
80
84
|
# @return [::Google::Analytics::Admin::V1alpha::AccessFilterExpression]
|
81
85
|
# The FilterExpression is NOT of not_expression.
|
86
|
+
#
|
87
|
+
# Note: The following fields are mutually exclusive: `not_expression`, `and_group`, `or_group`, `access_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
82
88
|
# @!attribute [rw] access_filter
|
83
89
|
# @return [::Google::Analytics::Admin::V1alpha::AccessFilter]
|
84
90
|
# A primitive filter. In the same FilterExpression, all of the filter's
|
85
91
|
# field names need to be either all dimensions or all metrics.
|
92
|
+
#
|
93
|
+
# Note: The following fields are mutually exclusive: `access_filter`, `and_group`, `or_group`, `not_expression`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
86
94
|
class AccessFilterExpression
|
87
95
|
include ::Google::Protobuf::MessageExts
|
88
96
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -101,15 +109,23 @@ module Google
|
|
101
109
|
# @!attribute [rw] string_filter
|
102
110
|
# @return [::Google::Analytics::Admin::V1alpha::AccessStringFilter]
|
103
111
|
# Strings related filter.
|
112
|
+
#
|
113
|
+
# Note: The following fields are mutually exclusive: `string_filter`, `in_list_filter`, `numeric_filter`, `between_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
104
114
|
# @!attribute [rw] in_list_filter
|
105
115
|
# @return [::Google::Analytics::Admin::V1alpha::AccessInListFilter]
|
106
116
|
# A filter for in list values.
|
117
|
+
#
|
118
|
+
# Note: The following fields are mutually exclusive: `in_list_filter`, `string_filter`, `numeric_filter`, `between_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
107
119
|
# @!attribute [rw] numeric_filter
|
108
120
|
# @return [::Google::Analytics::Admin::V1alpha::AccessNumericFilter]
|
109
121
|
# A filter for numeric or date values.
|
122
|
+
#
|
123
|
+
# Note: The following fields are mutually exclusive: `numeric_filter`, `string_filter`, `in_list_filter`, `between_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
110
124
|
# @!attribute [rw] between_filter
|
111
125
|
# @return [::Google::Analytics::Admin::V1alpha::AccessBetweenFilter]
|
112
126
|
# A filter for two values.
|
127
|
+
#
|
128
|
+
# Note: The following fields are mutually exclusive: `between_filter`, `string_filter`, `in_list_filter`, `numeric_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
113
129
|
# @!attribute [rw] field_name
|
114
130
|
# @return [::String]
|
115
131
|
# The dimension name or metric name.
|
@@ -218,9 +234,13 @@ module Google
|
|
218
234
|
# @!attribute [rw] int64_value
|
219
235
|
# @return [::Integer]
|
220
236
|
# Integer value
|
237
|
+
#
|
238
|
+
# Note: The following fields are mutually exclusive: `int64_value`, `double_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
221
239
|
# @!attribute [rw] double_value
|
222
240
|
# @return [::Float]
|
223
241
|
# Double value
|
242
|
+
#
|
243
|
+
# Note: The following fields are mutually exclusive: `double_value`, `int64_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
224
244
|
class NumericValue
|
225
245
|
include ::Google::Protobuf::MessageExts
|
226
246
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -232,9 +252,13 @@ module Google
|
|
232
252
|
# @!attribute [rw] metric
|
233
253
|
# @return [::Google::Analytics::Admin::V1alpha::AccessOrderBy::MetricOrderBy]
|
234
254
|
# Sorts results by a metric's values.
|
255
|
+
#
|
256
|
+
# Note: The following fields are mutually exclusive: `metric`, `dimension`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
235
257
|
# @!attribute [rw] dimension
|
236
258
|
# @return [::Google::Analytics::Admin::V1alpha::AccessOrderBy::DimensionOrderBy]
|
237
259
|
# Sorts results by a dimension's values.
|
260
|
+
#
|
261
|
+
# Note: The following fields are mutually exclusive: `dimension`, `metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
238
262
|
# @!attribute [rw] desc
|
239
263
|
# @return [::Boolean]
|
240
264
|
# If true, sorts by descending order. If false or unspecified, sorts in
|
@@ -25,17 +25,25 @@ module Google
|
|
25
25
|
# @!attribute [rw] string_filter
|
26
26
|
# @return [::Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter::StringFilter]
|
27
27
|
# A filter for a string-type dimension that matches a particular pattern.
|
28
|
+
#
|
29
|
+
# Note: The following fields are mutually exclusive: `string_filter`, `in_list_filter`, `numeric_filter`, `between_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
28
30
|
# @!attribute [rw] in_list_filter
|
29
31
|
# @return [::Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter::InListFilter]
|
30
32
|
# A filter for a string dimension that matches a particular list of
|
31
33
|
# options.
|
34
|
+
#
|
35
|
+
# Note: The following fields are mutually exclusive: `in_list_filter`, `string_filter`, `numeric_filter`, `between_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
32
36
|
# @!attribute [rw] numeric_filter
|
33
37
|
# @return [::Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter::NumericFilter]
|
34
38
|
# A filter for numeric or date values on a dimension or metric.
|
39
|
+
#
|
40
|
+
# Note: The following fields are mutually exclusive: `numeric_filter`, `string_filter`, `in_list_filter`, `between_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
35
41
|
# @!attribute [rw] between_filter
|
36
42
|
# @return [::Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter::BetweenFilter]
|
37
43
|
# A filter for numeric or date values between certain values on a dimension
|
38
44
|
# or metric.
|
45
|
+
#
|
46
|
+
# Note: The following fields are mutually exclusive: `between_filter`, `string_filter`, `in_list_filter`, `numeric_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
39
47
|
# @!attribute [rw] field_name
|
40
48
|
# @return [::String]
|
41
49
|
# Required. Immutable. The dimension name or metric name to filter. If the
|
@@ -124,9 +132,13 @@ module Google
|
|
124
132
|
# @!attribute [rw] int64_value
|
125
133
|
# @return [::Integer]
|
126
134
|
# Integer value.
|
135
|
+
#
|
136
|
+
# Note: The following fields are mutually exclusive: `int64_value`, `double_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
127
137
|
# @!attribute [rw] double_value
|
128
138
|
# @return [::Float]
|
129
139
|
# Double value.
|
140
|
+
#
|
141
|
+
# Note: The following fields are mutually exclusive: `double_value`, `int64_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
130
142
|
class NumericValue
|
131
143
|
include ::Google::Protobuf::MessageExts
|
132
144
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -199,23 +211,33 @@ module Google
|
|
199
211
|
# A list of expressions to be AND’ed together. It can only contain
|
200
212
|
# AudienceFilterExpressions with or_group. This must be set for the top
|
201
213
|
# level AudienceFilterExpression.
|
214
|
+
#
|
215
|
+
# Note: The following fields are mutually exclusive: `and_group`, `or_group`, `not_expression`, `dimension_or_metric_filter`, `event_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
202
216
|
# @!attribute [rw] or_group
|
203
217
|
# @return [::Google::Analytics::Admin::V1alpha::AudienceFilterExpressionList]
|
204
218
|
# A list of expressions to OR’ed together. It cannot contain
|
205
219
|
# AudienceFilterExpressions with and_group or or_group.
|
220
|
+
#
|
221
|
+
# Note: The following fields are mutually exclusive: `or_group`, `and_group`, `not_expression`, `dimension_or_metric_filter`, `event_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
206
222
|
# @!attribute [rw] not_expression
|
207
223
|
# @return [::Google::Analytics::Admin::V1alpha::AudienceFilterExpression]
|
208
224
|
# A filter expression to be NOT'ed (For example, inverted, complemented).
|
209
225
|
# It can only include a dimension_or_metric_filter. This cannot be set on
|
210
226
|
# the top level AudienceFilterExpression.
|
227
|
+
#
|
228
|
+
# Note: The following fields are mutually exclusive: `not_expression`, `and_group`, `or_group`, `dimension_or_metric_filter`, `event_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
211
229
|
# @!attribute [rw] dimension_or_metric_filter
|
212
230
|
# @return [::Google::Analytics::Admin::V1alpha::AudienceDimensionOrMetricFilter]
|
213
231
|
# A filter on a single dimension or metric. This cannot be set on the top
|
214
232
|
# level AudienceFilterExpression.
|
233
|
+
#
|
234
|
+
# Note: The following fields are mutually exclusive: `dimension_or_metric_filter`, `and_group`, `or_group`, `not_expression`, `event_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
215
235
|
# @!attribute [rw] event_filter
|
216
236
|
# @return [::Google::Analytics::Admin::V1alpha::AudienceEventFilter]
|
217
237
|
# Creates a filter that matches a specific event. This cannot be set on the
|
218
238
|
# top level AudienceFilterExpression.
|
239
|
+
#
|
240
|
+
# Note: The following fields are mutually exclusive: `event_filter`, `and_group`, `or_group`, `not_expression`, `dimension_or_metric_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
219
241
|
class AudienceFilterExpression
|
220
242
|
include ::Google::Protobuf::MessageExts
|
221
243
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -295,10 +317,14 @@ module Google
|
|
295
317
|
# @!attribute [rw] simple_filter
|
296
318
|
# @return [::Google::Analytics::Admin::V1alpha::AudienceSimpleFilter]
|
297
319
|
# A simple filter that a user must satisfy to be a member of the Audience.
|
320
|
+
#
|
321
|
+
# Note: The following fields are mutually exclusive: `simple_filter`, `sequence_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
298
322
|
# @!attribute [rw] sequence_filter
|
299
323
|
# @return [::Google::Analytics::Admin::V1alpha::AudienceSequenceFilter]
|
300
324
|
# Filters that must occur in a specific order for the user to be a member
|
301
325
|
# of the Audience.
|
326
|
+
#
|
327
|
+
# Note: The following fields are mutually exclusive: `sequence_filter`, `simple_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
302
328
|
# @!attribute [rw] clause_type
|
303
329
|
# @return [::Google::Analytics::Admin::V1alpha::AudienceFilterClause::AudienceClauseType]
|
304
330
|
# Required. Specifies whether this is an include or exclude filter clause.
|
@@ -25,10 +25,14 @@ module Google
|
|
25
25
|
# @!attribute [rw] string_filter
|
26
26
|
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroupFilter::StringFilter]
|
27
27
|
# A filter for a string-type dimension that matches a particular pattern.
|
28
|
+
#
|
29
|
+
# Note: The following fields are mutually exclusive: `string_filter`, `in_list_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
28
30
|
# @!attribute [rw] in_list_filter
|
29
31
|
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroupFilter::InListFilter]
|
30
32
|
# A filter for a string dimension that matches a particular list of
|
31
33
|
# options.
|
34
|
+
#
|
35
|
+
# Note: The following fields are mutually exclusive: `in_list_filter`, `string_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
32
36
|
# @!attribute [rw] field_name
|
33
37
|
# @return [::String]
|
34
38
|
# Required. Immutable. The dimension name to filter.
|
@@ -90,19 +94,27 @@ module Google
|
|
90
94
|
# A list of expressions to be AND’ed together. It can only contain
|
91
95
|
# ChannelGroupFilterExpressions with or_group. This must be set for the
|
92
96
|
# top level ChannelGroupFilterExpression.
|
97
|
+
#
|
98
|
+
# Note: The following fields are mutually exclusive: `and_group`, `or_group`, `not_expression`, `filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
93
99
|
# @!attribute [rw] or_group
|
94
100
|
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroupFilterExpressionList]
|
95
101
|
# A list of expressions to OR’ed together. It cannot contain
|
96
102
|
# ChannelGroupFilterExpressions with and_group or or_group.
|
103
|
+
#
|
104
|
+
# Note: The following fields are mutually exclusive: `or_group`, `and_group`, `not_expression`, `filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
97
105
|
# @!attribute [rw] not_expression
|
98
106
|
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroupFilterExpression]
|
99
107
|
# A filter expression to be NOT'ed (that is inverted, complemented). It
|
100
108
|
# can only include a dimension_or_metric_filter. This cannot be set on the
|
101
109
|
# top level ChannelGroupFilterExpression.
|
110
|
+
#
|
111
|
+
# Note: The following fields are mutually exclusive: `not_expression`, `and_group`, `or_group`, `filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
102
112
|
# @!attribute [rw] filter
|
103
113
|
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroupFilter]
|
104
114
|
# A filter on a single dimension. This cannot be set on the top
|
105
115
|
# level ChannelGroupFilterExpression.
|
116
|
+
#
|
117
|
+
# Note: The following fields are mutually exclusive: `filter`, `and_group`, `or_group`, `not_expression`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
106
118
|
class ChannelGroupFilterExpression
|
107
119
|
include ::Google::Protobuf::MessageExts
|
108
120
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -25,10 +25,14 @@ module Google
|
|
25
25
|
# @!attribute [rw] string_filter
|
26
26
|
# @return [::Google::Analytics::Admin::V1alpha::ExpandedDataSetFilter::StringFilter]
|
27
27
|
# A filter for a string-type dimension that matches a particular pattern.
|
28
|
+
#
|
29
|
+
# Note: The following fields are mutually exclusive: `string_filter`, `in_list_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
28
30
|
# @!attribute [rw] in_list_filter
|
29
31
|
# @return [::Google::Analytics::Admin::V1alpha::ExpandedDataSetFilter::InListFilter]
|
30
32
|
# A filter for a string dimension that matches a particular list of
|
31
33
|
# options.
|
34
|
+
#
|
35
|
+
# Note: The following fields are mutually exclusive: `in_list_filter`, `string_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
32
36
|
# @!attribute [rw] field_name
|
33
37
|
# @return [::String]
|
34
38
|
# Required. The dimension name to filter.
|
@@ -89,15 +93,21 @@ module Google
|
|
89
93
|
# ExpandedDataSetFilterExpression with either not_expression or
|
90
94
|
# dimension_filter. This must be set for the top level
|
91
95
|
# ExpandedDataSetFilterExpression.
|
96
|
+
#
|
97
|
+
# Note: The following fields are mutually exclusive: `and_group`, `not_expression`, `filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
92
98
|
# @!attribute [rw] not_expression
|
93
99
|
# @return [::Google::Analytics::Admin::V1alpha::ExpandedDataSetFilterExpression]
|
94
100
|
# A filter expression to be NOT'ed (that is, inverted, complemented). It
|
95
101
|
# must include a dimension_filter. This cannot be set on the
|
96
102
|
# top level ExpandedDataSetFilterExpression.
|
103
|
+
#
|
104
|
+
# Note: The following fields are mutually exclusive: `not_expression`, `and_group`, `filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
97
105
|
# @!attribute [rw] filter
|
98
106
|
# @return [::Google::Analytics::Admin::V1alpha::ExpandedDataSetFilter]
|
99
107
|
# A filter on a single dimension. This cannot be set on the top
|
100
108
|
# level ExpandedDataSetFilterExpression.
|
109
|
+
#
|
110
|
+
# Note: The following fields are mutually exclusive: `filter`, `and_group`, `not_expression`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
101
111
|
class ExpandedDataSetFilterExpression
|
102
112
|
include ::Google::Protobuf::MessageExts
|
103
113
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -132,14 +132,20 @@ module Google
|
|
132
132
|
# @return [::Google::Analytics::Admin::V1alpha::DataStream::WebStreamData]
|
133
133
|
# Data specific to web streams. Must be populated if type is
|
134
134
|
# WEB_DATA_STREAM.
|
135
|
+
#
|
136
|
+
# Note: The following fields are mutually exclusive: `web_stream_data`, `android_app_stream_data`, `ios_app_stream_data`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
135
137
|
# @!attribute [rw] android_app_stream_data
|
136
138
|
# @return [::Google::Analytics::Admin::V1alpha::DataStream::AndroidAppStreamData]
|
137
139
|
# Data specific to Android app streams. Must be populated if type is
|
138
140
|
# ANDROID_APP_DATA_STREAM.
|
141
|
+
#
|
142
|
+
# Note: The following fields are mutually exclusive: `android_app_stream_data`, `web_stream_data`, `ios_app_stream_data`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
139
143
|
# @!attribute [rw] ios_app_stream_data
|
140
144
|
# @return [::Google::Analytics::Admin::V1alpha::DataStream::IosAppStreamData]
|
141
145
|
# Data specific to iOS app streams. Must be populated if type is
|
142
146
|
# IOS_APP_DATA_STREAM.
|
147
|
+
#
|
148
|
+
# Note: The following fields are mutually exclusive: `ios_app_stream_data`, `web_stream_data`, `android_app_stream_data`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
143
149
|
# @!attribute [r] name
|
144
150
|
# @return [::String]
|
145
151
|
# Output only. Resource name of this Data Stream.
|
@@ -580,81 +586,131 @@ module Google
|
|
580
586
|
# @!attribute [rw] account
|
581
587
|
# @return [::Google::Analytics::Admin::V1alpha::Account]
|
582
588
|
# A snapshot of an Account resource in change history.
|
589
|
+
#
|
590
|
+
# Note: The following fields are mutually exclusive: `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
583
591
|
# @!attribute [rw] property
|
584
592
|
# @return [::Google::Analytics::Admin::V1alpha::Property]
|
585
593
|
# A snapshot of a Property resource in change history.
|
594
|
+
#
|
595
|
+
# Note: The following fields are mutually exclusive: `property`, `account`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
586
596
|
# @!attribute [rw] firebase_link
|
587
597
|
# @return [::Google::Analytics::Admin::V1alpha::FirebaseLink]
|
588
598
|
# A snapshot of a FirebaseLink resource in change history.
|
599
|
+
#
|
600
|
+
# Note: The following fields are mutually exclusive: `firebase_link`, `account`, `property`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
589
601
|
# @!attribute [rw] google_ads_link
|
590
602
|
# @return [::Google::Analytics::Admin::V1alpha::GoogleAdsLink]
|
591
603
|
# A snapshot of a GoogleAdsLink resource in change history.
|
604
|
+
#
|
605
|
+
# Note: The following fields are mutually exclusive: `google_ads_link`, `account`, `property`, `firebase_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
592
606
|
# @!attribute [rw] google_signals_settings
|
593
607
|
# @return [::Google::Analytics::Admin::V1alpha::GoogleSignalsSettings]
|
594
608
|
# A snapshot of a GoogleSignalsSettings resource in change history.
|
609
|
+
#
|
610
|
+
# Note: The following fields are mutually exclusive: `google_signals_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
595
611
|
# @!attribute [rw] display_video_360_advertiser_link
|
596
612
|
# @return [::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLink]
|
597
613
|
# A snapshot of a DisplayVideo360AdvertiserLink resource in change
|
598
614
|
# history.
|
615
|
+
#
|
616
|
+
# Note: The following fields are mutually exclusive: `display_video_360_advertiser_link`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
599
617
|
# @!attribute [rw] display_video_360_advertiser_link_proposal
|
600
618
|
# @return [::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLinkProposal]
|
601
619
|
# A snapshot of a DisplayVideo360AdvertiserLinkProposal resource in
|
602
620
|
# change history.
|
621
|
+
#
|
622
|
+
# Note: The following fields are mutually exclusive: `display_video_360_advertiser_link_proposal`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
603
623
|
# @!attribute [rw] conversion_event
|
604
624
|
# @return [::Google::Analytics::Admin::V1alpha::ConversionEvent]
|
605
625
|
# A snapshot of a ConversionEvent resource in change history.
|
626
|
+
#
|
627
|
+
# Note: The following fields are mutually exclusive: `conversion_event`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
606
628
|
# @!attribute [rw] measurement_protocol_secret
|
607
629
|
# @return [::Google::Analytics::Admin::V1alpha::MeasurementProtocolSecret]
|
608
630
|
# A snapshot of a MeasurementProtocolSecret resource in change history.
|
631
|
+
#
|
632
|
+
# Note: The following fields are mutually exclusive: `measurement_protocol_secret`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
609
633
|
# @!attribute [rw] custom_dimension
|
610
634
|
# @return [::Google::Analytics::Admin::V1alpha::CustomDimension]
|
611
635
|
# A snapshot of a CustomDimension resource in change history.
|
636
|
+
#
|
637
|
+
# Note: The following fields are mutually exclusive: `custom_dimension`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
612
638
|
# @!attribute [rw] custom_metric
|
613
639
|
# @return [::Google::Analytics::Admin::V1alpha::CustomMetric]
|
614
640
|
# A snapshot of a CustomMetric resource in change history.
|
641
|
+
#
|
642
|
+
# Note: The following fields are mutually exclusive: `custom_metric`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
615
643
|
# @!attribute [rw] data_retention_settings
|
616
644
|
# @return [::Google::Analytics::Admin::V1alpha::DataRetentionSettings]
|
617
645
|
# A snapshot of a data retention settings resource in change history.
|
646
|
+
#
|
647
|
+
# Note: The following fields are mutually exclusive: `data_retention_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
618
648
|
# @!attribute [rw] search_ads_360_link
|
619
649
|
# @return [::Google::Analytics::Admin::V1alpha::SearchAds360Link]
|
620
650
|
# A snapshot of a SearchAds360Link resource in change history.
|
651
|
+
#
|
652
|
+
# Note: The following fields are mutually exclusive: `search_ads_360_link`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
621
653
|
# @!attribute [rw] data_stream
|
622
654
|
# @return [::Google::Analytics::Admin::V1alpha::DataStream]
|
623
655
|
# A snapshot of a DataStream resource in change history.
|
656
|
+
#
|
657
|
+
# Note: The following fields are mutually exclusive: `data_stream`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
624
658
|
# @!attribute [rw] attribution_settings
|
625
659
|
# @return [::Google::Analytics::Admin::V1alpha::AttributionSettings]
|
626
660
|
# A snapshot of AttributionSettings resource in change history.
|
661
|
+
#
|
662
|
+
# Note: The following fields are mutually exclusive: `attribution_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
627
663
|
# @!attribute [rw] expanded_data_set
|
628
664
|
# @return [::Google::Analytics::Admin::V1alpha::ExpandedDataSet]
|
629
665
|
# A snapshot of an ExpandedDataSet resource in change history.
|
666
|
+
#
|
667
|
+
# Note: The following fields are mutually exclusive: `expanded_data_set`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
630
668
|
# @!attribute [rw] channel_group
|
631
669
|
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroup]
|
632
670
|
# A snapshot of a ChannelGroup resource in change history.
|
671
|
+
#
|
672
|
+
# Note: The following fields are mutually exclusive: `channel_group`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
633
673
|
# @!attribute [rw] bigquery_link
|
634
674
|
# @return [::Google::Analytics::Admin::V1alpha::BigQueryLink]
|
635
675
|
# A snapshot of a BigQuery link resource in change history.
|
676
|
+
#
|
677
|
+
# Note: The following fields are mutually exclusive: `bigquery_link`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
636
678
|
# @!attribute [rw] enhanced_measurement_settings
|
637
679
|
# @return [::Google::Analytics::Admin::V1alpha::EnhancedMeasurementSettings]
|
638
680
|
# A snapshot of EnhancedMeasurementSettings resource in change history.
|
681
|
+
#
|
682
|
+
# Note: The following fields are mutually exclusive: `enhanced_measurement_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
639
683
|
# @!attribute [rw] data_redaction_settings
|
640
684
|
# @return [::Google::Analytics::Admin::V1alpha::DataRedactionSettings]
|
641
685
|
# A snapshot of DataRedactionSettings resource in change history.
|
686
|
+
#
|
687
|
+
# Note: The following fields are mutually exclusive: `data_redaction_settings`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
642
688
|
# @!attribute [rw] skadnetwork_conversion_value_schema
|
643
689
|
# @return [::Google::Analytics::Admin::V1alpha::SKAdNetworkConversionValueSchema]
|
644
690
|
# A snapshot of SKAdNetworkConversionValueSchema resource in change
|
645
691
|
# history.
|
692
|
+
#
|
693
|
+
# Note: The following fields are mutually exclusive: `skadnetwork_conversion_value_schema`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `adsense_link`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
646
694
|
# @!attribute [rw] adsense_link
|
647
695
|
# @return [::Google::Analytics::Admin::V1alpha::AdSenseLink]
|
648
696
|
# A snapshot of an AdSenseLink resource in change history.
|
697
|
+
#
|
698
|
+
# Note: The following fields are mutually exclusive: `adsense_link`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `audience`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
649
699
|
# @!attribute [rw] audience
|
650
700
|
# @return [::Google::Analytics::Admin::V1alpha::Audience]
|
651
701
|
# A snapshot of an Audience resource in change history.
|
702
|
+
#
|
703
|
+
# Note: The following fields are mutually exclusive: `audience`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `event_create_rule`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
652
704
|
# @!attribute [rw] event_create_rule
|
653
705
|
# @return [::Google::Analytics::Admin::V1alpha::EventCreateRule]
|
654
706
|
# A snapshot of an EventCreateRule resource in change history.
|
707
|
+
#
|
708
|
+
# Note: The following fields are mutually exclusive: `event_create_rule`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `calculated_metric`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
655
709
|
# @!attribute [rw] calculated_metric
|
656
710
|
# @return [::Google::Analytics::Admin::V1alpha::CalculatedMetric]
|
657
711
|
# A snapshot of a CalculatedMetric resource in change history.
|
712
|
+
#
|
713
|
+
# Note: The following fields are mutually exclusive: `calculated_metric`, `account`, `property`, `firebase_link`, `google_ads_link`, `google_signals_settings`, `display_video_360_advertiser_link`, `display_video_360_advertiser_link_proposal`, `conversion_event`, `measurement_protocol_secret`, `custom_dimension`, `custom_metric`, `data_retention_settings`, `search_ads_360_link`, `data_stream`, `attribution_settings`, `expanded_data_set`, `channel_group`, `bigquery_link`, `enhanced_measurement_settings`, `data_redaction_settings`, `skadnetwork_conversion_value_schema`, `adsense_link`, `audience`, `event_create_rule`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
658
714
|
class ChangeHistoryResource
|
659
715
|
include ::Google::Protobuf::MessageExts
|
660
716
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -25,9 +25,13 @@ module Google
|
|
25
25
|
# @!attribute [rw] null_filter
|
26
26
|
# @return [::Boolean]
|
27
27
|
# A filter for null values.
|
28
|
+
#
|
29
|
+
# Note: The following fields are mutually exclusive: `null_filter`, `string_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
28
30
|
# @!attribute [rw] string_filter
|
29
31
|
# @return [::Google::Analytics::Admin::V1alpha::SubpropertyEventFilterCondition::StringFilter]
|
30
32
|
# A filter for a string-type dimension that matches a particular pattern.
|
33
|
+
#
|
34
|
+
# Note: The following fields are mutually exclusive: `string_filter`, `null_filter`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
31
35
|
# @!attribute [rw] field_name
|
32
36
|
# @return [::String]
|
33
37
|
# Required. The field that is being filtered.
|
@@ -81,15 +85,21 @@ module Google
|
|
81
85
|
# @return [::Google::Analytics::Admin::V1alpha::SubpropertyEventFilterExpressionList]
|
82
86
|
# A list of expressions to OR’ed together. Must only contain
|
83
87
|
# not_expression or filter_condition expressions.
|
88
|
+
#
|
89
|
+
# Note: The following fields are mutually exclusive: `or_group`, `not_expression`, `filter_condition`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
84
90
|
# @!attribute [rw] not_expression
|
85
91
|
# @return [::Google::Analytics::Admin::V1alpha::SubpropertyEventFilterExpression]
|
86
92
|
# A filter expression to be NOT'ed (inverted, complemented). It can only
|
87
93
|
# include a filter. This cannot be set on the top level
|
88
94
|
# SubpropertyEventFilterExpression.
|
95
|
+
#
|
96
|
+
# Note: The following fields are mutually exclusive: `not_expression`, `or_group`, `filter_condition`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
89
97
|
# @!attribute [rw] filter_condition
|
90
98
|
# @return [::Google::Analytics::Admin::V1alpha::SubpropertyEventFilterCondition]
|
91
99
|
# Creates a filter that matches a specific event. This cannot be set on the
|
92
100
|
# top level SubpropertyEventFilterExpression.
|
101
|
+
#
|
102
|
+
# Note: The following fields are mutually exclusive: `filter_condition`, `or_group`, `not_expression`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
93
103
|
class SubpropertyEventFilterExpression
|
94
104
|
include ::Google::Protobuf::MessageExts
|
95
105
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-analytics-admin-v1alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-29 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: gapic-common
|
@@ -16,7 +15,7 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
18
|
+
version: 0.25.0
|
20
19
|
- - "<"
|
21
20
|
- !ruby/object:Gem::Version
|
22
21
|
version: 2.a
|
@@ -26,7 +25,7 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
28
|
+
version: 0.25.0
|
30
29
|
- - "<"
|
31
30
|
- !ruby/object:Gem::Version
|
32
31
|
version: 2.a
|
@@ -100,7 +99,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
|
|
100
99
|
licenses:
|
101
100
|
- Apache-2.0
|
102
101
|
metadata: {}
|
103
|
-
post_install_message:
|
104
102
|
rdoc_options: []
|
105
103
|
require_paths:
|
106
104
|
- lib
|
@@ -108,15 +106,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
108
106
|
requirements:
|
109
107
|
- - ">="
|
110
108
|
- !ruby/object:Gem::Version
|
111
|
-
version: '
|
109
|
+
version: '3.0'
|
112
110
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
113
111
|
requirements:
|
114
112
|
- - ">="
|
115
113
|
- !ruby/object:Gem::Version
|
116
114
|
version: '0'
|
117
115
|
requirements: []
|
118
|
-
rubygems_version: 3.
|
119
|
-
signing_key:
|
116
|
+
rubygems_version: 3.6.2
|
120
117
|
specification_version: 4
|
121
118
|
summary: 'Manage properties in Google Analytics. Warning: Creating multiple Customer
|
122
119
|
Applications, Accounts, or Projects to simulate or act as a single Customer Application,
|