google-analytics-admin-v1alpha 0.8.0 → 0.9.1

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.
@@ -100,6 +100,20 @@ module Google
100
100
  "properties/#{property}/customMetrics"
101
101
  end
102
102
 
103
+ ##
104
+ # Create a fully-qualified DataRetentionSettings resource string.
105
+ #
106
+ # The resource will be in the following format:
107
+ #
108
+ # `properties/{property}/dataRetentionSettings`
109
+ #
110
+ # @param property [String]
111
+ #
112
+ # @return [::String]
113
+ def data_retention_settings_path property:
114
+ "properties/#{property}/dataRetentionSettings"
115
+ end
116
+
103
117
  ##
104
118
  # Create a fully-qualified DataSharingSettings resource string.
105
119
  #
@@ -114,6 +128,40 @@ module Google
114
128
  "accounts/#{account}/dataSharingSettings"
115
129
  end
116
130
 
131
+ ##
132
+ # Create a fully-qualified DisplayVideo360AdvertiserLink resource string.
133
+ #
134
+ # The resource will be in the following format:
135
+ #
136
+ # `properties/{property}/displayVideo360AdvertiserLinks/{display_video_360_advertiser_link}`
137
+ #
138
+ # @param property [String]
139
+ # @param display_video_360_advertiser_link [String]
140
+ #
141
+ # @return [::String]
142
+ def display_video360_advertiser_link_path property:, display_video_360_advertiser_link:
143
+ raise ::ArgumentError, "property cannot contain /" if property.to_s.include? "/"
144
+
145
+ "properties/#{property}/displayVideo360AdvertiserLinks/#{display_video_360_advertiser_link}"
146
+ end
147
+
148
+ ##
149
+ # Create a fully-qualified DisplayVideo360AdvertiserLinkProposal resource string.
150
+ #
151
+ # The resource will be in the following format:
152
+ #
153
+ # `properties/{property}/displayVideo360AdvertiserLinkProposals/{display_video_360_advertiser_link_proposal}`
154
+ #
155
+ # @param property [String]
156
+ # @param display_video_360_advertiser_link_proposal [String]
157
+ #
158
+ # @return [::String]
159
+ def display_video360_advertiser_link_proposal_path property:, display_video_360_advertiser_link_proposal:
160
+ raise ::ArgumentError, "property cannot contain /" if property.to_s.include? "/"
161
+
162
+ "properties/#{property}/displayVideo360AdvertiserLinkProposals/#{display_video_360_advertiser_link_proposal}"
163
+ end
164
+
117
165
  ##
118
166
  # Create a fully-qualified EnhancedMeasurementSettings resource string.
119
167
  #
@@ -166,8 +166,6 @@ module Google
166
166
  #
167
167
  # Properties can have at most one FirebaseLink.
168
168
  rpc :CreateFirebaseLink, ::Google::Analytics::Admin::V1alpha::CreateFirebaseLinkRequest, ::Google::Analytics::Admin::V1alpha::FirebaseLink
169
- # Updates a FirebaseLink on a property
170
- rpc :UpdateFirebaseLink, ::Google::Analytics::Admin::V1alpha::UpdateFirebaseLinkRequest, ::Google::Analytics::Admin::V1alpha::FirebaseLink
171
169
  # Deletes a FirebaseLink on a property
172
170
  rpc :DeleteFirebaseLink, ::Google::Analytics::Admin::V1alpha::DeleteFirebaseLinkRequest, ::Google::Protobuf::Empty
173
171
  # Lists FirebaseLinks on a property.
@@ -215,6 +213,39 @@ module Google
215
213
  #
216
214
  # Returns an empty list if no conversion events are found.
217
215
  rpc :ListConversionEvents, ::Google::Analytics::Admin::V1alpha::ListConversionEventsRequest, ::Google::Analytics::Admin::V1alpha::ListConversionEventsResponse
216
+ # Look up a single DisplayVideo360AdvertiserLink
217
+ rpc :GetDisplayVideo360AdvertiserLink, ::Google::Analytics::Admin::V1alpha::GetDisplayVideo360AdvertiserLinkRequest, ::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLink
218
+ # Lists all DisplayVideo360AdvertiserLinks on a property.
219
+ rpc :ListDisplayVideo360AdvertiserLinks, ::Google::Analytics::Admin::V1alpha::ListDisplayVideo360AdvertiserLinksRequest, ::Google::Analytics::Admin::V1alpha::ListDisplayVideo360AdvertiserLinksResponse
220
+ # Creates a DisplayVideo360AdvertiserLink.
221
+ # This can only be utilized by users who have proper authorization both on
222
+ # the Google Analytics property and on the Display & Video 360 advertiser.
223
+ # Users who do not have access to the Display & Video 360 advertiser should
224
+ # instead seek to create a DisplayVideo360LinkProposal.
225
+ rpc :CreateDisplayVideo360AdvertiserLink, ::Google::Analytics::Admin::V1alpha::CreateDisplayVideo360AdvertiserLinkRequest, ::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLink
226
+ # Deletes a DisplayVideo360AdvertiserLink on a property.
227
+ rpc :DeleteDisplayVideo360AdvertiserLink, ::Google::Analytics::Admin::V1alpha::DeleteDisplayVideo360AdvertiserLinkRequest, ::Google::Protobuf::Empty
228
+ # Updates a DisplayVideo360AdvertiserLink on a property.
229
+ rpc :UpdateDisplayVideo360AdvertiserLink, ::Google::Analytics::Admin::V1alpha::UpdateDisplayVideo360AdvertiserLinkRequest, ::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLink
230
+ # Lookup for a single DisplayVideo360AdvertiserLinkProposal.
231
+ rpc :GetDisplayVideo360AdvertiserLinkProposal, ::Google::Analytics::Admin::V1alpha::GetDisplayVideo360AdvertiserLinkProposalRequest, ::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLinkProposal
232
+ # Lists DisplayVideo360AdvertiserLinkProposals on a property.
233
+ rpc :ListDisplayVideo360AdvertiserLinkProposals, ::Google::Analytics::Admin::V1alpha::ListDisplayVideo360AdvertiserLinkProposalsRequest, ::Google::Analytics::Admin::V1alpha::ListDisplayVideo360AdvertiserLinkProposalsResponse
234
+ # Creates a DisplayVideo360AdvertiserLinkProposal.
235
+ rpc :CreateDisplayVideo360AdvertiserLinkProposal, ::Google::Analytics::Admin::V1alpha::CreateDisplayVideo360AdvertiserLinkProposalRequest, ::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLinkProposal
236
+ # Deletes a DisplayVideo360AdvertiserLinkProposal on a property.
237
+ # This can only be used on cancelled proposals.
238
+ rpc :DeleteDisplayVideo360AdvertiserLinkProposal, ::Google::Analytics::Admin::V1alpha::DeleteDisplayVideo360AdvertiserLinkProposalRequest, ::Google::Protobuf::Empty
239
+ # Approves a DisplayVideo360AdvertiserLinkProposal.
240
+ # The DisplayVideo360AdvertiserLinkProposal will be deleted and a new
241
+ # DisplayVideo360AdvertiserLink will be created.
242
+ rpc :ApproveDisplayVideo360AdvertiserLinkProposal, ::Google::Analytics::Admin::V1alpha::ApproveDisplayVideo360AdvertiserLinkProposalRequest, ::Google::Analytics::Admin::V1alpha::ApproveDisplayVideo360AdvertiserLinkProposalResponse
243
+ # Cancels a DisplayVideo360AdvertiserLinkProposal.
244
+ # Cancelling can mean either:
245
+ # - Declining a proposal initiated from Display & Video 360
246
+ # - Withdrawing a proposal initiated from Google Analytics
247
+ # After being cancelled, a proposal will eventually be deleted automatically.
248
+ rpc :CancelDisplayVideo360AdvertiserLinkProposal, ::Google::Analytics::Admin::V1alpha::CancelDisplayVideo360AdvertiserLinkProposalRequest, ::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLinkProposal
218
249
  # Creates a CustomDimension.
219
250
  rpc :CreateCustomDimension, ::Google::Analytics::Admin::V1alpha::CreateCustomDimensionRequest, ::Google::Analytics::Admin::V1alpha::CustomDimension
220
251
  # Updates a CustomDimension on a property.
@@ -235,6 +266,10 @@ module Google
235
266
  rpc :ArchiveCustomMetric, ::Google::Analytics::Admin::V1alpha::ArchiveCustomMetricRequest, ::Google::Protobuf::Empty
236
267
  # Lookup for a single CustomMetric.
237
268
  rpc :GetCustomMetric, ::Google::Analytics::Admin::V1alpha::GetCustomMetricRequest, ::Google::Analytics::Admin::V1alpha::CustomMetric
269
+ # Returns the singleton data retention settings for this property.
270
+ rpc :GetDataRetentionSettings, ::Google::Analytics::Admin::V1alpha::GetDataRetentionSettingsRequest, ::Google::Analytics::Admin::V1alpha::DataRetentionSettings
271
+ # Updates the singleton data retention settings for this property.
272
+ rpc :UpdateDataRetentionSettings, ::Google::Analytics::Admin::V1alpha::UpdateDataRetentionSettingsRequest, ::Google::Analytics::Admin::V1alpha::DataRetentionSettings
238
273
  end
239
274
 
240
275
  Stub = Service.rpc_stub_class
@@ -1,12 +1,12 @@
1
1
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
2
  # source: google/analytics/admin/v1alpha/resources.proto
3
3
 
4
- require 'google/protobuf'
5
-
6
4
  require 'google/api/field_behavior_pb'
7
5
  require 'google/api/resource_pb'
8
6
  require 'google/protobuf/timestamp_pb'
9
7
  require 'google/protobuf/wrappers_pb'
8
+ require 'google/protobuf'
9
+
10
10
  Google::Protobuf::DescriptorPool.generated_pool.build do
11
11
  add_file("google/analytics/admin/v1alpha/resources.proto", :syntax => :proto3) do
12
12
  add_message "google.analytics.admin.v1alpha.Account" do
@@ -26,6 +26,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
26
26
  optional :industry_category, :enum, 6, "google.analytics.admin.v1alpha.IndustryCategory"
27
27
  optional :time_zone, :string, 7
28
28
  optional :currency_code, :string, 8
29
+ optional :service_level, :enum, 10, "google.analytics.admin.v1alpha.ServiceLevel"
29
30
  optional :delete_time, :message, 11, "google.protobuf.Timestamp"
30
31
  optional :expire_time, :message, 12, "google.protobuf.Timestamp"
31
32
  end
@@ -83,7 +84,6 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
83
84
  optional :name, :string, 1
84
85
  optional :project, :string, 2
85
86
  optional :create_time, :message, 3, "google.protobuf.Timestamp"
86
- optional :maximum_user_access, :enum, 4, "google.analytics.admin.v1alpha.MaximumUserAccess"
87
87
  end
88
88
  add_message "google.analytics.admin.v1alpha.GlobalSiteTag" do
89
89
  optional :name, :string, 1
@@ -94,9 +94,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
94
94
  optional :customer_id, :string, 3
95
95
  optional :can_manage_clients, :bool, 4
96
96
  optional :ads_personalization_enabled, :message, 5, "google.protobuf.BoolValue"
97
- optional :email_address, :string, 6
98
97
  optional :create_time, :message, 7, "google.protobuf.Timestamp"
99
98
  optional :update_time, :message, 8, "google.protobuf.Timestamp"
99
+ optional :creator_email_address, :string, 9
100
100
  end
101
101
  add_message "google.analytics.admin.v1alpha.DataSharingSettings" do
102
102
  optional :name, :string, 1
@@ -145,17 +145,44 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
145
145
  optional :firebase_link, :message, 6, "google.analytics.admin.v1alpha.FirebaseLink"
146
146
  optional :google_ads_link, :message, 7, "google.analytics.admin.v1alpha.GoogleAdsLink"
147
147
  optional :google_signals_settings, :message, 8, "google.analytics.admin.v1alpha.GoogleSignalsSettings"
148
+ optional :display_video_360_advertiser_link, :message, 9, "google.analytics.admin.v1alpha.DisplayVideo360AdvertiserLink"
149
+ optional :display_video_360_advertiser_link_proposal, :message, 10, "google.analytics.admin.v1alpha.DisplayVideo360AdvertiserLinkProposal"
148
150
  optional :conversion_event, :message, 11, "google.analytics.admin.v1alpha.ConversionEvent"
149
151
  optional :measurement_protocol_secret, :message, 12, "google.analytics.admin.v1alpha.MeasurementProtocolSecret"
150
152
  optional :custom_dimension, :message, 13, "google.analytics.admin.v1alpha.CustomDimension"
151
153
  optional :custom_metric, :message, 14, "google.analytics.admin.v1alpha.CustomMetric"
154
+ optional :data_retention_settings, :message, 15, "google.analytics.admin.v1alpha.DataRetentionSettings"
152
155
  end
153
156
  end
157
+ add_message "google.analytics.admin.v1alpha.DisplayVideo360AdvertiserLink" do
158
+ optional :name, :string, 1
159
+ optional :advertiser_id, :string, 2
160
+ optional :advertiser_display_name, :string, 3
161
+ optional :ads_personalization_enabled, :message, 4, "google.protobuf.BoolValue"
162
+ optional :campaign_data_sharing_enabled, :message, 5, "google.protobuf.BoolValue"
163
+ optional :cost_data_sharing_enabled, :message, 6, "google.protobuf.BoolValue"
164
+ end
165
+ add_message "google.analytics.admin.v1alpha.DisplayVideo360AdvertiserLinkProposal" do
166
+ optional :name, :string, 1
167
+ optional :advertiser_id, :string, 2
168
+ optional :link_proposal_status_details, :message, 3, "google.analytics.admin.v1alpha.LinkProposalStatusDetails"
169
+ optional :advertiser_display_name, :string, 4
170
+ optional :validation_email, :string, 5
171
+ optional :ads_personalization_enabled, :message, 6, "google.protobuf.BoolValue"
172
+ optional :campaign_data_sharing_enabled, :message, 7, "google.protobuf.BoolValue"
173
+ optional :cost_data_sharing_enabled, :message, 8, "google.protobuf.BoolValue"
174
+ end
175
+ add_message "google.analytics.admin.v1alpha.LinkProposalStatusDetails" do
176
+ optional :link_proposal_initiating_product, :enum, 1, "google.analytics.admin.v1alpha.LinkProposalInitiatingProduct"
177
+ optional :requestor_email, :string, 2
178
+ optional :link_proposal_state, :enum, 3, "google.analytics.admin.v1alpha.LinkProposalState"
179
+ end
154
180
  add_message "google.analytics.admin.v1alpha.ConversionEvent" do
155
181
  optional :name, :string, 1
156
182
  optional :event_name, :string, 2
157
183
  optional :create_time, :message, 3, "google.protobuf.Timestamp"
158
- optional :is_deletable, :bool, 4
184
+ optional :deletable, :bool, 4
185
+ optional :custom, :bool, 5
159
186
  end
160
187
  add_message "google.analytics.admin.v1alpha.GoogleSignalsSettings" do
161
188
  optional :name, :string, 1
@@ -200,12 +227,18 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
200
227
  value :METRIC_SCOPE_UNSPECIFIED, 0
201
228
  value :EVENT, 1
202
229
  end
203
- add_enum "google.analytics.admin.v1alpha.MaximumUserAccess" do
204
- value :MAXIMUM_USER_ACCESS_UNSPECIFIED, 0
205
- value :NO_ACCESS, 1
206
- value :READ_AND_ANALYZE, 2
207
- value :EDITOR_WITHOUT_LINK_MANAGEMENT, 3
208
- value :EDITOR_INCLUDING_LINK_MANAGEMENT, 4
230
+ add_message "google.analytics.admin.v1alpha.DataRetentionSettings" do
231
+ optional :name, :string, 1
232
+ optional :event_data_retention, :enum, 2, "google.analytics.admin.v1alpha.DataRetentionSettings.RetentionDuration"
233
+ optional :reset_user_data_on_new_activity, :bool, 3
234
+ end
235
+ add_enum "google.analytics.admin.v1alpha.DataRetentionSettings.RetentionDuration" do
236
+ value :RETENTION_DURATION_UNSPECIFIED, 0
237
+ value :TWO_MONTHS, 1
238
+ value :FOURTEEN_MONTHS, 3
239
+ value :TWENTY_SIX_MONTHS, 4
240
+ value :THIRTY_EIGHT_MONTHS, 5
241
+ value :FIFTY_MONTHS, 6
209
242
  end
210
243
  add_enum "google.analytics.admin.v1alpha.IndustryCategory" do
211
244
  value :INDUSTRY_CATEGORY_UNSPECIFIED, 0
@@ -236,6 +269,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
236
269
  value :JOBS_AND_EDUCATION, 25
237
270
  value :SHOPPING, 26
238
271
  end
272
+ add_enum "google.analytics.admin.v1alpha.ServiceLevel" do
273
+ value :SERVICE_LEVEL_UNSPECIFIED, 0
274
+ value :GOOGLE_ANALYTICS_STANDARD, 1
275
+ value :GOOGLE_ANALYTICS_360, 2
276
+ end
239
277
  add_enum "google.analytics.admin.v1alpha.ActorType" do
240
278
  value :ACTOR_TYPE_UNSPECIFIED, 0
241
279
  value :USER, 1
@@ -262,6 +300,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
262
300
  value :MEASUREMENT_PROTOCOL_SECRET, 10
263
301
  value :CUSTOM_DIMENSION, 11
264
302
  value :CUSTOM_METRIC, 12
303
+ value :DATA_RETENTION_SETTINGS, 13
265
304
  end
266
305
  add_enum "google.analytics.admin.v1alpha.GoogleSignalsState" do
267
306
  value :GOOGLE_SIGNALS_STATE_UNSPECIFIED, 0
@@ -273,6 +312,20 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
273
312
  value :GOOGLE_SIGNALS_CONSENT_CONSENTED, 2
274
313
  value :GOOGLE_SIGNALS_CONSENT_NOT_CONSENTED, 1
275
314
  end
315
+ add_enum "google.analytics.admin.v1alpha.LinkProposalInitiatingProduct" do
316
+ value :LINK_PROPOSAL_INITIATING_PRODUCT_UNSPECIFIED, 0
317
+ value :GOOGLE_ANALYTICS, 1
318
+ value :LINKED_PRODUCT, 2
319
+ end
320
+ add_enum "google.analytics.admin.v1alpha.LinkProposalState" do
321
+ value :LINK_PROPOSAL_STATE_UNSPECIFIED, 0
322
+ value :AWAITING_REVIEW_FROM_GOOGLE_ANALYTICS, 1
323
+ value :AWAITING_REVIEW_FROM_LINKED_PRODUCT, 2
324
+ value :WITHDRAWN, 3
325
+ value :DECLINED, 4
326
+ value :EXPIRED, 5
327
+ value :OBSOLETE, 6
328
+ end
276
329
  end
277
330
  end
278
331
 
@@ -298,6 +351,9 @@ module Google
298
351
  ChangeHistoryEvent = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.ChangeHistoryEvent").msgclass
299
352
  ChangeHistoryChange = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.ChangeHistoryChange").msgclass
300
353
  ChangeHistoryChange::ChangeHistoryResource = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.ChangeHistoryChange.ChangeHistoryResource").msgclass
354
+ DisplayVideo360AdvertiserLink = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.DisplayVideo360AdvertiserLink").msgclass
355
+ DisplayVideo360AdvertiserLinkProposal = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.DisplayVideo360AdvertiserLinkProposal").msgclass
356
+ LinkProposalStatusDetails = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.LinkProposalStatusDetails").msgclass
301
357
  ConversionEvent = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.ConversionEvent").msgclass
302
358
  GoogleSignalsSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.GoogleSignalsSettings").msgclass
303
359
  CustomDimension = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.CustomDimension").msgclass
@@ -305,13 +361,17 @@ module Google
305
361
  CustomMetric = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.CustomMetric").msgclass
306
362
  CustomMetric::MeasurementUnit = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.CustomMetric.MeasurementUnit").enummodule
307
363
  CustomMetric::MetricScope = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.CustomMetric.MetricScope").enummodule
308
- MaximumUserAccess = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.MaximumUserAccess").enummodule
364
+ DataRetentionSettings = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.DataRetentionSettings").msgclass
365
+ DataRetentionSettings::RetentionDuration = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.DataRetentionSettings.RetentionDuration").enummodule
309
366
  IndustryCategory = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.IndustryCategory").enummodule
367
+ ServiceLevel = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.ServiceLevel").enummodule
310
368
  ActorType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.ActorType").enummodule
311
369
  ActionType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.ActionType").enummodule
312
370
  ChangeHistoryResourceType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.ChangeHistoryResourceType").enummodule
313
371
  GoogleSignalsState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.GoogleSignalsState").enummodule
314
372
  GoogleSignalsConsent = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.GoogleSignalsConsent").enummodule
373
+ LinkProposalInitiatingProduct = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.LinkProposalInitiatingProduct").enummodule
374
+ LinkProposalState = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.analytics.admin.v1alpha.LinkProposalState").enummodule
315
375
  end
316
376
  end
317
377
  end
@@ -21,7 +21,7 @@ module Google
21
21
  module Analytics
22
22
  module Admin
23
23
  module V1alpha
24
- VERSION = "0.8.0"
24
+ VERSION = "0.9.1"
25
25
  end
26
26
  end
27
27
  end
@@ -702,20 +702,6 @@ module Google
702
702
  extend ::Google::Protobuf::MessageExts::ClassMethods
703
703
  end
704
704
 
705
- # Request message for UpdateFirebaseLink RPC
706
- # @!attribute [rw] firebase_link
707
- # @return [::Google::Analytics::Admin::V1alpha::FirebaseLink]
708
- # Required. The Firebase link to update.
709
- # @!attribute [rw] update_mask
710
- # @return [::Google::Protobuf::FieldMask]
711
- # Required. The list of fields to be updated. Field names must be in snake case
712
- # (e.g., "field_to_update"). Omitted fields will not be updated. To replace
713
- # the entire entity, use one path with the string "*" to match all fields.
714
- class UpdateFirebaseLinkRequest
715
- include ::Google::Protobuf::MessageExts
716
- extend ::Google::Protobuf::MessageExts::ClassMethods
717
- end
718
-
719
705
  # Request message for DeleteFirebaseLink RPC
720
706
  # @!attribute [rw] name
721
707
  # @return [::String]
@@ -1125,6 +1111,185 @@ module Google
1125
1111
  extend ::Google::Protobuf::MessageExts::ClassMethods
1126
1112
  end
1127
1113
 
1114
+ # Request message for GetDisplayVideo360AdvertiserLink RPC.
1115
+ # @!attribute [rw] name
1116
+ # @return [::String]
1117
+ # Required. The name of the DisplayVideo360AdvertiserLink to get.
1118
+ # Example format: properties/1234/displayVideo360AdvertiserLink/5678
1119
+ class GetDisplayVideo360AdvertiserLinkRequest
1120
+ include ::Google::Protobuf::MessageExts
1121
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1122
+ end
1123
+
1124
+ # Request message for ListDisplayVideo360AdvertiserLinks RPC.
1125
+ # @!attribute [rw] parent
1126
+ # @return [::String]
1127
+ # Required. Example format: properties/1234
1128
+ # @!attribute [rw] page_size
1129
+ # @return [::Integer]
1130
+ # The maximum number of resources to return.
1131
+ # If unspecified, at most 50 resources will be returned.
1132
+ # The maximum value is 200 (higher values will be coerced to the maximum).
1133
+ # @!attribute [rw] page_token
1134
+ # @return [::String]
1135
+ # A page token, received from a previous `ListDisplayVideo360AdvertiserLinks`
1136
+ # call. Provide this to retrieve the subsequent page.
1137
+ #
1138
+ # When paginating, all other parameters provided to
1139
+ # `ListDisplayVideo360AdvertiserLinks` must match the call that provided the
1140
+ # page token.
1141
+ class ListDisplayVideo360AdvertiserLinksRequest
1142
+ include ::Google::Protobuf::MessageExts
1143
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1144
+ end
1145
+
1146
+ # Response message for ListDisplayVideo360AdvertiserLinks RPC.
1147
+ # @!attribute [rw] display_video_360_advertiser_links
1148
+ # @return [::Array<::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLink>]
1149
+ # List of DisplayVideo360AdvertiserLinks.
1150
+ # @!attribute [rw] next_page_token
1151
+ # @return [::String]
1152
+ # A token, which can be sent as `page_token` to retrieve the next page.
1153
+ # If this field is omitted, there are no subsequent pages.
1154
+ class ListDisplayVideo360AdvertiserLinksResponse
1155
+ include ::Google::Protobuf::MessageExts
1156
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1157
+ end
1158
+
1159
+ # Request message for CreateDisplayVideo360AdvertiserLink RPC.
1160
+ # @!attribute [rw] parent
1161
+ # @return [::String]
1162
+ # Required. Example format: properties/1234
1163
+ # @!attribute [rw] display_video_360_advertiser_link
1164
+ # @return [::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLink]
1165
+ # Required. The DisplayVideo360AdvertiserLink to create.
1166
+ class CreateDisplayVideo360AdvertiserLinkRequest
1167
+ include ::Google::Protobuf::MessageExts
1168
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1169
+ end
1170
+
1171
+ # Request message for DeleteDisplayVideo360AdvertiserLink RPC.
1172
+ # @!attribute [rw] name
1173
+ # @return [::String]
1174
+ # Required. The name of the DisplayVideo360AdvertiserLink to delete.
1175
+ # Example format: properties/1234/displayVideo360AdvertiserLinks/5678
1176
+ class DeleteDisplayVideo360AdvertiserLinkRequest
1177
+ include ::Google::Protobuf::MessageExts
1178
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1179
+ end
1180
+
1181
+ # Request message for UpdateDisplayVideo360AdvertiserLink RPC.
1182
+ # @!attribute [rw] display_video_360_advertiser_link
1183
+ # @return [::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLink]
1184
+ # The DisplayVideo360AdvertiserLink to update
1185
+ # @!attribute [rw] update_mask
1186
+ # @return [::Google::Protobuf::FieldMask]
1187
+ # Required. The list of fields to be updated. Omitted fields will not be updated.
1188
+ # To replace the entire entity, use one path with the string "*" to match
1189
+ # all fields.
1190
+ class UpdateDisplayVideo360AdvertiserLinkRequest
1191
+ include ::Google::Protobuf::MessageExts
1192
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1193
+ end
1194
+
1195
+ # Request message for GetDisplayVideo360AdvertiserLinkProposal RPC.
1196
+ # @!attribute [rw] name
1197
+ # @return [::String]
1198
+ # Required. The name of the DisplayVideo360AdvertiserLinkProposal to get.
1199
+ # Example format: properties/1234/displayVideo360AdvertiserLinkProposals/5678
1200
+ class GetDisplayVideo360AdvertiserLinkProposalRequest
1201
+ include ::Google::Protobuf::MessageExts
1202
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1203
+ end
1204
+
1205
+ # Request message for ListDisplayVideo360AdvertiserLinkProposals RPC.
1206
+ # @!attribute [rw] parent
1207
+ # @return [::String]
1208
+ # Required. Example format: properties/1234
1209
+ # @!attribute [rw] page_size
1210
+ # @return [::Integer]
1211
+ # The maximum number of resources to return.
1212
+ # If unspecified, at most 50 resources will be returned.
1213
+ # The maximum value is 200 (higher values will be coerced to the maximum).
1214
+ # @!attribute [rw] page_token
1215
+ # @return [::String]
1216
+ # A page token, received from a previous
1217
+ # `ListDisplayVideo360AdvertiserLinkProposals` call. Provide this to retrieve
1218
+ # the subsequent page.
1219
+ #
1220
+ # When paginating, all other parameters provided to
1221
+ # `ListDisplayVideo360AdvertiserLinkProposals` must match the call that
1222
+ # provided the page token.
1223
+ class ListDisplayVideo360AdvertiserLinkProposalsRequest
1224
+ include ::Google::Protobuf::MessageExts
1225
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1226
+ end
1227
+
1228
+ # Response message for ListDisplayVideo360AdvertiserLinkProposals RPC.
1229
+ # @!attribute [rw] display_video_360_advertiser_link_proposals
1230
+ # @return [::Array<::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLinkProposal>]
1231
+ # List of DisplayVideo360AdvertiserLinkProposals.
1232
+ # @!attribute [rw] next_page_token
1233
+ # @return [::String]
1234
+ # A token, which can be sent as `page_token` to retrieve the next page.
1235
+ # If this field is omitted, there are no subsequent pages.
1236
+ class ListDisplayVideo360AdvertiserLinkProposalsResponse
1237
+ include ::Google::Protobuf::MessageExts
1238
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1239
+ end
1240
+
1241
+ # Request message for CreateDisplayVideo360AdvertiserLinkProposal RPC.
1242
+ # @!attribute [rw] parent
1243
+ # @return [::String]
1244
+ # Required. Example format: properties/1234
1245
+ # @!attribute [rw] display_video_360_advertiser_link_proposal
1246
+ # @return [::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLinkProposal]
1247
+ # Required. The DisplayVideo360AdvertiserLinkProposal to create.
1248
+ class CreateDisplayVideo360AdvertiserLinkProposalRequest
1249
+ include ::Google::Protobuf::MessageExts
1250
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1251
+ end
1252
+
1253
+ # Request message for DeleteDisplayVideo360AdvertiserLinkProposal RPC.
1254
+ # @!attribute [rw] name
1255
+ # @return [::String]
1256
+ # Required. The name of the DisplayVideo360AdvertiserLinkProposal to delete.
1257
+ # Example format: properties/1234/displayVideo360AdvertiserLinkProposals/5678
1258
+ class DeleteDisplayVideo360AdvertiserLinkProposalRequest
1259
+ include ::Google::Protobuf::MessageExts
1260
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1261
+ end
1262
+
1263
+ # Request message for ApproveDisplayVideo360AdvertiserLinkProposal RPC.
1264
+ # @!attribute [rw] name
1265
+ # @return [::String]
1266
+ # Required. The name of the DisplayVideo360AdvertiserLinkProposal to approve.
1267
+ # Example format: properties/1234/displayVideo360AdvertiserLinkProposals/5678
1268
+ class ApproveDisplayVideo360AdvertiserLinkProposalRequest
1269
+ include ::Google::Protobuf::MessageExts
1270
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1271
+ end
1272
+
1273
+ # Response message for ApproveDisplayVideo360AdvertiserLinkProposal RPC.
1274
+ # @!attribute [rw] display_video_360_advertiser_link
1275
+ # @return [::Google::Analytics::Admin::V1alpha::DisplayVideo360AdvertiserLink]
1276
+ # The DisplayVideo360AdvertiserLink created as a result of approving the
1277
+ # proposal.
1278
+ class ApproveDisplayVideo360AdvertiserLinkProposalResponse
1279
+ include ::Google::Protobuf::MessageExts
1280
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1281
+ end
1282
+
1283
+ # Request message for CancelDisplayVideo360AdvertiserLinkProposal RPC.
1284
+ # @!attribute [rw] name
1285
+ # @return [::String]
1286
+ # Required. The name of the DisplayVideo360AdvertiserLinkProposal to cancel.
1287
+ # Example format: properties/1234/displayVideo360AdvertiserLinkProposals/5678
1288
+ class CancelDisplayVideo360AdvertiserLinkProposalRequest
1289
+ include ::Google::Protobuf::MessageExts
1290
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1291
+ end
1292
+
1128
1293
  # Request message for CreateCustomDimension RPC.
1129
1294
  # @!attribute [rw] parent
1130
1295
  # @return [::String]
@@ -1284,6 +1449,33 @@ module Google
1284
1449
  include ::Google::Protobuf::MessageExts
1285
1450
  extend ::Google::Protobuf::MessageExts::ClassMethods
1286
1451
  end
1452
+
1453
+ # Request message for GetDataRetentionSettings RPC.
1454
+ # @!attribute [rw] name
1455
+ # @return [::String]
1456
+ # Required. The name of the settings to lookup.
1457
+ # Format:
1458
+ # properties/\\{property}/dataRetentionSettings
1459
+ # Example: "properties/1000/dataRetentionSettings"
1460
+ class GetDataRetentionSettingsRequest
1461
+ include ::Google::Protobuf::MessageExts
1462
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1463
+ end
1464
+
1465
+ # Request message for UpdateDataRetentionSettings RPC.
1466
+ # @!attribute [rw] data_retention_settings
1467
+ # @return [::Google::Analytics::Admin::V1alpha::DataRetentionSettings]
1468
+ # Required. The settings to update.
1469
+ # The `name` field is used to identify the settings to be updated.
1470
+ # @!attribute [rw] update_mask
1471
+ # @return [::Google::Protobuf::FieldMask]
1472
+ # Required. The list of fields to be updated. Field names must be in snake case
1473
+ # (e.g., "field_to_update"). Omitted fields will not be updated. To replace
1474
+ # the entire entity, use one path with the string "*" to match all fields.
1475
+ class UpdateDataRetentionSettingsRequest
1476
+ include ::Google::Protobuf::MessageExts
1477
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1478
+ end
1287
1479
  end
1288
1480
  end
1289
1481
  end