google-apis-analyticsadmin_v1alpha 0.39.0 → 0.41.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7357c560b281595b6ea76a1c381c0e21a29b927c2b753efe1606b90fd7d64c8f
4
- data.tar.gz: 565273b4bcb272f7ccf80c25f0f58508f3aa068808e74242f1d17e1c2931458e
3
+ metadata.gz: 5e19ab8964fcc9bd412963bb5541c0bcd8ab382e202709cd24a8579701d5e915
4
+ data.tar.gz: 2dd6097bb9d576cb738d8b7fecd9efec5a673e8d1d63ab20951b97d0487c1cdc
5
5
  SHA512:
6
- metadata.gz: 958364b9f4cc8295899cb7b8ddee764f9e2dc012de909736490256c742324a6fb9f7b044a78ae01acd57600ab866d363f1b1467690dcc048b2c63f70581cd4f2
7
- data.tar.gz: 96befa3ce1ecd3951ede27963ef7fe37c3f77142eb1a9c45f215b28c1752ea89b30b37a608a5a1d595d5ce8ba657649089a6c6aa9ce5c4c334fce8f8abb8271e
6
+ metadata.gz: 1d21faa3d41c1217f43701bdf524852a28783d5a7b96b71e8169b1245f50f44441a772a90606413711d05f126f53a3976380937310170512437ecc647e0ac2b1
7
+ data.tar.gz: 53c290a09993e1fb3fbf7d7caf073f4a42521281463ab84ea1d8864632d4ae8c9b2a4fc9e3609f62ad0b88c622008068cb4b904db876cca8fb92f3cb2ce1e953
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.41.0 (2022-10-15)
4
+
5
+ * Regenerated from discovery document revision 20221013
6
+
7
+ ### v0.40.0 (2022-09-30)
8
+
9
+ * Regenerated from discovery document revision 20220929
10
+
3
11
  ### v0.39.0 (2022-09-21)
4
12
 
5
13
  * Regenerated using generator version 0.10.0
@@ -1670,6 +1670,11 @@ module Google
1670
1670
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal]
1671
1671
  attr_accessor :display_video360_advertiser_link_proposal
1672
1672
 
1673
+ # A resource message representing a GA4 ExpandedDataSet.
1674
+ # Corresponds to the JSON property `expandedDataSet`
1675
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSet]
1676
+ attr_accessor :expanded_data_set
1677
+
1673
1678
  # A link between a GA4 property and a Firebase project.
1674
1679
  # Corresponds to the JSON property `firebaseLink`
1675
1680
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFirebaseLink]
@@ -1695,6 +1700,11 @@ module Google
1695
1700
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty]
1696
1701
  attr_accessor :property
1697
1702
 
1703
+ # A link between a GA4 property and a Search Ads 360 entity.
1704
+ # Corresponds to the JSON property `searchAds360Link`
1705
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link]
1706
+ attr_accessor :search_ads360_link
1707
+
1698
1708
  def initialize(**args)
1699
1709
  update!(**args)
1700
1710
  end
@@ -1710,11 +1720,13 @@ module Google
1710
1720
  @data_stream = args[:data_stream] if args.key?(:data_stream)
1711
1721
  @display_video360_advertiser_link = args[:display_video360_advertiser_link] if args.key?(:display_video360_advertiser_link)
1712
1722
  @display_video360_advertiser_link_proposal = args[:display_video360_advertiser_link_proposal] if args.key?(:display_video360_advertiser_link_proposal)
1723
+ @expanded_data_set = args[:expanded_data_set] if args.key?(:expanded_data_set)
1713
1724
  @firebase_link = args[:firebase_link] if args.key?(:firebase_link)
1714
1725
  @google_ads_link = args[:google_ads_link] if args.key?(:google_ads_link)
1715
1726
  @google_signals_settings = args[:google_signals_settings] if args.key?(:google_signals_settings)
1716
1727
  @measurement_protocol_secret = args[:measurement_protocol_secret] if args.key?(:measurement_protocol_secret)
1717
1728
  @property = args[:property] if args.key?(:property)
1729
+ @search_ads360_link = args[:search_ads360_link] if args.key?(:search_ads360_link)
1718
1730
  end
1719
1731
  end
1720
1732
 
@@ -2398,6 +2410,209 @@ module Google
2398
2410
  end
2399
2411
  end
2400
2412
 
2413
+ # A resource message representing a GA4 ExpandedDataSet.
2414
+ class GoogleAnalyticsAdminV1alphaExpandedDataSet
2415
+ include Google::Apis::Core::Hashable
2416
+
2417
+ # Output only. Time when expanded data set began (or will begin) collecing data.
2418
+ # Corresponds to the JSON property `dataCollectionStartTime`
2419
+ # @return [String]
2420
+ attr_accessor :data_collection_start_time
2421
+
2422
+ # Optional. The description of the ExpandedDataSet. Max 50 chars.
2423
+ # Corresponds to the JSON property `description`
2424
+ # @return [String]
2425
+ attr_accessor :description
2426
+
2427
+ # A logical expression of EnhancedDataSet dimension filters.
2428
+ # Corresponds to the JSON property `dimensionFilterExpression`
2429
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression]
2430
+ attr_accessor :dimension_filter_expression
2431
+
2432
+ # Immutable. The list of dimensions included in the ExpandedDataSet. See the [
2433
+ # API Dimensions](https://developers.google.com/analytics/devguides/reporting/
2434
+ # data/v1/api-schema#dimensions) for the list of dimension names.
2435
+ # Corresponds to the JSON property `dimensionNames`
2436
+ # @return [Array<String>]
2437
+ attr_accessor :dimension_names
2438
+
2439
+ # Required. The display name of the ExpandedDataSet. Max 200 chars.
2440
+ # Corresponds to the JSON property `displayName`
2441
+ # @return [String]
2442
+ attr_accessor :display_name
2443
+
2444
+ # Immutable. The list of metrics included in the ExpandedDataSet. See the [API
2445
+ # Metrics](https://developers.google.com/analytics/devguides/reporting/data/v1/
2446
+ # api-schema#metrics) for the list of dimension names.
2447
+ # Corresponds to the JSON property `metricNames`
2448
+ # @return [Array<String>]
2449
+ attr_accessor :metric_names
2450
+
2451
+ # Output only. The resource name for this ExpandedDataSet resource. Format:
2452
+ # properties/`property_id`/expandedDataSets/`expanded_data_set`
2453
+ # Corresponds to the JSON property `name`
2454
+ # @return [String]
2455
+ attr_accessor :name
2456
+
2457
+ def initialize(**args)
2458
+ update!(**args)
2459
+ end
2460
+
2461
+ # Update properties of this object
2462
+ def update!(**args)
2463
+ @data_collection_start_time = args[:data_collection_start_time] if args.key?(:data_collection_start_time)
2464
+ @description = args[:description] if args.key?(:description)
2465
+ @dimension_filter_expression = args[:dimension_filter_expression] if args.key?(:dimension_filter_expression)
2466
+ @dimension_names = args[:dimension_names] if args.key?(:dimension_names)
2467
+ @display_name = args[:display_name] if args.key?(:display_name)
2468
+ @metric_names = args[:metric_names] if args.key?(:metric_names)
2469
+ @name = args[:name] if args.key?(:name)
2470
+ end
2471
+ end
2472
+
2473
+ # A specific filter for a single dimension
2474
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilter
2475
+ include Google::Apis::Core::Hashable
2476
+
2477
+ # Required. The dimension name to filter.
2478
+ # Corresponds to the JSON property `fieldName`
2479
+ # @return [String]
2480
+ attr_accessor :field_name
2481
+
2482
+ # A filter for a string dimension that matches a particular list of options.
2483
+ # Corresponds to the JSON property `inListFilter`
2484
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterInListFilter]
2485
+ attr_accessor :in_list_filter
2486
+
2487
+ # A filter for a string-type dimension that matches a particular pattern.
2488
+ # Corresponds to the JSON property `stringFilter`
2489
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterStringFilter]
2490
+ attr_accessor :string_filter
2491
+
2492
+ def initialize(**args)
2493
+ update!(**args)
2494
+ end
2495
+
2496
+ # Update properties of this object
2497
+ def update!(**args)
2498
+ @field_name = args[:field_name] if args.key?(:field_name)
2499
+ @in_list_filter = args[:in_list_filter] if args.key?(:in_list_filter)
2500
+ @string_filter = args[:string_filter] if args.key?(:string_filter)
2501
+ end
2502
+ end
2503
+
2504
+ # A logical expression of EnhancedDataSet dimension filters.
2505
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression
2506
+ include Google::Apis::Core::Hashable
2507
+
2508
+ # A list of ExpandedDataSet filter expressions.
2509
+ # Corresponds to the JSON property `andGroup`
2510
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpressionList]
2511
+ attr_accessor :and_group
2512
+
2513
+ # A specific filter for a single dimension
2514
+ # Corresponds to the JSON property `filter`
2515
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilter]
2516
+ attr_accessor :filter
2517
+
2518
+ # A logical expression of EnhancedDataSet dimension filters.
2519
+ # Corresponds to the JSON property `notExpression`
2520
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression]
2521
+ attr_accessor :not_expression
2522
+
2523
+ def initialize(**args)
2524
+ update!(**args)
2525
+ end
2526
+
2527
+ # Update properties of this object
2528
+ def update!(**args)
2529
+ @and_group = args[:and_group] if args.key?(:and_group)
2530
+ @filter = args[:filter] if args.key?(:filter)
2531
+ @not_expression = args[:not_expression] if args.key?(:not_expression)
2532
+ end
2533
+ end
2534
+
2535
+ # A list of ExpandedDataSet filter expressions.
2536
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpressionList
2537
+ include Google::Apis::Core::Hashable
2538
+
2539
+ # A list of ExpandedDataSet filter expressions.
2540
+ # Corresponds to the JSON property `filterExpressions`
2541
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression>]
2542
+ attr_accessor :filter_expressions
2543
+
2544
+ def initialize(**args)
2545
+ update!(**args)
2546
+ end
2547
+
2548
+ # Update properties of this object
2549
+ def update!(**args)
2550
+ @filter_expressions = args[:filter_expressions] if args.key?(:filter_expressions)
2551
+ end
2552
+ end
2553
+
2554
+ # A filter for a string dimension that matches a particular list of options.
2555
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilterInListFilter
2556
+ include Google::Apis::Core::Hashable
2557
+
2558
+ # Optional. If true, the match is case-sensitive. If false, the match is case-
2559
+ # insensitive. Must be true.
2560
+ # Corresponds to the JSON property `caseSensitive`
2561
+ # @return [Boolean]
2562
+ attr_accessor :case_sensitive
2563
+ alias_method :case_sensitive?, :case_sensitive
2564
+
2565
+ # Required. The list of possible string values to match against. Must be non-
2566
+ # empty.
2567
+ # Corresponds to the JSON property `values`
2568
+ # @return [Array<String>]
2569
+ attr_accessor :values
2570
+
2571
+ def initialize(**args)
2572
+ update!(**args)
2573
+ end
2574
+
2575
+ # Update properties of this object
2576
+ def update!(**args)
2577
+ @case_sensitive = args[:case_sensitive] if args.key?(:case_sensitive)
2578
+ @values = args[:values] if args.key?(:values)
2579
+ end
2580
+ end
2581
+
2582
+ # A filter for a string-type dimension that matches a particular pattern.
2583
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilterStringFilter
2584
+ include Google::Apis::Core::Hashable
2585
+
2586
+ # Optional. If true, the match is case-sensitive. If false, the match is case-
2587
+ # insensitive. Must be true when match_type is EXACT. Must be false when
2588
+ # match_type is CONTAINS.
2589
+ # Corresponds to the JSON property `caseSensitive`
2590
+ # @return [Boolean]
2591
+ attr_accessor :case_sensitive
2592
+ alias_method :case_sensitive?, :case_sensitive
2593
+
2594
+ # Required. The match type for the string filter.
2595
+ # Corresponds to the JSON property `matchType`
2596
+ # @return [String]
2597
+ attr_accessor :match_type
2598
+
2599
+ # Required. The string value to be matched against.
2600
+ # Corresponds to the JSON property `value`
2601
+ # @return [String]
2602
+ attr_accessor :value
2603
+
2604
+ def initialize(**args)
2605
+ update!(**args)
2606
+ end
2607
+
2608
+ # Update properties of this object
2609
+ def update!(**args)
2610
+ @case_sensitive = args[:case_sensitive] if args.key?(:case_sensitive)
2611
+ @match_type = args[:match_type] if args.key?(:match_type)
2612
+ @value = args[:value] if args.key?(:value)
2613
+ end
2614
+ end
2615
+
2401
2616
  # A link between a GA4 property and a Firebase project.
2402
2617
  class GoogleAnalyticsAdminV1alphaFirebaseLink
2403
2618
  include Google::Apis::Core::Hashable
@@ -2926,6 +3141,32 @@ module Google
2926
3141
  end
2927
3142
  end
2928
3143
 
3144
+ # Response message for ListSearchAds360Links RPC.
3145
+ class GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse
3146
+ include Google::Apis::Core::Hashable
3147
+
3148
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
3149
+ # field is omitted, there are no subsequent pages.
3150
+ # Corresponds to the JSON property `nextPageToken`
3151
+ # @return [String]
3152
+ attr_accessor :next_page_token
3153
+
3154
+ # List of SearchAds360Links.
3155
+ # Corresponds to the JSON property `searchAds360Links`
3156
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link>]
3157
+ attr_accessor :search_ads360_links
3158
+
3159
+ def initialize(**args)
3160
+ update!(**args)
3161
+ end
3162
+
3163
+ # Update properties of this object
3164
+ def update!(**args)
3165
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3166
+ @search_ads360_links = args[:search_ads360_links] if args.key?(:search_ads360_links)
3167
+ end
3168
+ end
3169
+
2929
3170
  # Response message for ListUserLinks RPC.
2930
3171
  class GoogleAnalyticsAdminV1alphaListUserLinksResponse
2931
3172
  include Google::Apis::Core::Hashable
@@ -3357,6 +3598,77 @@ module Google
3357
3598
  end
3358
3599
  end
3359
3600
 
3601
+ # A link between a GA4 property and a Search Ads 360 entity.
3602
+ class GoogleAnalyticsAdminV1alphaSearchAds360Link
3603
+ include Google::Apis::Core::Hashable
3604
+
3605
+ # Enables personalized advertising features with this integration. If this field
3606
+ # is not set on create, it will be defaulted to true.
3607
+ # Corresponds to the JSON property `adsPersonalizationEnabled`
3608
+ # @return [Boolean]
3609
+ attr_accessor :ads_personalization_enabled
3610
+ alias_method :ads_personalization_enabled?, :ads_personalization_enabled
3611
+
3612
+ # Output only. The display name of the Search Ads 360 Advertiser. Allows users
3613
+ # to easily identify the linked resource.
3614
+ # Corresponds to the JSON property `advertiserDisplayName`
3615
+ # @return [String]
3616
+ attr_accessor :advertiser_display_name
3617
+
3618
+ # Immutable. This field represents the Advertiser ID of the Search Ads 360
3619
+ # Advertiser. that has been linked.
3620
+ # Corresponds to the JSON property `advertiserId`
3621
+ # @return [String]
3622
+ attr_accessor :advertiser_id
3623
+
3624
+ # Immutable. Enables the import of campaign data from Search Ads 360 into the
3625
+ # GA4 property. After link creation, this can only be updated from the Search
3626
+ # Ads 360 product. If this field is not set on create, it will be defaulted to
3627
+ # true.
3628
+ # Corresponds to the JSON property `campaignDataSharingEnabled`
3629
+ # @return [Boolean]
3630
+ attr_accessor :campaign_data_sharing_enabled
3631
+ alias_method :campaign_data_sharing_enabled?, :campaign_data_sharing_enabled
3632
+
3633
+ # Immutable. Enables the import of cost data from Search Ads 360 to the GA4
3634
+ # property. This can only be enabled if campaign_data_sharing_enabled is enabled.
3635
+ # After link creation, this can only be updated from the Search Ads 360 product.
3636
+ # If this field is not set on create, it will be defaulted to true.
3637
+ # Corresponds to the JSON property `costDataSharingEnabled`
3638
+ # @return [Boolean]
3639
+ attr_accessor :cost_data_sharing_enabled
3640
+ alias_method :cost_data_sharing_enabled?, :cost_data_sharing_enabled
3641
+
3642
+ # Output only. The resource name for this SearchAds360Link resource. Format:
3643
+ # properties/`propertyId`/searchAds360Links/`linkId` Note: linkId is not the
3644
+ # Search Ads 360 advertiser ID
3645
+ # Corresponds to the JSON property `name`
3646
+ # @return [String]
3647
+ attr_accessor :name
3648
+
3649
+ # Enables export of site stats with this integration. If this field is not set
3650
+ # on create, it will be defaulted to true.
3651
+ # Corresponds to the JSON property `siteStatsSharingEnabled`
3652
+ # @return [Boolean]
3653
+ attr_accessor :site_stats_sharing_enabled
3654
+ alias_method :site_stats_sharing_enabled?, :site_stats_sharing_enabled
3655
+
3656
+ def initialize(**args)
3657
+ update!(**args)
3658
+ end
3659
+
3660
+ # Update properties of this object
3661
+ def update!(**args)
3662
+ @ads_personalization_enabled = args[:ads_personalization_enabled] if args.key?(:ads_personalization_enabled)
3663
+ @advertiser_display_name = args[:advertiser_display_name] if args.key?(:advertiser_display_name)
3664
+ @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
3665
+ @campaign_data_sharing_enabled = args[:campaign_data_sharing_enabled] if args.key?(:campaign_data_sharing_enabled)
3666
+ @cost_data_sharing_enabled = args[:cost_data_sharing_enabled] if args.key?(:cost_data_sharing_enabled)
3667
+ @name = args[:name] if args.key?(:name)
3668
+ @site_stats_sharing_enabled = args[:site_stats_sharing_enabled] if args.key?(:site_stats_sharing_enabled)
3669
+ end
3670
+ end
3671
+
3360
3672
  # Request message for SearchChangeHistoryEvents RPC.
3361
3673
  class GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
3362
3674
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AnalyticsadminV1alpha
18
18
  # Version of the google-apis-analyticsadmin_v1alpha gem
19
- GEM_VERSION = "0.39.0"
19
+ GEM_VERSION = "0.41.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220825"
25
+ REVISION = "20221013"
26
26
  end
27
27
  end
28
28
  end
@@ -448,6 +448,42 @@ module Google
448
448
  include Google::Apis::Core::JsonObjectSupport
449
449
  end
450
450
 
451
+ class GoogleAnalyticsAdminV1alphaExpandedDataSet
452
+ class Representation < Google::Apis::Core::JsonRepresentation; end
453
+
454
+ include Google::Apis::Core::JsonObjectSupport
455
+ end
456
+
457
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilter
458
+ class Representation < Google::Apis::Core::JsonRepresentation; end
459
+
460
+ include Google::Apis::Core::JsonObjectSupport
461
+ end
462
+
463
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression
464
+ class Representation < Google::Apis::Core::JsonRepresentation; end
465
+
466
+ include Google::Apis::Core::JsonObjectSupport
467
+ end
468
+
469
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpressionList
470
+ class Representation < Google::Apis::Core::JsonRepresentation; end
471
+
472
+ include Google::Apis::Core::JsonObjectSupport
473
+ end
474
+
475
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilterInListFilter
476
+ class Representation < Google::Apis::Core::JsonRepresentation; end
477
+
478
+ include Google::Apis::Core::JsonObjectSupport
479
+ end
480
+
481
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilterStringFilter
482
+ class Representation < Google::Apis::Core::JsonRepresentation; end
483
+
484
+ include Google::Apis::Core::JsonObjectSupport
485
+ end
486
+
451
487
  class GoogleAnalyticsAdminV1alphaFirebaseLink
452
488
  class Representation < Google::Apis::Core::JsonRepresentation; end
453
489
 
@@ -556,6 +592,12 @@ module Google
556
592
  include Google::Apis::Core::JsonObjectSupport
557
593
  end
558
594
 
595
+ class GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse
596
+ class Representation < Google::Apis::Core::JsonRepresentation; end
597
+
598
+ include Google::Apis::Core::JsonObjectSupport
599
+ end
600
+
559
601
  class GoogleAnalyticsAdminV1alphaListUserLinksResponse
560
602
  class Representation < Google::Apis::Core::JsonRepresentation; end
561
603
 
@@ -610,6 +652,12 @@ module Google
610
652
  include Google::Apis::Core::JsonObjectSupport
611
653
  end
612
654
 
655
+ class GoogleAnalyticsAdminV1alphaSearchAds360Link
656
+ class Representation < Google::Apis::Core::JsonRepresentation; end
657
+
658
+ include Google::Apis::Core::JsonObjectSupport
659
+ end
660
+
613
661
  class GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
614
662
  class Representation < Google::Apis::Core::JsonRepresentation; end
615
663
 
@@ -1175,6 +1223,8 @@ module Google
1175
1223
 
1176
1224
  property :display_video360_advertiser_link_proposal, as: 'displayVideo360AdvertiserLinkProposal', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal::Representation
1177
1225
 
1226
+ property :expanded_data_set, as: 'expandedDataSet', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSet, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSet::Representation
1227
+
1178
1228
  property :firebase_link, as: 'firebaseLink', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFirebaseLink, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFirebaseLink::Representation
1179
1229
 
1180
1230
  property :google_ads_link, as: 'googleAdsLink', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaGoogleAdsLink, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaGoogleAdsLink::Representation
@@ -1185,6 +1235,8 @@ module Google
1185
1235
 
1186
1236
  property :property, as: 'property', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty::Representation
1187
1237
 
1238
+ property :search_ads360_link, as: 'searchAds360Link', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link::Representation
1239
+
1188
1240
  end
1189
1241
  end
1190
1242
 
@@ -1344,6 +1396,68 @@ module Google
1344
1396
  end
1345
1397
  end
1346
1398
 
1399
+ class GoogleAnalyticsAdminV1alphaExpandedDataSet
1400
+ # @private
1401
+ class Representation < Google::Apis::Core::JsonRepresentation
1402
+ property :data_collection_start_time, as: 'dataCollectionStartTime'
1403
+ property :description, as: 'description'
1404
+ property :dimension_filter_expression, as: 'dimensionFilterExpression', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression::Representation
1405
+
1406
+ collection :dimension_names, as: 'dimensionNames'
1407
+ property :display_name, as: 'displayName'
1408
+ collection :metric_names, as: 'metricNames'
1409
+ property :name, as: 'name'
1410
+ end
1411
+ end
1412
+
1413
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilter
1414
+ # @private
1415
+ class Representation < Google::Apis::Core::JsonRepresentation
1416
+ property :field_name, as: 'fieldName'
1417
+ property :in_list_filter, as: 'inListFilter', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterInListFilter, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterInListFilter::Representation
1418
+
1419
+ property :string_filter, as: 'stringFilter', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterStringFilter, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterStringFilter::Representation
1420
+
1421
+ end
1422
+ end
1423
+
1424
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression
1425
+ # @private
1426
+ class Representation < Google::Apis::Core::JsonRepresentation
1427
+ property :and_group, as: 'andGroup', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpressionList, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpressionList::Representation
1428
+
1429
+ property :filter, as: 'filter', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilter, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilter::Representation
1430
+
1431
+ property :not_expression, as: 'notExpression', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression::Representation
1432
+
1433
+ end
1434
+ end
1435
+
1436
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpressionList
1437
+ # @private
1438
+ class Representation < Google::Apis::Core::JsonRepresentation
1439
+ collection :filter_expressions, as: 'filterExpressions', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSetFilterExpression::Representation
1440
+
1441
+ end
1442
+ end
1443
+
1444
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilterInListFilter
1445
+ # @private
1446
+ class Representation < Google::Apis::Core::JsonRepresentation
1447
+ property :case_sensitive, as: 'caseSensitive'
1448
+ collection :values, as: 'values'
1449
+ end
1450
+ end
1451
+
1452
+ class GoogleAnalyticsAdminV1alphaExpandedDataSetFilterStringFilter
1453
+ # @private
1454
+ class Representation < Google::Apis::Core::JsonRepresentation
1455
+ property :case_sensitive, as: 'caseSensitive'
1456
+ property :match_type, as: 'matchType'
1457
+ property :value, as: 'value'
1458
+ end
1459
+ end
1460
+
1347
1461
  class GoogleAnalyticsAdminV1alphaFirebaseLink
1348
1462
  # @private
1349
1463
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1509,6 +1623,15 @@ module Google
1509
1623
  end
1510
1624
  end
1511
1625
 
1626
+ class GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse
1627
+ # @private
1628
+ class Representation < Google::Apis::Core::JsonRepresentation
1629
+ property :next_page_token, as: 'nextPageToken'
1630
+ collection :search_ads360_links, as: 'searchAds360Links', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link::Representation
1631
+
1632
+ end
1633
+ end
1634
+
1512
1635
  class GoogleAnalyticsAdminV1alphaListUserLinksResponse
1513
1636
  # @private
1514
1637
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1617,6 +1740,19 @@ module Google
1617
1740
  end
1618
1741
  end
1619
1742
 
1743
+ class GoogleAnalyticsAdminV1alphaSearchAds360Link
1744
+ # @private
1745
+ class Representation < Google::Apis::Core::JsonRepresentation
1746
+ property :ads_personalization_enabled, as: 'adsPersonalizationEnabled'
1747
+ property :advertiser_display_name, as: 'advertiserDisplayName'
1748
+ property :advertiser_id, as: 'advertiserId'
1749
+ property :campaign_data_sharing_enabled, as: 'campaignDataSharingEnabled'
1750
+ property :cost_data_sharing_enabled, as: 'costDataSharingEnabled'
1751
+ property :name, as: 'name'
1752
+ property :site_stats_sharing_enabled, as: 'siteStatsSharingEnabled'
1753
+ end
1754
+ end
1755
+
1620
1756
  class GoogleAnalyticsAdminV1alphaSearchChangeHistoryEventsRequest
1621
1757
  # @private
1622
1758
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2874,6 +2874,182 @@ module Google
2874
2874
  execute_or_queue_command(command, &block)
2875
2875
  end
2876
2876
 
2877
+ # Creates a SearchAds360Link.
2878
+ # @param [String] parent
2879
+ # Required. Example format: properties/1234
2880
+ # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link] google_analytics_admin_v1alpha_search_ads360_link_object
2881
+ # @param [String] fields
2882
+ # Selector specifying which fields to include in a partial response.
2883
+ # @param [String] quota_user
2884
+ # Available to use for quota purposes for server-side applications. Can be any
2885
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2886
+ # @param [Google::Apis::RequestOptions] options
2887
+ # Request-specific options
2888
+ #
2889
+ # @yield [result, err] Result & error if block supplied
2890
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link] parsed result object
2891
+ # @yieldparam err [StandardError] error object if request failed
2892
+ #
2893
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link]
2894
+ #
2895
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2896
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2897
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2898
+ def create_property_search_ads360_link(parent, google_analytics_admin_v1alpha_search_ads360_link_object = nil, fields: nil, quota_user: nil, options: nil, &block)
2899
+ command = make_simple_command(:post, 'v1alpha/{+parent}/searchAds360Links', options)
2900
+ command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link::Representation
2901
+ command.request_object = google_analytics_admin_v1alpha_search_ads360_link_object
2902
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link::Representation
2903
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link
2904
+ command.params['parent'] = parent unless parent.nil?
2905
+ command.query['fields'] = fields unless fields.nil?
2906
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2907
+ execute_or_queue_command(command, &block)
2908
+ end
2909
+
2910
+ # Deletes a SearchAds360Link on a property.
2911
+ # @param [String] name
2912
+ # Required. The name of the SearchAds360Link to delete. Example format:
2913
+ # properties/1234/SearchAds360Links/5678
2914
+ # @param [String] fields
2915
+ # Selector specifying which fields to include in a partial response.
2916
+ # @param [String] quota_user
2917
+ # Available to use for quota purposes for server-side applications. Can be any
2918
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2919
+ # @param [Google::Apis::RequestOptions] options
2920
+ # Request-specific options
2921
+ #
2922
+ # @yield [result, err] Result & error if block supplied
2923
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty] parsed result object
2924
+ # @yieldparam err [StandardError] error object if request failed
2925
+ #
2926
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty]
2927
+ #
2928
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2929
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2930
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2931
+ def delete_property_search_ads360_link(name, fields: nil, quota_user: nil, options: nil, &block)
2932
+ command = make_simple_command(:delete, 'v1alpha/{+name}', options)
2933
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty::Representation
2934
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty
2935
+ command.params['name'] = name unless name.nil?
2936
+ command.query['fields'] = fields unless fields.nil?
2937
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2938
+ execute_or_queue_command(command, &block)
2939
+ end
2940
+
2941
+ # Look up a single SearchAds360Link
2942
+ # @param [String] name
2943
+ # Required. The name of the SearchAds360Link to get. Example format: properties/
2944
+ # 1234/SearchAds360Link/5678
2945
+ # @param [String] fields
2946
+ # Selector specifying which fields to include in a partial response.
2947
+ # @param [String] quota_user
2948
+ # Available to use for quota purposes for server-side applications. Can be any
2949
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2950
+ # @param [Google::Apis::RequestOptions] options
2951
+ # Request-specific options
2952
+ #
2953
+ # @yield [result, err] Result & error if block supplied
2954
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link] parsed result object
2955
+ # @yieldparam err [StandardError] error object if request failed
2956
+ #
2957
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link]
2958
+ #
2959
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2960
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2961
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2962
+ def get_property_search_ads360_link(name, fields: nil, quota_user: nil, options: nil, &block)
2963
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
2964
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link::Representation
2965
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link
2966
+ command.params['name'] = name unless name.nil?
2967
+ command.query['fields'] = fields unless fields.nil?
2968
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2969
+ execute_or_queue_command(command, &block)
2970
+ end
2971
+
2972
+ # Lists all SearchAds360Links on a property.
2973
+ # @param [String] parent
2974
+ # Required. Example format: properties/1234
2975
+ # @param [Fixnum] page_size
2976
+ # The maximum number of resources to return. If unspecified, at most 50
2977
+ # resources will be returned. The maximum value is 200 (higher values will be
2978
+ # coerced to the maximum).
2979
+ # @param [String] page_token
2980
+ # A page token, received from a previous `ListSearchAds360Links` call. Provide
2981
+ # this to retrieve the subsequent page. When paginating, all other parameters
2982
+ # provided to `ListSearchAds360Links` must match the call that provided the page
2983
+ # token.
2984
+ # @param [String] fields
2985
+ # Selector specifying which fields to include in a partial response.
2986
+ # @param [String] quota_user
2987
+ # Available to use for quota purposes for server-side applications. Can be any
2988
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2989
+ # @param [Google::Apis::RequestOptions] options
2990
+ # Request-specific options
2991
+ #
2992
+ # @yield [result, err] Result & error if block supplied
2993
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse] parsed result object
2994
+ # @yieldparam err [StandardError] error object if request failed
2995
+ #
2996
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse]
2997
+ #
2998
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2999
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3000
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3001
+ def list_property_search_ads360_links(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
3002
+ command = make_simple_command(:get, 'v1alpha/{+parent}/searchAds360Links', options)
3003
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse::Representation
3004
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse
3005
+ command.params['parent'] = parent unless parent.nil?
3006
+ command.query['pageSize'] = page_size unless page_size.nil?
3007
+ command.query['pageToken'] = page_token unless page_token.nil?
3008
+ command.query['fields'] = fields unless fields.nil?
3009
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3010
+ execute_or_queue_command(command, &block)
3011
+ end
3012
+
3013
+ # Updates a SearchAds360Link on a property.
3014
+ # @param [String] name
3015
+ # Output only. The resource name for this SearchAds360Link resource. Format:
3016
+ # properties/`propertyId`/searchAds360Links/`linkId` Note: linkId is not the
3017
+ # Search Ads 360 advertiser ID
3018
+ # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link] google_analytics_admin_v1alpha_search_ads360_link_object
3019
+ # @param [String] update_mask
3020
+ # Required. The list of fields to be updated. Omitted fields will not be updated.
3021
+ # To replace the entire entity, use one path with the string "*" to match all
3022
+ # fields.
3023
+ # @param [String] fields
3024
+ # Selector specifying which fields to include in a partial response.
3025
+ # @param [String] quota_user
3026
+ # Available to use for quota purposes for server-side applications. Can be any
3027
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3028
+ # @param [Google::Apis::RequestOptions] options
3029
+ # Request-specific options
3030
+ #
3031
+ # @yield [result, err] Result & error if block supplied
3032
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link] parsed result object
3033
+ # @yieldparam err [StandardError] error object if request failed
3034
+ #
3035
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link]
3036
+ #
3037
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3038
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3039
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3040
+ def patch_property_search_ads360_link(name, google_analytics_admin_v1alpha_search_ads360_link_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
3041
+ command = make_simple_command(:patch, 'v1alpha/{+name}', options)
3042
+ command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link::Representation
3043
+ command.request_object = google_analytics_admin_v1alpha_search_ads360_link_object
3044
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link::Representation
3045
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link
3046
+ command.params['name'] = name unless name.nil?
3047
+ command.query['updateMask'] = update_mask unless update_mask.nil?
3048
+ command.query['fields'] = fields unless fields.nil?
3049
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3050
+ execute_or_queue_command(command, &block)
3051
+ end
3052
+
2877
3053
  # Lists all user links on an account or property, including implicit ones that
2878
3054
  # come from effective permissions granted by groups or organization admin roles.
2879
3055
  # If a returned user link does not have direct permissions, they cannot be
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-analyticsadmin_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.39.0
4
+ version: 0.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-26 00:00:00.000000000 Z
11
+ date: 2022-10-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.39.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.41.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticsadmin_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []