google-analytics-admin-v1alpha 0.25.0 → 0.26.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 +20 -16
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/client.rb +3754 -3495
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/paths.rb +42 -30
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/client.rb +3550 -3296
- data/lib/google/analytics/admin/v1alpha/analytics_admin_service/rest/service_stub.rb +1238 -1141
- data/lib/google/analytics/admin/v1alpha/analytics_admin_services_pb.rb +41 -39
- data/lib/google/analytics/admin/v1alpha/resources_pb.rb +4 -3
- data/lib/google/analytics/admin/v1alpha/subproperty_event_filter_pb.rb +52 -0
- data/lib/google/analytics/admin/v1alpha/version.rb +1 -1
- data/proto_docs/google/analytics/admin/v1alpha/analytics_admin.rb +260 -219
- data/proto_docs/google/analytics/admin/v1alpha/channel_group.rb +4 -3
- data/proto_docs/google/analytics/admin/v1alpha/resources.rb +75 -107
- data/proto_docs/google/analytics/admin/v1alpha/subproperty_event_filter.rb +157 -0
- data/proto_docs/google/api/client.rb +13 -0
- metadata +5 -3
|
@@ -99,6 +99,19 @@ module Google
|
|
|
99
99
|
# Toggles whether to return the current state of this Analytics Property's
|
|
100
100
|
# quota. Quota is returned in [AccessQuota](#AccessQuota). For account-level
|
|
101
101
|
# requests, this field must be false.
|
|
102
|
+
# @!attribute [rw] include_all_users
|
|
103
|
+
# @return [::Boolean]
|
|
104
|
+
# Optional. Determines whether to include users who have never made an API
|
|
105
|
+
# call in the response. If true, all users with access to the specified
|
|
106
|
+
# property or account are included in the response, regardless of whether
|
|
107
|
+
# they have made an API call or not. If false, only the users who have made
|
|
108
|
+
# an API call will be included.
|
|
109
|
+
# @!attribute [rw] expand_groups
|
|
110
|
+
# @return [::Boolean]
|
|
111
|
+
# Optional. Decides whether to return the users within user groups. This
|
|
112
|
+
# field works only when include_all_users is set to true. If true, it will
|
|
113
|
+
# return all users with access to the specified property or account.
|
|
114
|
+
# If false, only the users with direct access will be returned.
|
|
102
115
|
class RunAccessReportRequest
|
|
103
116
|
include ::Google::Protobuf::MessageExts
|
|
104
117
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
@@ -336,222 +349,6 @@ module Google
|
|
|
336
349
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
337
350
|
end
|
|
338
351
|
|
|
339
|
-
# Request message for GetUserLink RPC.
|
|
340
|
-
# @!attribute [rw] name
|
|
341
|
-
# @return [::String]
|
|
342
|
-
# Required. Example format: accounts/1234/userLinks/5678
|
|
343
|
-
class GetUserLinkRequest
|
|
344
|
-
include ::Google::Protobuf::MessageExts
|
|
345
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
346
|
-
end
|
|
347
|
-
|
|
348
|
-
# Request message for BatchGetUserLinks RPC.
|
|
349
|
-
# @!attribute [rw] parent
|
|
350
|
-
# @return [::String]
|
|
351
|
-
# Required. The account or property that all user links in the request are
|
|
352
|
-
# for. The parent of all provided values for the 'names' field must match
|
|
353
|
-
# this field.
|
|
354
|
-
# Example format: accounts/1234
|
|
355
|
-
# @!attribute [rw] names
|
|
356
|
-
# @return [::Array<::String>]
|
|
357
|
-
# Required. The names of the user links to retrieve.
|
|
358
|
-
# A maximum of 1000 user links can be retrieved in a batch.
|
|
359
|
-
# Format: accounts/\\{accountId}/userLinks/\\{userLinkId}
|
|
360
|
-
class BatchGetUserLinksRequest
|
|
361
|
-
include ::Google::Protobuf::MessageExts
|
|
362
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
363
|
-
end
|
|
364
|
-
|
|
365
|
-
# Response message for BatchGetUserLinks RPC.
|
|
366
|
-
# @!attribute [rw] user_links
|
|
367
|
-
# @return [::Array<::Google::Analytics::Admin::V1alpha::UserLink>]
|
|
368
|
-
# The requested user links.
|
|
369
|
-
class BatchGetUserLinksResponse
|
|
370
|
-
include ::Google::Protobuf::MessageExts
|
|
371
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
372
|
-
end
|
|
373
|
-
|
|
374
|
-
# Request message for ListUserLinks RPC.
|
|
375
|
-
# @!attribute [rw] parent
|
|
376
|
-
# @return [::String]
|
|
377
|
-
# Required. Example format: accounts/1234
|
|
378
|
-
# @!attribute [rw] page_size
|
|
379
|
-
# @return [::Integer]
|
|
380
|
-
# The maximum number of user links to return.
|
|
381
|
-
# The service may return fewer than this value.
|
|
382
|
-
# If unspecified, at most 200 user links will be returned.
|
|
383
|
-
# The maximum value is 500; values above 500 will be coerced to 500.
|
|
384
|
-
# @!attribute [rw] page_token
|
|
385
|
-
# @return [::String]
|
|
386
|
-
# A page token, received from a previous `ListUserLinks` call.
|
|
387
|
-
# Provide this to retrieve the subsequent page.
|
|
388
|
-
# When paginating, all other parameters provided to `ListUserLinks` must
|
|
389
|
-
# match the call that provided the page token.
|
|
390
|
-
class ListUserLinksRequest
|
|
391
|
-
include ::Google::Protobuf::MessageExts
|
|
392
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
393
|
-
end
|
|
394
|
-
|
|
395
|
-
# Response message for ListUserLinks RPC.
|
|
396
|
-
# @!attribute [rw] user_links
|
|
397
|
-
# @return [::Array<::Google::Analytics::Admin::V1alpha::UserLink>]
|
|
398
|
-
# List of UserLinks. These will be ordered stably, but in an arbitrary order.
|
|
399
|
-
# @!attribute [rw] next_page_token
|
|
400
|
-
# @return [::String]
|
|
401
|
-
# A token, which can be sent as `page_token` to retrieve the next page.
|
|
402
|
-
# If this field is omitted, there are no subsequent pages.
|
|
403
|
-
class ListUserLinksResponse
|
|
404
|
-
include ::Google::Protobuf::MessageExts
|
|
405
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
406
|
-
end
|
|
407
|
-
|
|
408
|
-
# Request message for AuditUserLinks RPC.
|
|
409
|
-
# @!attribute [rw] parent
|
|
410
|
-
# @return [::String]
|
|
411
|
-
# Required. Example format: accounts/1234
|
|
412
|
-
# @!attribute [rw] page_size
|
|
413
|
-
# @return [::Integer]
|
|
414
|
-
# The maximum number of user links to return.
|
|
415
|
-
# The service may return fewer than this value.
|
|
416
|
-
# If unspecified, at most 1000 user links will be returned.
|
|
417
|
-
# The maximum value is 5000; values above 5000 will be coerced to 5000.
|
|
418
|
-
# @!attribute [rw] page_token
|
|
419
|
-
# @return [::String]
|
|
420
|
-
# A page token, received from a previous `AuditUserLinks` call.
|
|
421
|
-
# Provide this to retrieve the subsequent page.
|
|
422
|
-
# When paginating, all other parameters provided to `AuditUserLinks` must
|
|
423
|
-
# match the call that provided the page token.
|
|
424
|
-
class AuditUserLinksRequest
|
|
425
|
-
include ::Google::Protobuf::MessageExts
|
|
426
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
427
|
-
end
|
|
428
|
-
|
|
429
|
-
# Response message for AuditUserLinks RPC.
|
|
430
|
-
# @!attribute [rw] user_links
|
|
431
|
-
# @return [::Array<::Google::Analytics::Admin::V1alpha::AuditUserLink>]
|
|
432
|
-
# List of AuditUserLinks. These will be ordered stably, but in an arbitrary
|
|
433
|
-
# order.
|
|
434
|
-
# @!attribute [rw] next_page_token
|
|
435
|
-
# @return [::String]
|
|
436
|
-
# A token, which can be sent as `page_token` to retrieve the next page.
|
|
437
|
-
# If this field is omitted, there are no subsequent pages.
|
|
438
|
-
class AuditUserLinksResponse
|
|
439
|
-
include ::Google::Protobuf::MessageExts
|
|
440
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
441
|
-
end
|
|
442
|
-
|
|
443
|
-
# Request message for CreateUserLink RPC.
|
|
444
|
-
#
|
|
445
|
-
# Users can have multiple email addresses associated with their Google
|
|
446
|
-
# account, and one of these email addresses is the "primary" email address.
|
|
447
|
-
# Any of the email addresses associated with a Google account may be used
|
|
448
|
-
# for a new UserLink, but the returned UserLink will always contain the
|
|
449
|
-
# "primary" email address. As a result, the input and output email address
|
|
450
|
-
# for this request may differ.
|
|
451
|
-
# @!attribute [rw] parent
|
|
452
|
-
# @return [::String]
|
|
453
|
-
# Required. Example format: accounts/1234
|
|
454
|
-
# @!attribute [rw] notify_new_user
|
|
455
|
-
# @return [::Boolean]
|
|
456
|
-
# Optional. If set, then email the new user notifying them that they've been
|
|
457
|
-
# granted permissions to the resource.
|
|
458
|
-
# @!attribute [rw] user_link
|
|
459
|
-
# @return [::Google::Analytics::Admin::V1alpha::UserLink]
|
|
460
|
-
# Required. The user link to create.
|
|
461
|
-
class CreateUserLinkRequest
|
|
462
|
-
include ::Google::Protobuf::MessageExts
|
|
463
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
464
|
-
end
|
|
465
|
-
|
|
466
|
-
# Request message for BatchCreateUserLinks RPC.
|
|
467
|
-
# @!attribute [rw] parent
|
|
468
|
-
# @return [::String]
|
|
469
|
-
# Required. The account or property that all user links in the request are
|
|
470
|
-
# for. This field is required. The parent field in the CreateUserLinkRequest
|
|
471
|
-
# messages must either be empty or match this field.
|
|
472
|
-
# Example format: accounts/1234
|
|
473
|
-
# @!attribute [rw] notify_new_users
|
|
474
|
-
# @return [::Boolean]
|
|
475
|
-
# Optional. If set, then email the new users notifying them that they've been
|
|
476
|
-
# granted permissions to the resource. Regardless of whether this is set or
|
|
477
|
-
# not, notify_new_user field inside each individual request is ignored.
|
|
478
|
-
# @!attribute [rw] requests
|
|
479
|
-
# @return [::Array<::Google::Analytics::Admin::V1alpha::CreateUserLinkRequest>]
|
|
480
|
-
# Required. The requests specifying the user links to create.
|
|
481
|
-
# A maximum of 1000 user links can be created in a batch.
|
|
482
|
-
class BatchCreateUserLinksRequest
|
|
483
|
-
include ::Google::Protobuf::MessageExts
|
|
484
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
485
|
-
end
|
|
486
|
-
|
|
487
|
-
# Response message for BatchCreateUserLinks RPC.
|
|
488
|
-
# @!attribute [rw] user_links
|
|
489
|
-
# @return [::Array<::Google::Analytics::Admin::V1alpha::UserLink>]
|
|
490
|
-
# The user links created.
|
|
491
|
-
class BatchCreateUserLinksResponse
|
|
492
|
-
include ::Google::Protobuf::MessageExts
|
|
493
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
494
|
-
end
|
|
495
|
-
|
|
496
|
-
# Request message for UpdateUserLink RPC.
|
|
497
|
-
# @!attribute [rw] user_link
|
|
498
|
-
# @return [::Google::Analytics::Admin::V1alpha::UserLink]
|
|
499
|
-
# Required. The user link to update.
|
|
500
|
-
class UpdateUserLinkRequest
|
|
501
|
-
include ::Google::Protobuf::MessageExts
|
|
502
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
503
|
-
end
|
|
504
|
-
|
|
505
|
-
# Request message for BatchUpdateUserLinks RPC.
|
|
506
|
-
# @!attribute [rw] parent
|
|
507
|
-
# @return [::String]
|
|
508
|
-
# Required. The account or property that all user links in the request are
|
|
509
|
-
# for. The parent field in the UpdateUserLinkRequest messages must either be
|
|
510
|
-
# empty or match this field.
|
|
511
|
-
# Example format: accounts/1234
|
|
512
|
-
# @!attribute [rw] requests
|
|
513
|
-
# @return [::Array<::Google::Analytics::Admin::V1alpha::UpdateUserLinkRequest>]
|
|
514
|
-
# Required. The requests specifying the user links to update.
|
|
515
|
-
# A maximum of 1000 user links can be updated in a batch.
|
|
516
|
-
class BatchUpdateUserLinksRequest
|
|
517
|
-
include ::Google::Protobuf::MessageExts
|
|
518
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
519
|
-
end
|
|
520
|
-
|
|
521
|
-
# Response message for BatchUpdateUserLinks RPC.
|
|
522
|
-
# @!attribute [rw] user_links
|
|
523
|
-
# @return [::Array<::Google::Analytics::Admin::V1alpha::UserLink>]
|
|
524
|
-
# The user links updated.
|
|
525
|
-
class BatchUpdateUserLinksResponse
|
|
526
|
-
include ::Google::Protobuf::MessageExts
|
|
527
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
528
|
-
end
|
|
529
|
-
|
|
530
|
-
# Request message for DeleteUserLink RPC.
|
|
531
|
-
# @!attribute [rw] name
|
|
532
|
-
# @return [::String]
|
|
533
|
-
# Required. Example format: accounts/1234/userLinks/5678
|
|
534
|
-
class DeleteUserLinkRequest
|
|
535
|
-
include ::Google::Protobuf::MessageExts
|
|
536
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
537
|
-
end
|
|
538
|
-
|
|
539
|
-
# Request message for BatchDeleteUserLinks RPC.
|
|
540
|
-
# @!attribute [rw] parent
|
|
541
|
-
# @return [::String]
|
|
542
|
-
# Required. The account or property that all user links in the request are
|
|
543
|
-
# for. The parent of all values for user link names to delete must match this
|
|
544
|
-
# field.
|
|
545
|
-
# Example format: accounts/1234
|
|
546
|
-
# @!attribute [rw] requests
|
|
547
|
-
# @return [::Array<::Google::Analytics::Admin::V1alpha::DeleteUserLinkRequest>]
|
|
548
|
-
# Required. The requests specifying the user links to update.
|
|
549
|
-
# A maximum of 1000 user links can be updated in a batch.
|
|
550
|
-
class BatchDeleteUserLinksRequest
|
|
551
|
-
include ::Google::Protobuf::MessageExts
|
|
552
|
-
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
553
|
-
end
|
|
554
|
-
|
|
555
352
|
# Request message for CreateFirebaseLink RPC
|
|
556
353
|
# @!attribute [rw] parent
|
|
557
354
|
# @return [::String]
|
|
@@ -953,9 +750,10 @@ module Google
|
|
|
953
750
|
# Request message for ListSKAdNetworkConversionValueSchemas RPC
|
|
954
751
|
# @!attribute [rw] parent
|
|
955
752
|
# @return [::String]
|
|
956
|
-
# Required.
|
|
957
|
-
#
|
|
958
|
-
#
|
|
753
|
+
# Required. The DataStream resource to list schemas for.
|
|
754
|
+
# Format:
|
|
755
|
+
# properties/\\{property_id}/dataStreams/\\{dataStream}
|
|
756
|
+
# Example: properties/1234/dataStreams/5678
|
|
959
757
|
# @!attribute [rw] page_size
|
|
960
758
|
# @return [::Integer]
|
|
961
759
|
# The maximum number of resources to return. The service may return
|
|
@@ -2207,6 +2005,34 @@ module Google
|
|
|
2207
2005
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2208
2006
|
end
|
|
2209
2007
|
|
|
2008
|
+
# Request message for GetDataRedactionSettings RPC.
|
|
2009
|
+
# @!attribute [rw] name
|
|
2010
|
+
# @return [::String]
|
|
2011
|
+
# Required. The name of the settings to lookup.
|
|
2012
|
+
# Format:
|
|
2013
|
+
# properties/\\{property}/dataStreams/\\{data_stream}/dataRedactionSettings
|
|
2014
|
+
# Example: "properties/1000/dataStreams/2000/dataRedactionSettings"
|
|
2015
|
+
class GetDataRedactionSettingsRequest
|
|
2016
|
+
include ::Google::Protobuf::MessageExts
|
|
2017
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2018
|
+
end
|
|
2019
|
+
|
|
2020
|
+
# Request message for UpdateDataRedactionSettings RPC.
|
|
2021
|
+
# @!attribute [rw] data_redaction_settings
|
|
2022
|
+
# @return [::Google::Analytics::Admin::V1alpha::DataRedactionSettings]
|
|
2023
|
+
# Required. The settings to update.
|
|
2024
|
+
# The `name` field is used to identify the settings to be updated.
|
|
2025
|
+
# @!attribute [rw] update_mask
|
|
2026
|
+
# @return [::Google::Protobuf::FieldMask]
|
|
2027
|
+
# Required. The list of fields to be updated. Field names must be in snake
|
|
2028
|
+
# case (e.g., "field_to_update"). Omitted fields will not be updated. To
|
|
2029
|
+
# replace the entire entity, use one path with the string "*" to match all
|
|
2030
|
+
# fields.
|
|
2031
|
+
class UpdateDataRedactionSettingsRequest
|
|
2032
|
+
include ::Google::Protobuf::MessageExts
|
|
2033
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2034
|
+
end
|
|
2035
|
+
|
|
2210
2036
|
# Request message for CreateConnectedSiteTag RPC.
|
|
2211
2037
|
# @!attribute [rw] property
|
|
2212
2038
|
# @return [::String]
|
|
@@ -2446,6 +2272,221 @@ module Google
|
|
|
2446
2272
|
include ::Google::Protobuf::MessageExts
|
|
2447
2273
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2448
2274
|
end
|
|
2275
|
+
|
|
2276
|
+
# Request message for CreateRollupProperty RPC.
|
|
2277
|
+
# @!attribute [rw] rollup_property
|
|
2278
|
+
# @return [::Google::Analytics::Admin::V1alpha::Property]
|
|
2279
|
+
# Required. The roll-up property to create.
|
|
2280
|
+
# @!attribute [rw] source_properties
|
|
2281
|
+
# @return [::Array<::String>]
|
|
2282
|
+
# Optional. The resource names of properties that will be sources to the
|
|
2283
|
+
# created roll-up property.
|
|
2284
|
+
class CreateRollupPropertyRequest
|
|
2285
|
+
include ::Google::Protobuf::MessageExts
|
|
2286
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2287
|
+
end
|
|
2288
|
+
|
|
2289
|
+
# Response message for CreateRollupProperty RPC.
|
|
2290
|
+
# @!attribute [rw] rollup_property
|
|
2291
|
+
# @return [::Google::Analytics::Admin::V1alpha::Property]
|
|
2292
|
+
# The created roll-up property.
|
|
2293
|
+
# @!attribute [rw] rollup_property_source_links
|
|
2294
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::RollupPropertySourceLink>]
|
|
2295
|
+
# The created roll-up property source links.
|
|
2296
|
+
class CreateRollupPropertyResponse
|
|
2297
|
+
include ::Google::Protobuf::MessageExts
|
|
2298
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2299
|
+
end
|
|
2300
|
+
|
|
2301
|
+
# Request message for GetRollupPropertySourceLink RPC.
|
|
2302
|
+
# @!attribute [rw] name
|
|
2303
|
+
# @return [::String]
|
|
2304
|
+
# Required. The name of the roll-up property source link to lookup.
|
|
2305
|
+
# Format:
|
|
2306
|
+
# properties/\\{property_id}/rollupPropertySourceLinks/\\{rollup_property_source_link_id}
|
|
2307
|
+
# Example: properties/123/rollupPropertySourceLinks/456
|
|
2308
|
+
class GetRollupPropertySourceLinkRequest
|
|
2309
|
+
include ::Google::Protobuf::MessageExts
|
|
2310
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2311
|
+
end
|
|
2312
|
+
|
|
2313
|
+
# Request message for ListRollupPropertySourceLinks RPC.
|
|
2314
|
+
# @!attribute [rw] parent
|
|
2315
|
+
# @return [::String]
|
|
2316
|
+
# Required. The name of the roll-up property to list roll-up property source
|
|
2317
|
+
# links under. Format: properties/\\{property_id} Example: properties/1234
|
|
2318
|
+
# @!attribute [rw] page_size
|
|
2319
|
+
# @return [::Integer]
|
|
2320
|
+
# Optional. The maximum number of resources to return. The service may return
|
|
2321
|
+
# fewer than this value, even if there are additional pages.
|
|
2322
|
+
# If unspecified, at most 50 resources will be returned.
|
|
2323
|
+
# The maximum value is 200; (higher values will be coerced to the maximum)
|
|
2324
|
+
# @!attribute [rw] page_token
|
|
2325
|
+
# @return [::String]
|
|
2326
|
+
# Optional. A page token, received from a previous
|
|
2327
|
+
# `ListRollupPropertySourceLinks` call. Provide this to retrieve the
|
|
2328
|
+
# subsequent page. When paginating, all other parameters provided to
|
|
2329
|
+
# `ListRollupPropertySourceLinks` must match the call that provided the page
|
|
2330
|
+
# token.
|
|
2331
|
+
class ListRollupPropertySourceLinksRequest
|
|
2332
|
+
include ::Google::Protobuf::MessageExts
|
|
2333
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2334
|
+
end
|
|
2335
|
+
|
|
2336
|
+
# Response message for ListRollupPropertySourceLinks RPC.
|
|
2337
|
+
# @!attribute [rw] rollup_property_source_links
|
|
2338
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::RollupPropertySourceLink>]
|
|
2339
|
+
# List of RollupPropertySourceLinks.
|
|
2340
|
+
# @!attribute [rw] next_page_token
|
|
2341
|
+
# @return [::String]
|
|
2342
|
+
# A token, which can be sent as `page_token` to retrieve the next page.
|
|
2343
|
+
# If this field is omitted, there are no subsequent pages.
|
|
2344
|
+
class ListRollupPropertySourceLinksResponse
|
|
2345
|
+
include ::Google::Protobuf::MessageExts
|
|
2346
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2347
|
+
end
|
|
2348
|
+
|
|
2349
|
+
# Request message for CreateRollupPropertySourceLink RPC.
|
|
2350
|
+
# @!attribute [rw] parent
|
|
2351
|
+
# @return [::String]
|
|
2352
|
+
# Required. Format: properties/\\{property_id}
|
|
2353
|
+
# Example: properties/1234
|
|
2354
|
+
# @!attribute [rw] rollup_property_source_link
|
|
2355
|
+
# @return [::Google::Analytics::Admin::V1alpha::RollupPropertySourceLink]
|
|
2356
|
+
# Required. The roll-up property source link to create.
|
|
2357
|
+
class CreateRollupPropertySourceLinkRequest
|
|
2358
|
+
include ::Google::Protobuf::MessageExts
|
|
2359
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2360
|
+
end
|
|
2361
|
+
|
|
2362
|
+
# Request message for DeleteRollupPropertySourceLink RPC.
|
|
2363
|
+
# @!attribute [rw] name
|
|
2364
|
+
# @return [::String]
|
|
2365
|
+
# Required. Format:
|
|
2366
|
+
# properties/\\{property_id}/rollupPropertySourceLinks/\\{rollup_property_source_link_id}
|
|
2367
|
+
# Example: properties/1234/rollupPropertySourceLinks/5678
|
|
2368
|
+
class DeleteRollupPropertySourceLinkRequest
|
|
2369
|
+
include ::Google::Protobuf::MessageExts
|
|
2370
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2371
|
+
end
|
|
2372
|
+
|
|
2373
|
+
# Request message for CreateSubproperty RPC.
|
|
2374
|
+
# @!attribute [rw] parent
|
|
2375
|
+
# @return [::String]
|
|
2376
|
+
# Required. The ordinary property for which to create a subproperty.
|
|
2377
|
+
# Format: properties/property_id
|
|
2378
|
+
# Example: properties/123
|
|
2379
|
+
# @!attribute [rw] subproperty
|
|
2380
|
+
# @return [::Google::Analytics::Admin::V1alpha::Property]
|
|
2381
|
+
# Required. The subproperty to create.
|
|
2382
|
+
# @!attribute [rw] subproperty_event_filter
|
|
2383
|
+
# @return [::Google::Analytics::Admin::V1alpha::SubpropertyEventFilter]
|
|
2384
|
+
# Optional. The subproperty event filter to create on an ordinary property.
|
|
2385
|
+
class CreateSubpropertyRequest
|
|
2386
|
+
include ::Google::Protobuf::MessageExts
|
|
2387
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2388
|
+
end
|
|
2389
|
+
|
|
2390
|
+
# Response message for CreateSubproperty RPC.
|
|
2391
|
+
# @!attribute [rw] subproperty
|
|
2392
|
+
# @return [::Google::Analytics::Admin::V1alpha::Property]
|
|
2393
|
+
# The created subproperty.
|
|
2394
|
+
# @!attribute [rw] subproperty_event_filter
|
|
2395
|
+
# @return [::Google::Analytics::Admin::V1alpha::SubpropertyEventFilter]
|
|
2396
|
+
# The created subproperty event filter.
|
|
2397
|
+
class CreateSubpropertyResponse
|
|
2398
|
+
include ::Google::Protobuf::MessageExts
|
|
2399
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2400
|
+
end
|
|
2401
|
+
|
|
2402
|
+
# Request message for CreateSubpropertyEventFilter RPC.
|
|
2403
|
+
# @!attribute [rw] parent
|
|
2404
|
+
# @return [::String]
|
|
2405
|
+
# Required. The ordinary property for which to create a subproperty event
|
|
2406
|
+
# filter. Format: properties/property_id Example: properties/123
|
|
2407
|
+
# @!attribute [rw] subproperty_event_filter
|
|
2408
|
+
# @return [::Google::Analytics::Admin::V1alpha::SubpropertyEventFilter]
|
|
2409
|
+
# Required. The subproperty event filter to create.
|
|
2410
|
+
class CreateSubpropertyEventFilterRequest
|
|
2411
|
+
include ::Google::Protobuf::MessageExts
|
|
2412
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2413
|
+
end
|
|
2414
|
+
|
|
2415
|
+
# Request message for GetSubpropertyEventFilter RPC.
|
|
2416
|
+
# @!attribute [rw] name
|
|
2417
|
+
# @return [::String]
|
|
2418
|
+
# Required. Resource name of the subproperty event filter to lookup.
|
|
2419
|
+
# Format:
|
|
2420
|
+
# properties/property_id/subpropertyEventFilters/subproperty_event_filter
|
|
2421
|
+
# Example: properties/123/subpropertyEventFilters/456
|
|
2422
|
+
class GetSubpropertyEventFilterRequest
|
|
2423
|
+
include ::Google::Protobuf::MessageExts
|
|
2424
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2425
|
+
end
|
|
2426
|
+
|
|
2427
|
+
# Request message for ListSubpropertyEventFilters RPC.
|
|
2428
|
+
# @!attribute [rw] parent
|
|
2429
|
+
# @return [::String]
|
|
2430
|
+
# Required. Resource name of the ordinary property.
|
|
2431
|
+
# Format: properties/property_id
|
|
2432
|
+
# Example: properties/123
|
|
2433
|
+
# @!attribute [rw] page_size
|
|
2434
|
+
# @return [::Integer]
|
|
2435
|
+
# Optional. The maximum number of resources to return. The service may return
|
|
2436
|
+
# fewer than this value, even if there are additional pages. If unspecified,
|
|
2437
|
+
# at most 50 resources will be returned. The maximum value is 200; (higher
|
|
2438
|
+
# values will be coerced to the maximum)
|
|
2439
|
+
# @!attribute [rw] page_token
|
|
2440
|
+
# @return [::String]
|
|
2441
|
+
# Optional. A page token, received from a previous
|
|
2442
|
+
# `ListSubpropertyEventFilters` call. Provide this to retrieve the subsequent
|
|
2443
|
+
# page. When paginating, all other parameters provided to
|
|
2444
|
+
# `ListSubpropertyEventFilters` must match the call that provided the page
|
|
2445
|
+
# token.
|
|
2446
|
+
class ListSubpropertyEventFiltersRequest
|
|
2447
|
+
include ::Google::Protobuf::MessageExts
|
|
2448
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2449
|
+
end
|
|
2450
|
+
|
|
2451
|
+
# Response message for ListSubpropertyEventFilter RPC.
|
|
2452
|
+
# @!attribute [rw] subproperty_event_filters
|
|
2453
|
+
# @return [::Array<::Google::Analytics::Admin::V1alpha::SubpropertyEventFilter>]
|
|
2454
|
+
# List of subproperty event filters.
|
|
2455
|
+
# @!attribute [rw] next_page_token
|
|
2456
|
+
# @return [::String]
|
|
2457
|
+
# A token, which can be sent as `page_token` to retrieve the next page. If
|
|
2458
|
+
# this field is omitted, there are no subsequent pages.
|
|
2459
|
+
class ListSubpropertyEventFiltersResponse
|
|
2460
|
+
include ::Google::Protobuf::MessageExts
|
|
2461
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2462
|
+
end
|
|
2463
|
+
|
|
2464
|
+
# Request message for UpdateSubpropertyEventFilter RPC.
|
|
2465
|
+
# @!attribute [rw] subproperty_event_filter
|
|
2466
|
+
# @return [::Google::Analytics::Admin::V1alpha::SubpropertyEventFilter]
|
|
2467
|
+
# Required. The subproperty event filter to update.
|
|
2468
|
+
# @!attribute [rw] update_mask
|
|
2469
|
+
# @return [::Google::Protobuf::FieldMask]
|
|
2470
|
+
# Required. The list of fields to update. Field names must be in snake case
|
|
2471
|
+
# (for example, "field_to_update"). Omitted fields will not be updated. To
|
|
2472
|
+
# replace the entire entity, use one path with the string "*" to match all
|
|
2473
|
+
# fields.
|
|
2474
|
+
class UpdateSubpropertyEventFilterRequest
|
|
2475
|
+
include ::Google::Protobuf::MessageExts
|
|
2476
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2477
|
+
end
|
|
2478
|
+
|
|
2479
|
+
# Request message for DeleteSubpropertyEventFilter RPC.
|
|
2480
|
+
# @!attribute [rw] name
|
|
2481
|
+
# @return [::String]
|
|
2482
|
+
# Required. Resource name of the subproperty event filter to delete.
|
|
2483
|
+
# Format:
|
|
2484
|
+
# properties/property_id/subpropertyEventFilters/subproperty_event_filter
|
|
2485
|
+
# Example: properties/123/subpropertyEventFilters/456
|
|
2486
|
+
class DeleteSubpropertyEventFilterRequest
|
|
2487
|
+
include ::Google::Protobuf::MessageExts
|
|
2488
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
|
2489
|
+
end
|
|
2449
2490
|
end
|
|
2450
2491
|
end
|
|
2451
2492
|
end
|
|
@@ -143,11 +143,12 @@ module Google
|
|
|
143
143
|
# The description of the Channel Group. Max length of 256 characters.
|
|
144
144
|
# @!attribute [rw] grouping_rule
|
|
145
145
|
# @return [::Array<::Google::Analytics::Admin::V1alpha::GroupingRule>]
|
|
146
|
-
# Required. The grouping rules of channels. Maximum number of rules is
|
|
146
|
+
# Required. The grouping rules of channels. Maximum number of rules is 50.
|
|
147
147
|
# @!attribute [r] system_defined
|
|
148
148
|
# @return [::Boolean]
|
|
149
|
-
# Output only.
|
|
150
|
-
#
|
|
149
|
+
# Output only. If true, then this channel group is the Default Channel Group
|
|
150
|
+
# predefined by Google Analytics. Display name and grouping rules cannot be
|
|
151
|
+
# updated for this channel group.
|
|
151
152
|
class ChannelGroup
|
|
152
153
|
include ::Google::Protobuf::MessageExts
|
|
153
154
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|