google-analytics-admin-v1alpha 0.17.0 → 0.19.0
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.
- checksums.yaml +4 -4
- data/lib/google/analytics/admin/v1alpha/analytics_admin_pb.rb +92 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/client.rb +1698 -242
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/paths.rb +53 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/client.rb +1294 -187
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/service_stub.rb +891 -3
- data/lib/google/analytics/admin/v1alpha/analytics_admin_services_pb.rb +31 -0
- data/lib/google/analytics/admin/v1alpha/channel_group_pb.rb +74 -0
- data/lib/google/analytics/admin/v1alpha/event_create_and_edit_pb.rb +59 -0
- data/lib/google/analytics/admin/v1alpha/resources_pb.rb +16 -0
- data/lib/google/analytics/admin/v1alpha/version.rb +1 -1
- data/proto_docs/google/analytics/admin/v1alpha/analytics_admin.rb +268 -1
- data/proto_docs/google/analytics/admin/v1alpha/audience.rb +15 -10
- data/proto_docs/google/analytics/admin/v1alpha/channel_group.rb +158 -0
- data/proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb +167 -0
- data/proto_docs/google/analytics/admin/v1alpha/expanded_data_set.rb +2 -2
- data/proto_docs/google/analytics/admin/v1alpha/resources.rb +42 -0
- data/proto_docs/google/api/client.rb +58 -1
- metadata +6 -2
@@ -0,0 +1,158 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Analytics
|
22
|
+
module Admin
|
23
|
+
module V1alpha
|
24
|
+
# A specific filter for a single dimension.
|
25
|
+
# @!attribute [rw] string_filter
|
26
|
+
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroupFilter::StringFilter]
|
27
|
+
# A filter for a string-type dimension that matches a particular pattern.
|
28
|
+
# @!attribute [rw] in_list_filter
|
29
|
+
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroupFilter::InListFilter]
|
30
|
+
# A filter for a string dimension that matches a particular list of
|
31
|
+
# options.
|
32
|
+
# @!attribute [rw] field_name
|
33
|
+
# @return [::String]
|
34
|
+
# Required. Immutable. The dimension name to filter.
|
35
|
+
class ChannelGroupFilter
|
36
|
+
include ::Google::Protobuf::MessageExts
|
37
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
38
|
+
|
39
|
+
# Filter where the field value is a String. The match is case insensitive.
|
40
|
+
# @!attribute [rw] match_type
|
41
|
+
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroupFilter::StringFilter::MatchType]
|
42
|
+
# Required. The match type for the string filter.
|
43
|
+
# @!attribute [rw] value
|
44
|
+
# @return [::String]
|
45
|
+
# Required. The string value to be matched against.
|
46
|
+
class StringFilter
|
47
|
+
include ::Google::Protobuf::MessageExts
|
48
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
49
|
+
|
50
|
+
# How the filter will be used to determine a match.
|
51
|
+
module MatchType
|
52
|
+
# Default match type.
|
53
|
+
MATCH_TYPE_UNSPECIFIED = 0
|
54
|
+
|
55
|
+
# Exact match of the string value.
|
56
|
+
EXACT = 1
|
57
|
+
|
58
|
+
# Begins with the string value.
|
59
|
+
BEGINS_WITH = 2
|
60
|
+
|
61
|
+
# Ends with the string value.
|
62
|
+
ENDS_WITH = 3
|
63
|
+
|
64
|
+
# Contains the string value.
|
65
|
+
CONTAINS = 4
|
66
|
+
|
67
|
+
# Full regular expression match with the string value.
|
68
|
+
FULL_REGEXP = 5
|
69
|
+
|
70
|
+
# Partial regular expression match with the string value.
|
71
|
+
PARTIAL_REGEXP = 6
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
# A filter for a string dimension that matches a particular list of options.
|
76
|
+
# The match is case insensitive.
|
77
|
+
# @!attribute [rw] values
|
78
|
+
# @return [::Array<::String>]
|
79
|
+
# Required. The list of possible string values to match against. Must be
|
80
|
+
# non-empty.
|
81
|
+
class InListFilter
|
82
|
+
include ::Google::Protobuf::MessageExts
|
83
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
# A logical expression of Channel Group dimension filters.
|
88
|
+
# @!attribute [rw] and_group
|
89
|
+
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroupFilterExpressionList]
|
90
|
+
# A list of expressions to be AND’ed together. It can only contain
|
91
|
+
# ChannelGroupFilterExpressions with or_group. This must be set for the
|
92
|
+
# top level ChannelGroupFilterExpression.
|
93
|
+
# @!attribute [rw] or_group
|
94
|
+
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroupFilterExpressionList]
|
95
|
+
# A list of expressions to OR’ed together. It cannot contain
|
96
|
+
# ChannelGroupFilterExpressions with and_group or or_group.
|
97
|
+
# @!attribute [rw] not_expression
|
98
|
+
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroupFilterExpression]
|
99
|
+
# A filter expression to be NOT'ed (that is inverted, complemented). It
|
100
|
+
# can only include a dimension_or_metric_filter. This cannot be set on the
|
101
|
+
# top level ChannelGroupFilterExpression.
|
102
|
+
# @!attribute [rw] filter
|
103
|
+
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroupFilter]
|
104
|
+
# A filter on a single dimension. This cannot be set on the top
|
105
|
+
# level ChannelGroupFilterExpression.
|
106
|
+
class ChannelGroupFilterExpression
|
107
|
+
include ::Google::Protobuf::MessageExts
|
108
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
109
|
+
end
|
110
|
+
|
111
|
+
# A list of Channel Group filter expressions.
|
112
|
+
# @!attribute [rw] filter_expressions
|
113
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::ChannelGroupFilterExpression>]
|
114
|
+
# A list of Channel Group filter expressions.
|
115
|
+
class ChannelGroupFilterExpressionList
|
116
|
+
include ::Google::Protobuf::MessageExts
|
117
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
118
|
+
end
|
119
|
+
|
120
|
+
# The rules that govern how traffic is grouped into one channel.
|
121
|
+
# @!attribute [rw] display_name
|
122
|
+
# @return [::String]
|
123
|
+
# Required. Customer defined display name for the channel.
|
124
|
+
# @!attribute [rw] expression
|
125
|
+
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroupFilterExpression]
|
126
|
+
# Required. The Filter Expression that defines the Grouping Rule.
|
127
|
+
class GroupingRule
|
128
|
+
include ::Google::Protobuf::MessageExts
|
129
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
130
|
+
end
|
131
|
+
|
132
|
+
# A resource message representing a Channel Group.
|
133
|
+
# @!attribute [r] name
|
134
|
+
# @return [::String]
|
135
|
+
# Output only. The resource name for this Channel Group resource.
|
136
|
+
# Format: properties/\\{property}/channelGroups/\\{channel_group}
|
137
|
+
# @!attribute [rw] display_name
|
138
|
+
# @return [::String]
|
139
|
+
# Required. The display name of the Channel Group. Max length of 80
|
140
|
+
# characters.
|
141
|
+
# @!attribute [rw] description
|
142
|
+
# @return [::String]
|
143
|
+
# The description of the Channel Group. Max length of 256 characters.
|
144
|
+
# @!attribute [rw] grouping_rule
|
145
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::GroupingRule>]
|
146
|
+
# Required. The grouping rules of channels. Maximum number of rules is 25.
|
147
|
+
# @!attribute [r] system_defined
|
148
|
+
# @return [::Boolean]
|
149
|
+
# Output only. Default Channel Group defined by Google, which cannot be
|
150
|
+
# updated.
|
151
|
+
class ChannelGroup
|
152
|
+
include ::Google::Protobuf::MessageExts
|
153
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
154
|
+
end
|
155
|
+
end
|
156
|
+
end
|
157
|
+
end
|
158
|
+
end
|
@@ -0,0 +1,167 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Analytics
|
22
|
+
module Admin
|
23
|
+
module V1alpha
|
24
|
+
# Defines an event parameter to mutate.
|
25
|
+
# @!attribute [rw] parameter
|
26
|
+
# @return [::String]
|
27
|
+
# Required. The name of the parameter to mutate.
|
28
|
+
# This value must:
|
29
|
+
# * be less than 40 characters.
|
30
|
+
# * be unique across across all mutations within the rule
|
31
|
+
# * consist only of letters, digits or _ (underscores)
|
32
|
+
# For event edit rules, the name may also be set to 'event_name' to modify
|
33
|
+
# the event_name in place.
|
34
|
+
# @!attribute [rw] parameter_value
|
35
|
+
# @return [::String]
|
36
|
+
# Required. The value mutation to perform.
|
37
|
+
# * Must be less than 100 characters.
|
38
|
+
# * To specify a constant value for the param, use the value's string.
|
39
|
+
# * To copy value from another parameter, use syntax like
|
40
|
+
# "[[other_parameter]]" For more details, see this [help center
|
41
|
+
# article](https://support.google.com/analytics/answer/10085872#modify-an-event&zippy=%2Cin-this-article%2Cmodify-parameters).
|
42
|
+
class ParameterMutation
|
43
|
+
include ::Google::Protobuf::MessageExts
|
44
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
45
|
+
end
|
46
|
+
|
47
|
+
# An Event Create Rule defines conditions that will trigger the creation
|
48
|
+
# of an entirely new event based upon matched criteria of a source event.
|
49
|
+
# Additional mutations of the parameters from the source event can be defined.
|
50
|
+
#
|
51
|
+
# Unlike Event Edit rules, Event Creation Rules have no defined order. They
|
52
|
+
# will all be run independently.
|
53
|
+
#
|
54
|
+
# Event Edit and Event Create rules can't be used to modify an event created
|
55
|
+
# from an Event Create rule.
|
56
|
+
# @!attribute [r] name
|
57
|
+
# @return [::String]
|
58
|
+
# Output only. Resource name for this EventCreateRule resource.
|
59
|
+
# Format:
|
60
|
+
# properties/\\{property}/dataStreams/\\{data_stream}/eventCreateRules/\\{event_create_rule}
|
61
|
+
# @!attribute [rw] destination_event
|
62
|
+
# @return [::String]
|
63
|
+
# Required. The name of the new event to be created.
|
64
|
+
#
|
65
|
+
# This value must:
|
66
|
+
# * be less than 40 characters
|
67
|
+
# * consist only of letters, digits or _ (underscores)
|
68
|
+
# * start with a letter
|
69
|
+
# @!attribute [rw] event_conditions
|
70
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::MatchingCondition>]
|
71
|
+
# Required. Must have at least one condition, and can have up to 10 max.
|
72
|
+
# Conditions on the source event must match for this rule to be applied.
|
73
|
+
# @!attribute [rw] source_copy_parameters
|
74
|
+
# @return [::Boolean]
|
75
|
+
# If true, the source parameters are copied to the new event.
|
76
|
+
# If false, or unset, all non-internal parameters are not copied from the
|
77
|
+
# source event. Parameter mutations are applied after the parameters have
|
78
|
+
# been copied.
|
79
|
+
# @!attribute [rw] parameter_mutations
|
80
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::ParameterMutation>]
|
81
|
+
# Parameter mutations define parameter behavior on the new event, and
|
82
|
+
# are applied in order.
|
83
|
+
# A maximum of 20 mutations can be applied.
|
84
|
+
class EventCreateRule
|
85
|
+
include ::Google::Protobuf::MessageExts
|
86
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
87
|
+
end
|
88
|
+
|
89
|
+
# Defines a condition for when an Event Edit or Event Creation rule applies to
|
90
|
+
# an event.
|
91
|
+
# @!attribute [rw] field
|
92
|
+
# @return [::String]
|
93
|
+
# Required. The name of the field that is compared against for the condition.
|
94
|
+
# If 'event_name' is specified this condition will apply to the name of the
|
95
|
+
# event. Otherwise the condition will apply to a parameter with the
|
96
|
+
# specified name.
|
97
|
+
#
|
98
|
+
# This value cannot contain spaces.
|
99
|
+
# @!attribute [rw] comparison_type
|
100
|
+
# @return [::Google::Analytics::Admin::V1alpha::MatchingCondition::ComparisonType]
|
101
|
+
# Required. The type of comparison to be applied to the value.
|
102
|
+
# @!attribute [rw] value
|
103
|
+
# @return [::String]
|
104
|
+
# Required. The value being compared against for this condition. The runtime
|
105
|
+
# implementation may perform type coercion of this value to evaluate this
|
106
|
+
# condition based on the type of the parameter value.
|
107
|
+
# @!attribute [rw] negated
|
108
|
+
# @return [::Boolean]
|
109
|
+
# Whether or not the result of the comparison should be negated. For example,
|
110
|
+
# if `negated` is true, then 'equals' comparisons would function as 'not
|
111
|
+
# equals'.
|
112
|
+
class MatchingCondition
|
113
|
+
include ::Google::Protobuf::MessageExts
|
114
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
115
|
+
|
116
|
+
# Comparison type for matching condition
|
117
|
+
module ComparisonType
|
118
|
+
# Unknown
|
119
|
+
COMPARISON_TYPE_UNSPECIFIED = 0
|
120
|
+
|
121
|
+
# Equals, case sensitive
|
122
|
+
EQUALS = 1
|
123
|
+
|
124
|
+
# Equals, case insensitive
|
125
|
+
EQUALS_CASE_INSENSITIVE = 2
|
126
|
+
|
127
|
+
# Contains, case sensitive
|
128
|
+
CONTAINS = 3
|
129
|
+
|
130
|
+
# Contains, case insensitive
|
131
|
+
CONTAINS_CASE_INSENSITIVE = 4
|
132
|
+
|
133
|
+
# Starts with, case sensitive
|
134
|
+
STARTS_WITH = 5
|
135
|
+
|
136
|
+
# Starts with, case insensitive
|
137
|
+
STARTS_WITH_CASE_INSENSITIVE = 6
|
138
|
+
|
139
|
+
# Ends with, case sensitive
|
140
|
+
ENDS_WITH = 7
|
141
|
+
|
142
|
+
# Ends with, case insensitive
|
143
|
+
ENDS_WITH_CASE_INSENSITIVE = 8
|
144
|
+
|
145
|
+
# Greater than
|
146
|
+
GREATER_THAN = 9
|
147
|
+
|
148
|
+
# Greater than or equal
|
149
|
+
GREATER_THAN_OR_EQUAL = 10
|
150
|
+
|
151
|
+
# Less than
|
152
|
+
LESS_THAN = 11
|
153
|
+
|
154
|
+
# Less than or equal
|
155
|
+
LESS_THAN_OR_EQUAL = 12
|
156
|
+
|
157
|
+
# regular expression. Only supported for web streams.
|
158
|
+
REGULAR_EXPRESSION = 13
|
159
|
+
|
160
|
+
# regular expression, case insensitive. Only supported for web streams.
|
161
|
+
REGULAR_EXPRESSION_CASE_INSENSITIVE = 14
|
162
|
+
end
|
163
|
+
end
|
164
|
+
end
|
165
|
+
end
|
166
|
+
end
|
167
|
+
end
|
@@ -91,7 +91,7 @@ module Google
|
|
91
91
|
# ExpandedDataSetFilterExpression.
|
92
92
|
# @!attribute [rw] not_expression
|
93
93
|
# @return [::Google::Analytics::Admin::V1alpha::ExpandedDataSetFilterExpression]
|
94
|
-
# A filter expression to be NOT'ed (
|
94
|
+
# A filter expression to be NOT'ed (that is, inverted, complemented). It
|
95
95
|
# must include a dimension_filter. This cannot be set on the
|
96
96
|
# top level ExpandedDataSetFilterExpression.
|
97
97
|
# @!attribute [rw] filter
|
@@ -141,7 +141,7 @@ module Google
|
|
141
141
|
# @return [::Google::Analytics::Admin::V1alpha::ExpandedDataSetFilterExpression]
|
142
142
|
# Immutable. A logical expression of ExpandedDataSet filters applied to
|
143
143
|
# dimension included in the ExpandedDataSet. This filter is used to reduce
|
144
|
-
# the number of rows and thus the
|
144
|
+
# the number of rows and thus the chance of encountering `other` row.
|
145
145
|
# @!attribute [r] data_collection_start_time
|
146
146
|
# @return [::Google::Protobuf::Timestamp]
|
147
147
|
# Output only. Time when expanded data set began (or will begin) collecing
|
@@ -549,12 +549,24 @@ module Google
|
|
549
549
|
# @!attribute [rw] expanded_data_set
|
550
550
|
# @return [::Google::Analytics::Admin::V1alpha::ExpandedDataSet]
|
551
551
|
# A snapshot of an ExpandedDataSet resource in change history.
|
552
|
+
# @!attribute [rw] channel_group
|
553
|
+
# @return [::Google::Analytics::Admin::V1alpha::ChannelGroup]
|
554
|
+
# A snapshot of a ChannelGroup resource in change history.
|
552
555
|
# @!attribute [rw] bigquery_link
|
553
556
|
# @return [::Google::Analytics::Admin::V1alpha::BigQueryLink]
|
554
557
|
# A snapshot of a BigQuery link resource in change history.
|
555
558
|
# @!attribute [rw] enhanced_measurement_settings
|
556
559
|
# @return [::Google::Analytics::Admin::V1alpha::EnhancedMeasurementSettings]
|
557
560
|
# A snapshot of EnhancedMeasurementSettings resource in change history.
|
561
|
+
# @!attribute [rw] adsense_link
|
562
|
+
# @return [::Google::Analytics::Admin::V1alpha::AdSenseLink]
|
563
|
+
# A snapshot of an AdSenseLink resource in change history.
|
564
|
+
# @!attribute [rw] audience
|
565
|
+
# @return [::Google::Analytics::Admin::V1alpha::Audience]
|
566
|
+
# A snapshot of an Audience resource in change history.
|
567
|
+
# @!attribute [rw] event_create_rule
|
568
|
+
# @return [::Google::Analytics::Admin::V1alpha::EventCreateRule]
|
569
|
+
# A snapshot of an EventCreateRule resource in change history.
|
558
570
|
class ChangeHistoryResource
|
559
571
|
include ::Google::Protobuf::MessageExts
|
560
572
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -761,6 +773,9 @@ module Google
|
|
761
773
|
# If this is an event-scoped dimension, then this is the event parameter
|
762
774
|
# name.
|
763
775
|
#
|
776
|
+
# If this is an item-scoped dimension, then this is the parameter
|
777
|
+
# name found in the eCommerce items array.
|
778
|
+
#
|
764
779
|
# May only contain alphanumeric and underscore characters, starting with a
|
765
780
|
# letter. Max length of 24 characters for user-scoped dimensions, 40
|
766
781
|
# characters for event-scoped dimensions.
|
@@ -798,6 +813,9 @@ module Google
|
|
798
813
|
|
799
814
|
# Dimension scoped to a user.
|
800
815
|
USER = 2
|
816
|
+
|
817
|
+
# Dimension scoped to eCommerce items
|
818
|
+
ITEM = 3
|
801
819
|
end
|
802
820
|
end
|
803
821
|
|
@@ -1189,6 +1207,21 @@ module Google
|
|
1189
1207
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1190
1208
|
end
|
1191
1209
|
|
1210
|
+
# A link between a GA4 Property and an AdSense for Content ad client.
|
1211
|
+
# @!attribute [r] name
|
1212
|
+
# @return [::String]
|
1213
|
+
# Output only. The resource name for this AdSense Link resource.
|
1214
|
+
# Format: properties/\\{propertyId}/adSenseLinks/\\{linkId}
|
1215
|
+
# Example: properties/1234/adSenseLinks/6789
|
1216
|
+
# @!attribute [rw] ad_client_code
|
1217
|
+
# @return [::String]
|
1218
|
+
# Immutable. The AdSense ad client code that the GA4 property is linked to.
|
1219
|
+
# Example format: "ca-pub-1234567890"
|
1220
|
+
class AdSenseLink
|
1221
|
+
include ::Google::Protobuf::MessageExts
|
1222
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1223
|
+
end
|
1224
|
+
|
1192
1225
|
# The category selected for this property, used for industry benchmarking.
|
1193
1226
|
module IndustryCategory
|
1194
1227
|
# Industry category unspecified
|
@@ -1374,6 +1407,15 @@ module Google
|
|
1374
1407
|
|
1375
1408
|
# EnhancedMeasurementSettings resource
|
1376
1409
|
ENHANCED_MEASUREMENT_SETTINGS = 24
|
1410
|
+
|
1411
|
+
# AdSenseLink resource
|
1412
|
+
ADSENSE_LINK = 27
|
1413
|
+
|
1414
|
+
# Audience resource
|
1415
|
+
AUDIENCE = 28
|
1416
|
+
|
1417
|
+
# EventCreateRule resource
|
1418
|
+
EVENT_CREATE_RULE = 29
|
1377
1419
|
end
|
1378
1420
|
|
1379
1421
|
# Status of the Google Signals settings.
|
@@ -83,7 +83,7 @@ module Google
|
|
83
83
|
# long-running operation pattern.
|
84
84
|
# @!attribute [rw] new_issue_uri
|
85
85
|
# @return [::String]
|
86
|
-
# Link to a
|
86
|
+
# Link to a *public* URI where users can report issues. Example:
|
87
87
|
# https://issuetracker.google.com/issues/new?component=190865&template=1161103
|
88
88
|
# @!attribute [rw] documentation_uri
|
89
89
|
# @return [::String]
|
@@ -209,9 +209,57 @@ module Google
|
|
209
209
|
# @!attribute [rw] common
|
210
210
|
# @return [::Google::Api::CommonLanguageSettings]
|
211
211
|
# Some settings.
|
212
|
+
# @!attribute [rw] renamed_services
|
213
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
214
|
+
# Map from original service names to renamed versions.
|
215
|
+
# This is used when the default generated types
|
216
|
+
# would cause a naming conflict. (Neither name is
|
217
|
+
# fully-qualified.)
|
218
|
+
# Example: Subscriber to SubscriberServiceApi.
|
219
|
+
# @!attribute [rw] renamed_resources
|
220
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
221
|
+
# Map from full resource types to the effective short name
|
222
|
+
# for the resource. This is used when otherwise resource
|
223
|
+
# named from different services would cause naming collisions.
|
224
|
+
# Example entry:
|
225
|
+
# "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
|
226
|
+
# @!attribute [rw] ignored_resources
|
227
|
+
# @return [::Array<::String>]
|
228
|
+
# List of full resource types to ignore during generation.
|
229
|
+
# This is typically used for API-specific Location resources,
|
230
|
+
# which should be handled by the generator as if they were actually
|
231
|
+
# the common Location resources.
|
232
|
+
# Example entry: "documentai.googleapis.com/Location"
|
233
|
+
# @!attribute [rw] forced_namespace_aliases
|
234
|
+
# @return [::Array<::String>]
|
235
|
+
# Namespaces which must be aliased in snippets due to
|
236
|
+
# a known (but non-generator-predictable) naming collision
|
237
|
+
# @!attribute [rw] handwritten_signatures
|
238
|
+
# @return [::Array<::String>]
|
239
|
+
# Method signatures (in the form "service.method(signature)")
|
240
|
+
# which are provided separately, so shouldn't be generated.
|
241
|
+
# Snippets *calling* these methods are still generated, however.
|
212
242
|
class DotnetSettings
|
213
243
|
include ::Google::Protobuf::MessageExts
|
214
244
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
245
|
+
|
246
|
+
# @!attribute [rw] key
|
247
|
+
# @return [::String]
|
248
|
+
# @!attribute [rw] value
|
249
|
+
# @return [::String]
|
250
|
+
class RenamedServicesEntry
|
251
|
+
include ::Google::Protobuf::MessageExts
|
252
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
253
|
+
end
|
254
|
+
|
255
|
+
# @!attribute [rw] key
|
256
|
+
# @return [::String]
|
257
|
+
# @!attribute [rw] value
|
258
|
+
# @return [::String]
|
259
|
+
class RenamedResourcesEntry
|
260
|
+
include ::Google::Protobuf::MessageExts
|
261
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
262
|
+
end
|
215
263
|
end
|
216
264
|
|
217
265
|
# Settings for Ruby client libraries.
|
@@ -305,6 +353,15 @@ module Google
|
|
305
353
|
|
306
354
|
# Street View Org.
|
307
355
|
STREET_VIEW = 4
|
356
|
+
|
357
|
+
# Shopping Org.
|
358
|
+
SHOPPING = 5
|
359
|
+
|
360
|
+
# Geo Org.
|
361
|
+
GEO = 6
|
362
|
+
|
363
|
+
# Generative AI - https://developers.generativeai.google
|
364
|
+
GENERATIVE_AI = 7
|
308
365
|
end
|
309
366
|
|
310
367
|
# To where should client libraries be published?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.19.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -183,6 +183,8 @@ files:
|
|
183
183
|
- lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/service_stub.rb
|
184
184
|
- lib/google/analytics/admin/v1alpha/analytics_admin_services_pb.rb
|
185
185
|
- lib/google/analytics/admin/v1alpha/audience_pb.rb
|
186
|
+
- lib/google/analytics/admin/v1alpha/channel_group_pb.rb
|
187
|
+
- lib/google/analytics/admin/v1alpha/event_create_and_edit_pb.rb
|
186
188
|
- lib/google/analytics/admin/v1alpha/expanded_data_set_pb.rb
|
187
189
|
- lib/google/analytics/admin/v1alpha/resources_pb.rb
|
188
190
|
- lib/google/analytics/admin/v1alpha/rest.rb
|
@@ -191,6 +193,8 @@ files:
|
|
191
193
|
- proto_docs/google/analytics/admin/v1alpha/access_report.rb
|
192
194
|
- proto_docs/google/analytics/admin/v1alpha/analytics_admin.rb
|
193
195
|
- proto_docs/google/analytics/admin/v1alpha/audience.rb
|
196
|
+
- proto_docs/google/analytics/admin/v1alpha/channel_group.rb
|
197
|
+
- proto_docs/google/analytics/admin/v1alpha/event_create_and_edit.rb
|
194
198
|
- proto_docs/google/analytics/admin/v1alpha/expanded_data_set.rb
|
195
199
|
- proto_docs/google/analytics/admin/v1alpha/resources.rb
|
196
200
|
- proto_docs/google/api/client.rb
|