google-analytics-admin-v1alpha 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.yardopts +12 -0
- data/AUTHENTICATION.md +169 -0
- data/LICENSE.md +203 -0
- data/README.md +72 -0
- data/lib/google-analytics-admin-v1alpha.rb +21 -0
- data/lib/google/analytics/admin/v1alpha.rb +35 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_pb.rb +311 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service.rb +49 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/client.rb +4090 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/credentials.rb +54 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/paths.rb +230 -0
- data/lib/google/analytics/admin/v1alpha/analytics_admin_services_pb.rb +213 -0
- data/lib/google/analytics/admin/v1alpha/resources_pb.rb +174 -0
- data/lib/google/analytics/admin/v1alpha/version.rb +28 -0
- data/proto_docs/README.md +4 -0
- data/proto_docs/google/analytics/admin/v1alpha/analytics_admin.rb +849 -0
- data/proto_docs/google/analytics/admin/v1alpha/resources.rb +547 -0
- data/proto_docs/google/api/field_behavior.rb +59 -0
- data/proto_docs/google/api/resource.rb +247 -0
- data/proto_docs/google/protobuf/empty.rb +36 -0
- data/proto_docs/google/protobuf/field_mask.rb +229 -0
- data/proto_docs/google/protobuf/timestamp.rb +120 -0
- data/proto_docs/google/protobuf/wrappers.rb +121 -0
- metadata +207 -0
@@ -0,0 +1,174 @@
|
|
1
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
+
# source: google/analytics/admin/v1alpha/resources.proto
|
3
|
+
|
4
|
+
require 'google/protobuf'
|
5
|
+
|
6
|
+
require 'google/api/field_behavior_pb'
|
7
|
+
require 'google/api/resource_pb'
|
8
|
+
require 'google/protobuf/timestamp_pb'
|
9
|
+
require 'google/protobuf/wrappers_pb'
|
10
|
+
Google::Protobuf::DescriptorPool.generated_pool.build do
|
11
|
+
add_file("google/analytics/admin/v1alpha/resources.proto", :syntax => :proto3) do
|
12
|
+
add_message "google.analytics.admin.v1alpha.Account" do
|
13
|
+
optional :name, :string, 1
|
14
|
+
optional :create_time, :message, 2, "google.protobuf.Timestamp"
|
15
|
+
optional :update_time, :message, 3, "google.protobuf.Timestamp"
|
16
|
+
optional :display_name, :string, 4
|
17
|
+
optional :country_code, :string, 5
|
18
|
+
optional :deleted, :bool, 6
|
19
|
+
end
|
20
|
+
add_message "google.analytics.admin.v1alpha.Property" do
|
21
|
+
optional :name, :string, 1
|
22
|
+
optional :create_time, :message, 3, "google.protobuf.Timestamp"
|
23
|
+
optional :update_time, :message, 4, "google.protobuf.Timestamp"
|
24
|
+
optional :parent, :string, 2
|
25
|
+
optional :display_name, :string, 5
|
26
|
+
optional :industry_category, :enum, 6, "google.analytics.admin.v1alpha.IndustryCategory"
|
27
|
+
optional :time_zone, :string, 7
|
28
|
+
optional :currency_code, :string, 8
|
29
|
+
optional :deleted, :bool, 9
|
30
|
+
end
|
31
|
+
add_message "google.analytics.admin.v1alpha.AndroidAppDataStream" do
|
32
|
+
optional :name, :string, 1
|
33
|
+
optional :firebase_app_id, :string, 2
|
34
|
+
optional :create_time, :message, 3, "google.protobuf.Timestamp"
|
35
|
+
optional :update_time, :message, 4, "google.protobuf.Timestamp"
|
36
|
+
optional :package_name, :string, 5
|
37
|
+
optional :display_name, :string, 6
|
38
|
+
end
|
39
|
+
add_message "google.analytics.admin.v1alpha.IosAppDataStream" do
|
40
|
+
optional :name, :string, 1
|
41
|
+
optional :firebase_app_id, :string, 2
|
42
|
+
optional :create_time, :message, 3, "google.protobuf.Timestamp"
|
43
|
+
optional :update_time, :message, 4, "google.protobuf.Timestamp"
|
44
|
+
optional :bundle_id, :string, 5
|
45
|
+
optional :display_name, :string, 6
|
46
|
+
end
|
47
|
+
add_message "google.analytics.admin.v1alpha.WebDataStream" do
|
48
|
+
optional :name, :string, 1
|
49
|
+
optional :measurement_id, :string, 2
|
50
|
+
optional :firebase_app_id, :string, 3
|
51
|
+
optional :create_time, :message, 4, "google.protobuf.Timestamp"
|
52
|
+
optional :update_time, :message, 5, "google.protobuf.Timestamp"
|
53
|
+
optional :default_uri, :string, 6
|
54
|
+
optional :display_name, :string, 7
|
55
|
+
end
|
56
|
+
add_message "google.analytics.admin.v1alpha.UserLink" do
|
57
|
+
optional :name, :string, 1
|
58
|
+
optional :email_address, :string, 2
|
59
|
+
repeated :direct_roles, :string, 3
|
60
|
+
end
|
61
|
+
add_message "google.analytics.admin.v1alpha.AuditUserLink" do
|
62
|
+
optional :name, :string, 1
|
63
|
+
optional :email_address, :string, 2
|
64
|
+
repeated :direct_roles, :string, 3
|
65
|
+
repeated :effective_roles, :string, 4
|
66
|
+
end
|
67
|
+
add_message "google.analytics.admin.v1alpha.EnhancedMeasurementSettings" do
|
68
|
+
optional :name, :string, 1
|
69
|
+
optional :stream_enabled, :bool, 2
|
70
|
+
optional :page_views_enabled, :bool, 3
|
71
|
+
optional :scrolls_enabled, :bool, 4
|
72
|
+
optional :outbound_clicks_enabled, :bool, 5
|
73
|
+
optional :content_views_enabled, :bool, 6
|
74
|
+
optional :site_search_enabled, :bool, 7
|
75
|
+
optional :form_interactions_enabled, :bool, 8
|
76
|
+
optional :video_engagement_enabled, :bool, 9
|
77
|
+
optional :file_downloads_enabled, :bool, 10
|
78
|
+
optional :data_tagged_element_clicks_enabled, :bool, 11
|
79
|
+
optional :page_loads_enabled, :bool, 12
|
80
|
+
optional :page_changes_enabled, :bool, 13
|
81
|
+
optional :articles_and_blogs_enabled, :bool, 14
|
82
|
+
optional :products_and_ecommerce_enabled, :bool, 15
|
83
|
+
optional :search_query_parameter, :string, 16
|
84
|
+
optional :url_query_parameter, :string, 17
|
85
|
+
optional :excluded_domains, :string, 18
|
86
|
+
end
|
87
|
+
add_message "google.analytics.admin.v1alpha.FirebaseLink" do
|
88
|
+
optional :name, :string, 1
|
89
|
+
optional :project, :string, 2
|
90
|
+
optional :create_time, :message, 3, "google.protobuf.Timestamp"
|
91
|
+
optional :maximum_user_access, :enum, 4, "google.analytics.admin.v1alpha.MaximumUserAccess"
|
92
|
+
end
|
93
|
+
add_message "google.analytics.admin.v1alpha.GlobalSiteTag" do
|
94
|
+
optional :snippet, :string, 1
|
95
|
+
end
|
96
|
+
add_message "google.analytics.admin.v1alpha.GoogleAdsLink" do
|
97
|
+
optional :name, :string, 1
|
98
|
+
optional :parent, :string, 2
|
99
|
+
optional :customer_id, :string, 3
|
100
|
+
optional :can_manage_clients, :bool, 4
|
101
|
+
optional :ads_personalization_enabled, :message, 5, "google.protobuf.BoolValue"
|
102
|
+
optional :email_address, :string, 6
|
103
|
+
optional :create_time, :message, 7, "google.protobuf.Timestamp"
|
104
|
+
optional :update_time, :message, 8, "google.protobuf.Timestamp"
|
105
|
+
end
|
106
|
+
add_message "google.analytics.admin.v1alpha.DataSharingSettings" do
|
107
|
+
optional :name, :string, 1
|
108
|
+
optional :sharing_with_google_support_enabled, :bool, 2
|
109
|
+
optional :sharing_with_google_assigned_sales_enabled, :bool, 3
|
110
|
+
optional :sharing_with_google_any_sales_enabled, :bool, 4
|
111
|
+
optional :sharing_with_google_products_enabled, :bool, 5
|
112
|
+
optional :sharing_with_others_enabled, :bool, 6
|
113
|
+
end
|
114
|
+
add_enum "google.analytics.admin.v1alpha.IndustryCategory" do
|
115
|
+
value :INDUSTRY_CATEGORY_UNSPECIFIED, 0
|
116
|
+
value :AUTOMOTIVE, 1
|
117
|
+
value :BUSINESS_AND_INDUSTRIAL_MARKETS, 2
|
118
|
+
value :FINANCE, 3
|
119
|
+
value :HEALTHCARE, 4
|
120
|
+
value :TECHNOLOGY, 5
|
121
|
+
value :TRAVEL, 6
|
122
|
+
value :OTHER, 7
|
123
|
+
value :ARTS_AND_ENTERTAINMENT, 8
|
124
|
+
value :BEAUTY_AND_FITNESS, 9
|
125
|
+
value :BOOKS_AND_LITERATURE, 10
|
126
|
+
value :FOOD_AND_DRINK, 11
|
127
|
+
value :GAMES, 12
|
128
|
+
value :HOBBIES_AND_LEISURE, 13
|
129
|
+
value :HOME_AND_GARDEN, 14
|
130
|
+
value :INTERNET_AND_TELECOM, 15
|
131
|
+
value :LAW_AND_GOVERNMENT, 16
|
132
|
+
value :NEWS, 17
|
133
|
+
value :ONLINE_COMMUNITIES, 18
|
134
|
+
value :PEOPLE_AND_SOCIETY, 19
|
135
|
+
value :PETS_AND_ANIMALS, 20
|
136
|
+
value :REAL_ESTATE, 21
|
137
|
+
value :REFERENCE, 22
|
138
|
+
value :SCIENCE, 23
|
139
|
+
value :SPORTS, 24
|
140
|
+
value :JOBS_AND_EDUCATION, 25
|
141
|
+
value :SHOPPING, 26
|
142
|
+
end
|
143
|
+
add_enum "google.analytics.admin.v1alpha.MaximumUserAccess" do
|
144
|
+
value :MAXIMUM_USER_ACCESS_UNSPECIFIED, 0
|
145
|
+
value :NO_ACCESS, 1
|
146
|
+
value :READ_AND_ANALYZE, 2
|
147
|
+
value :EDITOR_WITHOUT_LINK_MANAGEMENT, 3
|
148
|
+
value :EDITOR_INCLUDING_LINK_MANAGEMENT, 4
|
149
|
+
end
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
153
|
+
module Google
|
154
|
+
module Analytics
|
155
|
+
module Admin
|
156
|
+
module V1alpha
|
157
|
+
Account = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.Account").msgclass
|
158
|
+
Property = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.Property").msgclass
|
159
|
+
AndroidAppDataStream = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.AndroidAppDataStream").msgclass
|
160
|
+
IosAppDataStream = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.IosAppDataStream").msgclass
|
161
|
+
WebDataStream = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.WebDataStream").msgclass
|
162
|
+
UserLink = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.UserLink").msgclass
|
163
|
+
AuditUserLink = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.AuditUserLink").msgclass
|
164
|
+
EnhancedMeasurementSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.EnhancedMeasurementSettings").msgclass
|
165
|
+
FirebaseLink = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.FirebaseLink").msgclass
|
166
|
+
GlobalSiteTag = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.GlobalSiteTag").msgclass
|
167
|
+
GoogleAdsLink = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.GoogleAdsLink").msgclass
|
168
|
+
DataSharingSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.DataSharingSettings").msgclass
|
169
|
+
IndustryCategory = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.IndustryCategory").enummodule
|
170
|
+
MaximumUserAccess = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.MaximumUserAccess").enummodule
|
171
|
+
end
|
172
|
+
end
|
173
|
+
end
|
174
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2020 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
|
+
VERSION = "0.1.0"
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
@@ -0,0 +1,849 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2020 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
|
+
# Request message for GetAccount RPC.
|
25
|
+
# @!attribute [rw] name
|
26
|
+
# @return [::String]
|
27
|
+
# Required. The name of the account to lookup.
|
28
|
+
# Format: accounts/\\{account}
|
29
|
+
# Example: "accounts/100"
|
30
|
+
class GetAccountRequest
|
31
|
+
include ::Google::Protobuf::MessageExts
|
32
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
33
|
+
end
|
34
|
+
|
35
|
+
# Request message for ListAccounts RPC.
|
36
|
+
# @!attribute [rw] page_size
|
37
|
+
# @return [::Integer]
|
38
|
+
# The maximum number of resources to return. The service may return
|
39
|
+
# fewer than this value, even if there are additional pages.
|
40
|
+
# If unspecified, at most 50 resources will be returned.
|
41
|
+
# The maximum value is 200; (higher values will be coerced to the maximum)
|
42
|
+
# @!attribute [rw] page_token
|
43
|
+
# @return [::String]
|
44
|
+
# A page token, received from a previous `ListAccounts` call.
|
45
|
+
# Provide this to retrieve the subsequent page.
|
46
|
+
# When paginating, all other parameters provided to `ListAccounts` must
|
47
|
+
# match the call that provided the page token.
|
48
|
+
# @!attribute [rw] show_deleted
|
49
|
+
# @return [::Boolean]
|
50
|
+
# Whether to include soft-deleted (ie: "trashed") Accounts in the
|
51
|
+
# results. Accounts can be inspected to determine whether they are deleted or
|
52
|
+
# not.
|
53
|
+
class ListAccountsRequest
|
54
|
+
include ::Google::Protobuf::MessageExts
|
55
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
56
|
+
end
|
57
|
+
|
58
|
+
# Request message for ListAccounts RPC.
|
59
|
+
# @!attribute [rw] accounts
|
60
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::Account>]
|
61
|
+
# Results that were accessible to the caller.
|
62
|
+
# @!attribute [rw] next_page_token
|
63
|
+
# @return [::String]
|
64
|
+
# A token, which can be sent as `page_token` to retrieve the next page.
|
65
|
+
# If this field is omitted, there are no subsequent pages.
|
66
|
+
class ListAccountsResponse
|
67
|
+
include ::Google::Protobuf::MessageExts
|
68
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
69
|
+
end
|
70
|
+
|
71
|
+
# Request message for DeleteAccount RPC.
|
72
|
+
# @!attribute [rw] name
|
73
|
+
# @return [::String]
|
74
|
+
# Required. The name of the Account to soft-delete.
|
75
|
+
# Format: accounts/\\{account}
|
76
|
+
# Example: "accounts/100"
|
77
|
+
class DeleteAccountRequest
|
78
|
+
include ::Google::Protobuf::MessageExts
|
79
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
80
|
+
end
|
81
|
+
|
82
|
+
# Request message for UpdateAccount RPC.
|
83
|
+
# @!attribute [rw] account
|
84
|
+
# @return [::Google::Analytics::Admin::V1alpha::Account]
|
85
|
+
# Required. The account to update.
|
86
|
+
# The account's `name` field is used to identify the account.
|
87
|
+
# @!attribute [rw] update_mask
|
88
|
+
# @return [::Google::Protobuf::FieldMask]
|
89
|
+
# The list of fields to be updated. Omitted fields will not be updated.
|
90
|
+
class UpdateAccountRequest
|
91
|
+
include ::Google::Protobuf::MessageExts
|
92
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
93
|
+
end
|
94
|
+
|
95
|
+
# Request message for ProvisionAccountTicket RPC.
|
96
|
+
# @!attribute [rw] account
|
97
|
+
# @return [::Google::Analytics::Admin::V1alpha::Account]
|
98
|
+
# The account to create.
|
99
|
+
# @!attribute [rw] redirect_uri
|
100
|
+
# @return [::String]
|
101
|
+
# Redirect URI where the user will be sent after accepting Terms of Service.
|
102
|
+
# Must be configured in Developers Console as a Redirect URI
|
103
|
+
class ProvisionAccountTicketRequest
|
104
|
+
include ::Google::Protobuf::MessageExts
|
105
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
106
|
+
end
|
107
|
+
|
108
|
+
# Response message for ProvisionAccountTicket RPC.
|
109
|
+
# @!attribute [rw] account_ticket_id
|
110
|
+
# @return [::String]
|
111
|
+
# The param to be passed in the ToS link.
|
112
|
+
class ProvisionAccountTicketResponse
|
113
|
+
include ::Google::Protobuf::MessageExts
|
114
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
115
|
+
end
|
116
|
+
|
117
|
+
# Request message for GetProperty RPC.
|
118
|
+
# @!attribute [rw] name
|
119
|
+
# @return [::String]
|
120
|
+
# Required. The name of the property to lookup.
|
121
|
+
# Format: properties/\\{property_id}
|
122
|
+
# Example: "properties/1000"
|
123
|
+
class GetPropertyRequest
|
124
|
+
include ::Google::Protobuf::MessageExts
|
125
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
126
|
+
end
|
127
|
+
|
128
|
+
# Request message for ListProperties RPC.
|
129
|
+
# @!attribute [rw] filter
|
130
|
+
# @return [::String]
|
131
|
+
# Required. An expression for filtering the results of the request.
|
132
|
+
# Fields eligible for filtering are:
|
133
|
+
# `parent:`(The resource name of the parent account) or
|
134
|
+
# `firebase_project:`(The id or number of the linked firebase project).
|
135
|
+
# Some examples of filters:
|
136
|
+
#
|
137
|
+
# | Filter | Description |
|
138
|
+
# |-----------------------------|-------------------------------------------|
|
139
|
+
# | parent:accounts/123 | The account with account id: 123. |
|
140
|
+
# | firebase_project:project-id | The firebase project with id: project-id. |
|
141
|
+
# | firebase_project:123 | The firebase project with number: 123. |
|
142
|
+
# @!attribute [rw] page_size
|
143
|
+
# @return [::Integer]
|
144
|
+
# The maximum number of resources to return. The service may return
|
145
|
+
# fewer than this value, even if there are additional pages.
|
146
|
+
# If unspecified, at most 50 resources will be returned.
|
147
|
+
# The maximum value is 200; (higher values will be coerced to the maximum)
|
148
|
+
# @!attribute [rw] page_token
|
149
|
+
# @return [::String]
|
150
|
+
# A page token, received from a previous `ListProperties` call.
|
151
|
+
# Provide this to retrieve the subsequent page.
|
152
|
+
# When paginating, all other parameters provided to `ListProperties` must
|
153
|
+
# match the call that provided the page token.
|
154
|
+
# @!attribute [rw] show_deleted
|
155
|
+
# @return [::Boolean]
|
156
|
+
# Whether to include soft-deleted (ie: "trashed") Properties in the
|
157
|
+
# results. Properties can be inspected to determine whether they are deleted
|
158
|
+
# or not.
|
159
|
+
class ListPropertiesRequest
|
160
|
+
include ::Google::Protobuf::MessageExts
|
161
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
162
|
+
end
|
163
|
+
|
164
|
+
# Response message for ListProperties RPC.
|
165
|
+
# @!attribute [rw] properties
|
166
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::Property>]
|
167
|
+
# Results that matched the filter criteria and were accessible to the caller.
|
168
|
+
# @!attribute [rw] next_page_token
|
169
|
+
# @return [::String]
|
170
|
+
# A token, which can be sent as `page_token` to retrieve the next page.
|
171
|
+
# If this field is omitted, there are no subsequent pages.
|
172
|
+
class ListPropertiesResponse
|
173
|
+
include ::Google::Protobuf::MessageExts
|
174
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
175
|
+
end
|
176
|
+
|
177
|
+
# Request message for UpdateProperty RPC.
|
178
|
+
# @!attribute [rw] property
|
179
|
+
# @return [::Google::Analytics::Admin::V1alpha::Property]
|
180
|
+
# Required. The property to update.
|
181
|
+
# The property's `name` field is used to identify the property to be
|
182
|
+
# updated.
|
183
|
+
# @!attribute [rw] update_mask
|
184
|
+
# @return [::Google::Protobuf::FieldMask]
|
185
|
+
# The list of fields to be updated. Omitted fields will not be updated.
|
186
|
+
class UpdatePropertyRequest
|
187
|
+
include ::Google::Protobuf::MessageExts
|
188
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
189
|
+
end
|
190
|
+
|
191
|
+
# Request message for CreateProperty RPC.
|
192
|
+
# @!attribute [rw] property
|
193
|
+
# @return [::Google::Analytics::Admin::V1alpha::Property]
|
194
|
+
# Required. The property to create.
|
195
|
+
# Note: the supplied property must specify its parent.
|
196
|
+
class CreatePropertyRequest
|
197
|
+
include ::Google::Protobuf::MessageExts
|
198
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
199
|
+
end
|
200
|
+
|
201
|
+
# Request message for DeleteProperty RPC.
|
202
|
+
# @!attribute [rw] name
|
203
|
+
# @return [::String]
|
204
|
+
# Required. The name of the Property to soft-delete.
|
205
|
+
# Format: properties/\\{property_id}
|
206
|
+
# Example: "properties/1000"
|
207
|
+
class DeletePropertyRequest
|
208
|
+
include ::Google::Protobuf::MessageExts
|
209
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
210
|
+
end
|
211
|
+
|
212
|
+
# Request message for GetUserLink RPC.
|
213
|
+
# @!attribute [rw] name
|
214
|
+
# @return [::String]
|
215
|
+
# Required. Example format: accounts/1234/userLinks/5678
|
216
|
+
class GetUserLinkRequest
|
217
|
+
include ::Google::Protobuf::MessageExts
|
218
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
219
|
+
end
|
220
|
+
|
221
|
+
# Request message for BatchGetUserLinks RPC.
|
222
|
+
# @!attribute [rw] parent
|
223
|
+
# @return [::String]
|
224
|
+
# Required. The account or property that all user links in the request are
|
225
|
+
# for. The parent of all provided values for the 'names' field must match
|
226
|
+
# this field.
|
227
|
+
# Example format: accounts/1234
|
228
|
+
# @!attribute [rw] names
|
229
|
+
# @return [::Array<::String>]
|
230
|
+
# Required. The names of the user links to retrieve.
|
231
|
+
# A maximum of 1000 user links can be retrieved in a batch.
|
232
|
+
# Format: accounts/\\{accountId}/userLinks/\\{userLinkId}
|
233
|
+
class BatchGetUserLinksRequest
|
234
|
+
include ::Google::Protobuf::MessageExts
|
235
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
236
|
+
end
|
237
|
+
|
238
|
+
# Response message for BatchGetUserLinks RPC.
|
239
|
+
# @!attribute [rw] user_links
|
240
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::UserLink>]
|
241
|
+
# The requested user links.
|
242
|
+
class BatchGetUserLinksResponse
|
243
|
+
include ::Google::Protobuf::MessageExts
|
244
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
245
|
+
end
|
246
|
+
|
247
|
+
# Request message for ListUserLinks RPC.
|
248
|
+
# @!attribute [rw] parent
|
249
|
+
# @return [::String]
|
250
|
+
# Required. Example format: accounts/1234
|
251
|
+
# @!attribute [rw] page_size
|
252
|
+
# @return [::Integer]
|
253
|
+
# The maximum number of user links to return.
|
254
|
+
# The service may return fewer than this value.
|
255
|
+
# If unspecified, at most 200 user links will be returned.
|
256
|
+
# The maximum value is 500; values above 500 will be coerced to 500.
|
257
|
+
# @!attribute [rw] page_token
|
258
|
+
# @return [::String]
|
259
|
+
# A page token, received from a previous `ListUserLinks` call.
|
260
|
+
# Provide this to retrieve the subsequent page.
|
261
|
+
# When paginating, all other parameters provided to `ListUserLinks` must
|
262
|
+
# match the call that provided the page token.
|
263
|
+
class ListUserLinksRequest
|
264
|
+
include ::Google::Protobuf::MessageExts
|
265
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
266
|
+
end
|
267
|
+
|
268
|
+
# Response message for ListUserLinks RPC.
|
269
|
+
# @!attribute [rw] user_links
|
270
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::UserLink>]
|
271
|
+
# List of UserLinks. These will be ordered stably, but in an arbitrary order.
|
272
|
+
# @!attribute [rw] next_page_token
|
273
|
+
# @return [::String]
|
274
|
+
# A token, which can be sent as `page_token` to retrieve the next page.
|
275
|
+
# If this field is omitted, there are no subsequent pages.
|
276
|
+
class ListUserLinksResponse
|
277
|
+
include ::Google::Protobuf::MessageExts
|
278
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
279
|
+
end
|
280
|
+
|
281
|
+
# Request message for AuditUserLinks RPC.
|
282
|
+
# @!attribute [rw] parent
|
283
|
+
# @return [::String]
|
284
|
+
# Required. Example format: accounts/1234
|
285
|
+
# @!attribute [rw] page_size
|
286
|
+
# @return [::Integer]
|
287
|
+
# The maximum number of user links to return.
|
288
|
+
# The service may return fewer than this value.
|
289
|
+
# If unspecified, at most 1000 user links will be returned.
|
290
|
+
# The maximum value is 5000; values above 5000 will be coerced to 5000.
|
291
|
+
# @!attribute [rw] page_token
|
292
|
+
# @return [::String]
|
293
|
+
# A page token, received from a previous `AuditUserLinks` call.
|
294
|
+
# Provide this to retrieve the subsequent page.
|
295
|
+
# When paginating, all other parameters provided to `AuditUserLinks` must
|
296
|
+
# match the call that provided the page token.
|
297
|
+
class AuditUserLinksRequest
|
298
|
+
include ::Google::Protobuf::MessageExts
|
299
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
300
|
+
end
|
301
|
+
|
302
|
+
# Response message for AuditUserLinks RPC.
|
303
|
+
# @!attribute [rw] user_links
|
304
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::AuditUserLink>]
|
305
|
+
# List of AuditUserLinks. These will be ordered stably, but in an arbitrary
|
306
|
+
# order.
|
307
|
+
# @!attribute [rw] next_page_token
|
308
|
+
# @return [::String]
|
309
|
+
# A token, which can be sent as `page_token` to retrieve the next page.
|
310
|
+
# If this field is omitted, there are no subsequent pages.
|
311
|
+
class AuditUserLinksResponse
|
312
|
+
include ::Google::Protobuf::MessageExts
|
313
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
314
|
+
end
|
315
|
+
|
316
|
+
# Request message for CreateUserLink RPC.
|
317
|
+
#
|
318
|
+
# Users can have multiple email addresses associated with their Google
|
319
|
+
# account, and one of these email addresses is the "primary" email address.
|
320
|
+
# Any of the email addresses associated with a Google account may be used
|
321
|
+
# for a new UserLink, but the returned UserLink will always contain the
|
322
|
+
# "primary" email address. As a result, the input and output email address
|
323
|
+
# for this request may differ.
|
324
|
+
# @!attribute [rw] parent
|
325
|
+
# @return [::String]
|
326
|
+
# Required. Example format: accounts/1234
|
327
|
+
# @!attribute [rw] notify_new_user
|
328
|
+
# @return [::Boolean]
|
329
|
+
# Optional. If notify_new_user is set, then email new user that they've been given
|
330
|
+
# permissions on the resource.
|
331
|
+
# @!attribute [rw] user_link
|
332
|
+
# @return [::Google::Analytics::Admin::V1alpha::UserLink]
|
333
|
+
# Required. The user link to create.
|
334
|
+
class CreateUserLinkRequest
|
335
|
+
include ::Google::Protobuf::MessageExts
|
336
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
337
|
+
end
|
338
|
+
|
339
|
+
# Request message for BatchCreateUserLinks RPC.
|
340
|
+
# @!attribute [rw] parent
|
341
|
+
# @return [::String]
|
342
|
+
# Required. The account or property that all user links in the request are for.
|
343
|
+
# This field is required. The parent field in the CreateUserLinkRequest
|
344
|
+
# messages must either be empty or match this field.
|
345
|
+
# Example format: accounts/1234
|
346
|
+
# @!attribute [rw] notify_new_users
|
347
|
+
# @return [::Boolean]
|
348
|
+
# Optional. If notify_new_users is set, then email new users that they've been given
|
349
|
+
# permissions on the resource.
|
350
|
+
# @!attribute [rw] requests
|
351
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::CreateUserLinkRequest>]
|
352
|
+
# The requests specifying the user links to create.
|
353
|
+
# A maximum of 1000 user links can be created in a batch.
|
354
|
+
class BatchCreateUserLinksRequest
|
355
|
+
include ::Google::Protobuf::MessageExts
|
356
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
357
|
+
end
|
358
|
+
|
359
|
+
# Response message for BatchCreateUserLinks RPC.
|
360
|
+
# @!attribute [rw] user_links
|
361
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::UserLink>]
|
362
|
+
# The user links created.
|
363
|
+
class BatchCreateUserLinksResponse
|
364
|
+
include ::Google::Protobuf::MessageExts
|
365
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
366
|
+
end
|
367
|
+
|
368
|
+
# Request message for UpdateUserLink RPC.
|
369
|
+
# @!attribute [rw] user_link
|
370
|
+
# @return [::Google::Analytics::Admin::V1alpha::UserLink]
|
371
|
+
# Required. The user link to update.
|
372
|
+
class UpdateUserLinkRequest
|
373
|
+
include ::Google::Protobuf::MessageExts
|
374
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
375
|
+
end
|
376
|
+
|
377
|
+
# Request message for BatchUpdateUserLinks RPC.
|
378
|
+
# @!attribute [rw] parent
|
379
|
+
# @return [::String]
|
380
|
+
# Required. The account or property that all user links in the request are
|
381
|
+
# for. The parent field in the UpdateUserLinkRequest messages must either be
|
382
|
+
# empty or match this field.
|
383
|
+
# Example format: accounts/1234
|
384
|
+
# @!attribute [rw] requests
|
385
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::UpdateUserLinkRequest>]
|
386
|
+
# The requests specifying the user links to update.
|
387
|
+
# A maximum of 1000 user links can be updated in a batch.
|
388
|
+
class BatchUpdateUserLinksRequest
|
389
|
+
include ::Google::Protobuf::MessageExts
|
390
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
391
|
+
end
|
392
|
+
|
393
|
+
# Response message for BatchUpdateUserLinks RPC.
|
394
|
+
# @!attribute [rw] user_links
|
395
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::UserLink>]
|
396
|
+
# The user links updated.
|
397
|
+
class BatchUpdateUserLinksResponse
|
398
|
+
include ::Google::Protobuf::MessageExts
|
399
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
400
|
+
end
|
401
|
+
|
402
|
+
# Request message for DeleteUserLink RPC.
|
403
|
+
# @!attribute [rw] name
|
404
|
+
# @return [::String]
|
405
|
+
# Required. Example format: accounts/1234/userLinks/5678
|
406
|
+
class DeleteUserLinkRequest
|
407
|
+
include ::Google::Protobuf::MessageExts
|
408
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
409
|
+
end
|
410
|
+
|
411
|
+
# Request message for BatchDeleteUserLinks RPC.
|
412
|
+
# @!attribute [rw] parent
|
413
|
+
# @return [::String]
|
414
|
+
# Required. The account or property that all user links in the request are
|
415
|
+
# for. The parent of all values for user link names to delete must match this
|
416
|
+
# field.
|
417
|
+
# Example format: accounts/1234
|
418
|
+
# @!attribute [rw] requests
|
419
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::DeleteUserLinkRequest>]
|
420
|
+
# The requests specifying the user links to update.
|
421
|
+
# A maximum of 1000 user links can be updated in a batch.
|
422
|
+
class BatchDeleteUserLinksRequest
|
423
|
+
include ::Google::Protobuf::MessageExts
|
424
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
425
|
+
end
|
426
|
+
|
427
|
+
# Request message for GetWebDataStream RPC.
|
428
|
+
# @!attribute [rw] name
|
429
|
+
# @return [::String]
|
430
|
+
# Required. The name of the web data stream to lookup.
|
431
|
+
# Format: properties/\\{property_id}/webDataStreams/\\{stream_id}
|
432
|
+
# Example: "properties/123/webDataStreams/456"
|
433
|
+
class GetWebDataStreamRequest
|
434
|
+
include ::Google::Protobuf::MessageExts
|
435
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
436
|
+
end
|
437
|
+
|
438
|
+
# Request message for DeleteWebDataStream RPC.
|
439
|
+
# @!attribute [rw] name
|
440
|
+
# @return [::String]
|
441
|
+
# Required. The name of the web data stream to delete.
|
442
|
+
# Format: properties/\\{property_id}/webDataStreams/\\{stream_id}
|
443
|
+
# Example: "properties/123/webDataStreams/456"
|
444
|
+
class DeleteWebDataStreamRequest
|
445
|
+
include ::Google::Protobuf::MessageExts
|
446
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
447
|
+
end
|
448
|
+
|
449
|
+
# Request message for UpdateWebDataStream RPC.
|
450
|
+
# @!attribute [rw] web_data_stream
|
451
|
+
# @return [::Google::Analytics::Admin::V1alpha::WebDataStream]
|
452
|
+
# Required. The web stream to update.
|
453
|
+
# The `name` field is used to identify the web stream to be updated.
|
454
|
+
# @!attribute [rw] update_mask
|
455
|
+
# @return [::Google::Protobuf::FieldMask]
|
456
|
+
# The list of fields to be updated. Omitted fields will not be updated.
|
457
|
+
class UpdateWebDataStreamRequest
|
458
|
+
include ::Google::Protobuf::MessageExts
|
459
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
460
|
+
end
|
461
|
+
|
462
|
+
# Request message for CreateWebDataStream RPC.
|
463
|
+
# @!attribute [rw] web_data_stream
|
464
|
+
# @return [::Google::Analytics::Admin::V1alpha::WebDataStream]
|
465
|
+
# Required. The web stream to create.
|
466
|
+
# @!attribute [rw] parent
|
467
|
+
# @return [::String]
|
468
|
+
# Required. The parent resource where this web data stream will be created.
|
469
|
+
# Format: properties/123
|
470
|
+
class CreateWebDataStreamRequest
|
471
|
+
include ::Google::Protobuf::MessageExts
|
472
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
473
|
+
end
|
474
|
+
|
475
|
+
# Request message for ListWebDataStreams RPC.
|
476
|
+
# @!attribute [rw] parent
|
477
|
+
# @return [::String]
|
478
|
+
# Required. The name of the parent property.
|
479
|
+
# For example, to list results of web streams under the property with Id
|
480
|
+
# 123: "properties/123"
|
481
|
+
# @!attribute [rw] page_size
|
482
|
+
# @return [::Integer]
|
483
|
+
# The maximum number of resources to return.
|
484
|
+
# If unspecified, at most 50 resources will be returned.
|
485
|
+
# The maximum value is 200; (higher values will be coerced to the maximum)
|
486
|
+
# @!attribute [rw] page_token
|
487
|
+
# @return [::String]
|
488
|
+
# A page token, received from a previous `ListWebDataStreams` call.
|
489
|
+
# Provide this to retrieve the subsequent page.
|
490
|
+
# When paginating, all other parameters provided to `ListWebDataStreams` must
|
491
|
+
# match the call that provided the page token.
|
492
|
+
class ListWebDataStreamsRequest
|
493
|
+
include ::Google::Protobuf::MessageExts
|
494
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
495
|
+
end
|
496
|
+
|
497
|
+
# Request message for ListWebDataStreams RPC.
|
498
|
+
# @!attribute [rw] web_data_streams
|
499
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::WebDataStream>]
|
500
|
+
# Results that matched the filter criteria and were accessible to the caller.
|
501
|
+
# @!attribute [rw] next_page_token
|
502
|
+
# @return [::String]
|
503
|
+
# A token, which can be sent as `page_token` to retrieve the next page.
|
504
|
+
# If this field is omitted, there are no subsequent pages.
|
505
|
+
class ListWebDataStreamsResponse
|
506
|
+
include ::Google::Protobuf::MessageExts
|
507
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
508
|
+
end
|
509
|
+
|
510
|
+
# Request message for GetIosAppDataStream RPC.
|
511
|
+
# @!attribute [rw] name
|
512
|
+
# @return [::String]
|
513
|
+
# Required. The name of the iOS app data stream to lookup.
|
514
|
+
# Format: properties/\\{property_id}/iosAppDataStreams/\\{stream_id}
|
515
|
+
# Example: "properties/123/iosAppDataStreams/456"
|
516
|
+
class GetIosAppDataStreamRequest
|
517
|
+
include ::Google::Protobuf::MessageExts
|
518
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
519
|
+
end
|
520
|
+
|
521
|
+
# Request message for DeleteIosAppDataStream RPC.
|
522
|
+
# @!attribute [rw] name
|
523
|
+
# @return [::String]
|
524
|
+
# Required. The name of the iOS app data stream to delete.
|
525
|
+
# Format: properties/\\{property_id}/iosAppDataStreams/\\{stream_id}
|
526
|
+
# Example: "properties/123/iosAppDataStreams/456"
|
527
|
+
class DeleteIosAppDataStreamRequest
|
528
|
+
include ::Google::Protobuf::MessageExts
|
529
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
530
|
+
end
|
531
|
+
|
532
|
+
# Request message for UpdateIosAppDataStream RPC.
|
533
|
+
# @!attribute [rw] ios_app_data_stream
|
534
|
+
# @return [::Google::Analytics::Admin::V1alpha::IosAppDataStream]
|
535
|
+
# Required. The iOS app stream to update.
|
536
|
+
# The `name` field is used to identify the iOS app stream to be updated.
|
537
|
+
# @!attribute [rw] update_mask
|
538
|
+
# @return [::Google::Protobuf::FieldMask]
|
539
|
+
# The list of fields to be updated. Omitted fields will not be updated.
|
540
|
+
class UpdateIosAppDataStreamRequest
|
541
|
+
include ::Google::Protobuf::MessageExts
|
542
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
543
|
+
end
|
544
|
+
|
545
|
+
# Request message for CreateIosAppDataStream RPC.
|
546
|
+
# @!attribute [rw] ios_app_data_stream
|
547
|
+
# @return [::Google::Analytics::Admin::V1alpha::IosAppDataStream]
|
548
|
+
# Required. The iOS app data stream to create.
|
549
|
+
# @!attribute [rw] parent
|
550
|
+
# @return [::String]
|
551
|
+
# Required. The parent resource where this ios app data stream will be created.
|
552
|
+
# Format: properties/123
|
553
|
+
class CreateIosAppDataStreamRequest
|
554
|
+
include ::Google::Protobuf::MessageExts
|
555
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
556
|
+
end
|
557
|
+
|
558
|
+
# Request message for ListIosAppDataStreams RPC.
|
559
|
+
# @!attribute [rw] parent
|
560
|
+
# @return [::String]
|
561
|
+
# Required. The name of the parent property.
|
562
|
+
# For example, to list results of app streams under the property with Id
|
563
|
+
# 123: "properties/123"
|
564
|
+
# @!attribute [rw] page_size
|
565
|
+
# @return [::Integer]
|
566
|
+
# The maximum number of resources to return.
|
567
|
+
# If unspecified, at most 50 resources will be returned.
|
568
|
+
# The maximum value is 200; (higher values will be coerced to the maximum)
|
569
|
+
# @!attribute [rw] page_token
|
570
|
+
# @return [::String]
|
571
|
+
# A page token, received from a previous `ListIosAppDataStreams`
|
572
|
+
# call. Provide this to retrieve the subsequent page.
|
573
|
+
# When paginating, all other parameters provided to `ListIosAppDataStreams`
|
574
|
+
# must match the call that provided the page token.
|
575
|
+
class ListIosAppDataStreamsRequest
|
576
|
+
include ::Google::Protobuf::MessageExts
|
577
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
578
|
+
end
|
579
|
+
|
580
|
+
# Request message for ListIosAppDataStreams RPC.
|
581
|
+
# @!attribute [rw] ios_app_data_streams
|
582
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::IosAppDataStream>]
|
583
|
+
# Results that matched the filter criteria and were accessible to the caller.
|
584
|
+
# @!attribute [rw] next_page_token
|
585
|
+
# @return [::String]
|
586
|
+
# A token, which can be sent as `page_token` to retrieve the next page.
|
587
|
+
# If this field is omitted, there are no subsequent pages.
|
588
|
+
class ListIosAppDataStreamsResponse
|
589
|
+
include ::Google::Protobuf::MessageExts
|
590
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
591
|
+
end
|
592
|
+
|
593
|
+
# Request message for GetAndroidAppDataStream RPC.
|
594
|
+
# @!attribute [rw] name
|
595
|
+
# @return [::String]
|
596
|
+
# Required. The name of the android app data stream to lookup.
|
597
|
+
# Format: properties/\\{property_id}/androidAppDataStreams/\\{stream_id}
|
598
|
+
# Example: "properties/123/androidAppDataStreams/456"
|
599
|
+
class GetAndroidAppDataStreamRequest
|
600
|
+
include ::Google::Protobuf::MessageExts
|
601
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
602
|
+
end
|
603
|
+
|
604
|
+
# Request message for DeleteAndroidAppDataStream RPC.
|
605
|
+
# @!attribute [rw] name
|
606
|
+
# @return [::String]
|
607
|
+
# Required. The name of the android app data stream to delete.
|
608
|
+
# Format: properties/\\{property_id}/androidAppDataStreams/\\{stream_id}
|
609
|
+
# Example: "properties/123/androidAppDataStreams/456"
|
610
|
+
class DeleteAndroidAppDataStreamRequest
|
611
|
+
include ::Google::Protobuf::MessageExts
|
612
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
613
|
+
end
|
614
|
+
|
615
|
+
# Request message for UpdateAndroidAppDataStream RPC.
|
616
|
+
# @!attribute [rw] android_app_data_stream
|
617
|
+
# @return [::Google::Analytics::Admin::V1alpha::AndroidAppDataStream]
|
618
|
+
# Required. The android app stream to update.
|
619
|
+
# The `name` field is used to identify the android app stream to be updated.
|
620
|
+
# @!attribute [rw] update_mask
|
621
|
+
# @return [::Google::Protobuf::FieldMask]
|
622
|
+
# The list of fields to be updated. Omitted fields will not be updated.
|
623
|
+
class UpdateAndroidAppDataStreamRequest
|
624
|
+
include ::Google::Protobuf::MessageExts
|
625
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
626
|
+
end
|
627
|
+
|
628
|
+
# Request message for CreateAndroidAppDataStream RPC.
|
629
|
+
# @!attribute [rw] android_app_data_stream
|
630
|
+
# @return [::Google::Analytics::Admin::V1alpha::AndroidAppDataStream]
|
631
|
+
# Required. The android app stream to create.
|
632
|
+
# @!attribute [rw] parent
|
633
|
+
# @return [::String]
|
634
|
+
# Required. The parent resource where this android app data stream will be created.
|
635
|
+
# Format: properties/123
|
636
|
+
class CreateAndroidAppDataStreamRequest
|
637
|
+
include ::Google::Protobuf::MessageExts
|
638
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
639
|
+
end
|
640
|
+
|
641
|
+
# Request message for ListAndroidAppDataStreams RPC.
|
642
|
+
# @!attribute [rw] parent
|
643
|
+
# @return [::String]
|
644
|
+
# Required. The name of the parent property.
|
645
|
+
# For example, to limit results to app streams under the property with Id
|
646
|
+
# 123: "properties/123"
|
647
|
+
# @!attribute [rw] page_size
|
648
|
+
# @return [::Integer]
|
649
|
+
# The maximum number of resources to return.
|
650
|
+
#
|
651
|
+
# If unspecified, at most 50 resources will be returned.
|
652
|
+
# The maximum value is 200; (higher values will be coerced to the maximum)
|
653
|
+
# @!attribute [rw] page_token
|
654
|
+
# @return [::String]
|
655
|
+
# A page token, received from a previous call. Provide this to
|
656
|
+
# retrieve the subsequent page.
|
657
|
+
# When paginating, all other parameters provided to
|
658
|
+
# `ListAndroidAppDataStreams` must match the call that provided the page
|
659
|
+
# token.
|
660
|
+
class ListAndroidAppDataStreamsRequest
|
661
|
+
include ::Google::Protobuf::MessageExts
|
662
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
663
|
+
end
|
664
|
+
|
665
|
+
# Request message for ListAndroidDataStreams RPC.
|
666
|
+
# @!attribute [rw] android_app_data_streams
|
667
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::AndroidAppDataStream>]
|
668
|
+
# Results that matched the filter criteria and were accessible to the caller.
|
669
|
+
# @!attribute [rw] next_page_token
|
670
|
+
# @return [::String]
|
671
|
+
# A token, which can be sent as `page_token` to retrieve the next page.
|
672
|
+
# If this field is omitted, there are no subsequent pages.
|
673
|
+
class ListAndroidAppDataStreamsResponse
|
674
|
+
include ::Google::Protobuf::MessageExts
|
675
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
676
|
+
end
|
677
|
+
|
678
|
+
# Request message for GetEnhancedMeasurementSettings RPC.
|
679
|
+
# @!attribute [rw] name
|
680
|
+
# @return [::String]
|
681
|
+
# Required. The name of the settings to lookup.
|
682
|
+
# Format:
|
683
|
+
# properties/\\{property_id}/webDataStreams/\\{stream_id}/enhancedMeasurementSettings
|
684
|
+
# Example: "properties/1000/webDataStreams/2000/enhancedMeasurementSettings"
|
685
|
+
class GetEnhancedMeasurementSettingsRequest
|
686
|
+
include ::Google::Protobuf::MessageExts
|
687
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
688
|
+
end
|
689
|
+
|
690
|
+
# Request message for UpdateEnhancedMeasurementSettings RPC.
|
691
|
+
# @!attribute [rw] enhanced_measurement_settings
|
692
|
+
# @return [::Google::Analytics::Admin::V1alpha::EnhancedMeasurementSettings]
|
693
|
+
# Required. The settings to update.
|
694
|
+
# The `name` field is used to identify the settings to be updated.
|
695
|
+
# @!attribute [rw] update_mask
|
696
|
+
# @return [::Google::Protobuf::FieldMask]
|
697
|
+
# The list of fields to be updated. Omitted fields will not be updated.
|
698
|
+
class UpdateEnhancedMeasurementSettingsRequest
|
699
|
+
include ::Google::Protobuf::MessageExts
|
700
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
701
|
+
end
|
702
|
+
|
703
|
+
# Request message for CreateFirebaseLink RPC
|
704
|
+
# @!attribute [rw] parent
|
705
|
+
# @return [::String]
|
706
|
+
# Required. Format: properties/\\{property_id}
|
707
|
+
# Example: properties/1234
|
708
|
+
# @!attribute [rw] firebase_link
|
709
|
+
# @return [::Google::Analytics::Admin::V1alpha::FirebaseLink]
|
710
|
+
# Required. The Firebase link to create.
|
711
|
+
class CreateFirebaseLinkRequest
|
712
|
+
include ::Google::Protobuf::MessageExts
|
713
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
714
|
+
end
|
715
|
+
|
716
|
+
# Request message for UpdateFirebaseLink RPC
|
717
|
+
# @!attribute [rw] firebase_link
|
718
|
+
# @return [::Google::Analytics::Admin::V1alpha::FirebaseLink]
|
719
|
+
# Required. The Firebase link to update.
|
720
|
+
# @!attribute [rw] update_mask
|
721
|
+
# @return [::Google::Protobuf::FieldMask]
|
722
|
+
# The list of fields to be updated. Omitted fields will not be updated.
|
723
|
+
class UpdateFirebaseLinkRequest
|
724
|
+
include ::Google::Protobuf::MessageExts
|
725
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
726
|
+
end
|
727
|
+
|
728
|
+
# Request message for DeleteFirebaseLink RPC
|
729
|
+
# @!attribute [rw] name
|
730
|
+
# @return [::String]
|
731
|
+
# Required. Format: properties/\\{property_id}/firebaseLinks/\\{firebase_link_id}
|
732
|
+
# Example: properties/1234/firebaseLinks/5678
|
733
|
+
class DeleteFirebaseLinkRequest
|
734
|
+
include ::Google::Protobuf::MessageExts
|
735
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
736
|
+
end
|
737
|
+
|
738
|
+
# Request message for ListFirebaseLinks RPC
|
739
|
+
# @!attribute [rw] parent
|
740
|
+
# @return [::String]
|
741
|
+
# Required. Format: properties/\\{property_id}
|
742
|
+
# Example: properties/1234
|
743
|
+
class ListFirebaseLinksRequest
|
744
|
+
include ::Google::Protobuf::MessageExts
|
745
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
746
|
+
end
|
747
|
+
|
748
|
+
# Response message for ListFirebaseLinks RPC
|
749
|
+
# @!attribute [rw] firebase_links
|
750
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::FirebaseLink>]
|
751
|
+
# List of FirebaseLinks. This will have at most one value.
|
752
|
+
class ListFirebaseLinksResponse
|
753
|
+
include ::Google::Protobuf::MessageExts
|
754
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
755
|
+
end
|
756
|
+
|
757
|
+
# Request message for GetGlobalSiteTag RPC.
|
758
|
+
# @!attribute [rw] name
|
759
|
+
# @return [::String]
|
760
|
+
# Required. The name of the site tag to lookup.
|
761
|
+
# Note that site tags are singletons and do not have unique IDs.
|
762
|
+
# Format: properties/\\{property_id}/webDataStreams/\\{stream_id}/globalSiteTag
|
763
|
+
# Example: "properties/123/webDataStreams/456/globalSiteTag"
|
764
|
+
class GetGlobalSiteTagRequest
|
765
|
+
include ::Google::Protobuf::MessageExts
|
766
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
767
|
+
end
|
768
|
+
|
769
|
+
# Request message for CreateGoogleAdsLink RPC
|
770
|
+
# @!attribute [rw] parent
|
771
|
+
# @return [::String]
|
772
|
+
# Required. Example format: properties/1234
|
773
|
+
# @!attribute [rw] google_ads_link
|
774
|
+
# @return [::Google::Analytics::Admin::V1alpha::GoogleAdsLink]
|
775
|
+
# Required. The GoogleAdsLink to create.
|
776
|
+
class CreateGoogleAdsLinkRequest
|
777
|
+
include ::Google::Protobuf::MessageExts
|
778
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
779
|
+
end
|
780
|
+
|
781
|
+
# Request message for UpdateGoogleAdsLink RPC
|
782
|
+
# @!attribute [rw] google_ads_link
|
783
|
+
# @return [::Google::Analytics::Admin::V1alpha::GoogleAdsLink]
|
784
|
+
# The GoogleAdsLink to update
|
785
|
+
# @!attribute [rw] update_mask
|
786
|
+
# @return [::Google::Protobuf::FieldMask]
|
787
|
+
# The list of fields to be updated. Omitted fields will not be updated.
|
788
|
+
class UpdateGoogleAdsLinkRequest
|
789
|
+
include ::Google::Protobuf::MessageExts
|
790
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
791
|
+
end
|
792
|
+
|
793
|
+
# Request message for DeleteGoogleAdsLink RPC.
|
794
|
+
# @!attribute [rw] name
|
795
|
+
# @return [::String]
|
796
|
+
# Required. Example format: properties/1234/googleAdsLinks/5678
|
797
|
+
class DeleteGoogleAdsLinkRequest
|
798
|
+
include ::Google::Protobuf::MessageExts
|
799
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
800
|
+
end
|
801
|
+
|
802
|
+
# Request message for ListGoogleAdsLinks RPC.
|
803
|
+
# @!attribute [rw] parent
|
804
|
+
# @return [::String]
|
805
|
+
# Required. Example format: properties/1234
|
806
|
+
# @!attribute [rw] page_size
|
807
|
+
# @return [::Integer]
|
808
|
+
# The maximum number of resources to return.
|
809
|
+
# If unspecified, at most 50 resources will be returned.
|
810
|
+
# The maximum value is 200 (higher values will be coerced to the maximum).
|
811
|
+
# @!attribute [rw] page_token
|
812
|
+
# @return [::String]
|
813
|
+
# A page token, received from a previous `ListGoogleAdsLinks` call.
|
814
|
+
# Provide this to retrieve the subsequent page.
|
815
|
+
#
|
816
|
+
# When paginating, all other parameters provided to `ListGoogleAdsLinks` must
|
817
|
+
# match the call that provided the page token.
|
818
|
+
class ListGoogleAdsLinksRequest
|
819
|
+
include ::Google::Protobuf::MessageExts
|
820
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
821
|
+
end
|
822
|
+
|
823
|
+
# Response message for ListGoogleAdsLinks RPC.
|
824
|
+
# @!attribute [rw] google_ads_links
|
825
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::GoogleAdsLink>]
|
826
|
+
# List of GoogleAdsLinks.
|
827
|
+
# @!attribute [rw] next_page_token
|
828
|
+
# @return [::String]
|
829
|
+
# A token, which can be sent as `page_token` to retrieve the next page.
|
830
|
+
# If this field is omitted, there are no subsequent pages.
|
831
|
+
class ListGoogleAdsLinksResponse
|
832
|
+
include ::Google::Protobuf::MessageExts
|
833
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
834
|
+
end
|
835
|
+
|
836
|
+
# Request message for GetDataSharingSettings RPC.
|
837
|
+
# @!attribute [rw] name
|
838
|
+
# @return [::String]
|
839
|
+
# Required. The name of the settings to lookup.
|
840
|
+
# Format: accounts/\\{account}/dataSharingSettings
|
841
|
+
# Example: "accounts/1000/dataSharingSettings"
|
842
|
+
class GetDataSharingSettingsRequest
|
843
|
+
include ::Google::Protobuf::MessageExts
|
844
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
845
|
+
end
|
846
|
+
end
|
847
|
+
end
|
848
|
+
end
|
849
|
+
end
|