google-apis-analyticsadmin_v1alpha 0.74.0 → 0.76.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 90f4c0c89268d08d108375f764a0c9962df2a36c82deee4689b3d6ac91420848
4
- data.tar.gz: 929973c6bb555c15a413907867ccc64ade279c3ca7c793ea83d2b6f12f4c5b80
3
+ metadata.gz: ae6f4eaa724bc995620eee8d70013790cbc2c4015aea094f4010c2f820734ed3
4
+ data.tar.gz: 79424cdb2c95143e39a5ed798cce5ced1816c648d215132299da3b64ec9fed38
5
5
  SHA512:
6
- metadata.gz: 260d604a7a44ca103edd97ab58d8fad43375200465d6a9c0a7ff61a8ca1f1728349582dc521e9c4b0ce47ee286f2ea15f1de7c1c297f728601699bcee28e8c77
7
- data.tar.gz: 39078d4486eb304b3d1baad054ff620ad5121d0661e505c5bddc9bd87dea8d9371c1e66ed069c8f89429eb8a8e709d1c7e0405553188492459fcbe5dcd1efbf9
6
+ metadata.gz: 9a2a043e3310749f0c8ede19e6e2655b0d17950b28d474dfba2cb6bd7997e21fa94de1995a22ea937c1bfae8866273eac570dd65529b685431472fbe5078538b
7
+ data.tar.gz: 25487032c76f96afcb1bb93112977d2f9a7765f6c58729c36369a3f7c3aa549174e5670b6f8c6951254ed462a09cc78390087df5fba737cf0ff86e4210ed6985
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.76.0 (2024-12-02)
4
+
5
+ * Regenerated from discovery document revision 20240929
6
+ * Regenerated using generator version 0.15.1
7
+
8
+ ### v0.75.0 (2024-07-25)
9
+
10
+ * Regenerated from discovery document revision 20240722
11
+
3
12
  ### v0.74.0 (2024-06-02)
4
13
 
5
14
  * Regenerated from discovery document revision 20240529
@@ -667,7 +667,7 @@ module Google
667
667
  end
668
668
 
669
669
  # A virtual resource representing an overview of an account and all its child
670
- # GA4 properties.
670
+ # Google Analytics properties.
671
671
  class GoogleAnalyticsAdminV1alphaAccountSummary
672
672
  include Google::Apis::Core::Hashable
673
673
 
@@ -743,12 +743,13 @@ module Google
743
743
  end
744
744
  end
745
745
 
746
- # A link between a GA4 Property and an AdSense for Content ad client.
746
+ # A link between a Google Analytics property and an AdSense for Content ad
747
+ # client.
747
748
  class GoogleAnalyticsAdminV1alphaAdSenseLink
748
749
  include Google::Apis::Core::Hashable
749
750
 
750
- # Immutable. The AdSense ad client code that the GA4 property is linked to.
751
- # Example format: "ca-pub-1234567890"
751
+ # Immutable. The AdSense ad client code that the Google Analytics property is
752
+ # linked to. Example format: "ca-pub-1234567890"
752
753
  # Corresponds to the JSON property `adClientCode`
753
754
  # @return [String]
754
755
  attr_accessor :ad_client_code
@@ -788,7 +789,8 @@ module Google
788
789
  class GoogleAnalyticsAdminV1alphaApproveDisplayVideo360AdvertiserLinkProposalResponse
789
790
  include Google::Apis::Core::Hashable
790
791
 
791
- # A link between a GA4 property and a Display & Video 360 advertiser.
792
+ # A link between a Google Analytics property and a Display & Video 360
793
+ # advertiser.
792
794
  # Corresponds to the JSON property `displayVideo360AdvertiserLink`
793
795
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink]
794
796
  attr_accessor :display_video360_advertiser_link
@@ -893,7 +895,7 @@ module Google
893
895
  end
894
896
  end
895
897
 
896
- # A resource message representing a GA4 Audience.
898
+ # A resource message representing an Audience.
897
899
  class GoogleAnalyticsAdminV1alphaAudience
898
900
  include Google::Apis::Core::Hashable
899
901
 
@@ -1549,7 +1551,7 @@ module Google
1549
1551
  end
1550
1552
  end
1551
1553
 
1552
- # A link between a GA4 Property and BigQuery project.
1554
+ # A link between a Google Analytics property and BigQuery project.
1553
1555
  class GoogleAnalyticsAdminV1alphaBigQueryLink
1554
1556
  include Google::Apis::Core::Hashable
1555
1557
 
@@ -1564,6 +1566,13 @@ module Google
1564
1566
  attr_accessor :daily_export_enabled
1565
1567
  alias_method :daily_export_enabled?, :daily_export_enabled
1566
1568
 
1569
+ # Required. Immutable. The geographic location where the created BigQuery
1570
+ # dataset should reside. See https://cloud.google.com/bigquery/docs/locations
1571
+ # for supported locations.
1572
+ # Corresponds to the JSON property `datasetLocation`
1573
+ # @return [String]
1574
+ attr_accessor :dataset_location
1575
+
1567
1576
  # The list of event names that will be excluded from exports.
1568
1577
  # Corresponds to the JSON property `excludedEvents`
1569
1578
  # @return [Array<String>]
@@ -1619,6 +1628,7 @@ module Google
1619
1628
  def update!(**args)
1620
1629
  @create_time = args[:create_time] if args.key?(:create_time)
1621
1630
  @daily_export_enabled = args[:daily_export_enabled] if args.key?(:daily_export_enabled)
1631
+ @dataset_location = args[:dataset_location] if args.key?(:dataset_location)
1622
1632
  @excluded_events = args[:excluded_events] if args.key?(:excluded_events)
1623
1633
  @export_streams = args[:export_streams] if args.key?(:export_streams)
1624
1634
  @fresh_daily_export_enabled = args[:fresh_daily_export_enabled] if args.key?(:fresh_daily_export_enabled)
@@ -1766,7 +1776,8 @@ module Google
1766
1776
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAccount]
1767
1777
  attr_accessor :account
1768
1778
 
1769
- # A link between a GA4 Property and an AdSense for Content ad client.
1779
+ # A link between a Google Analytics property and an AdSense for Content ad
1780
+ # client.
1770
1781
  # Corresponds to the JSON property `adsenseLink`
1771
1782
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAdSenseLink]
1772
1783
  attr_accessor :adsense_link
@@ -1777,12 +1788,12 @@ module Google
1777
1788
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAttributionSettings]
1778
1789
  attr_accessor :attribution_settings
1779
1790
 
1780
- # A resource message representing a GA4 Audience.
1791
+ # A resource message representing an Audience.
1781
1792
  # Corresponds to the JSON property `audience`
1782
1793
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAudience]
1783
1794
  attr_accessor :audience
1784
1795
 
1785
- # A link between a GA4 Property and BigQuery project.
1796
+ # A link between a Google Analytics property and BigQuery project.
1786
1797
  # Corresponds to the JSON property `bigqueryLink`
1787
1798
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink]
1788
1799
  attr_accessor :bigquery_link
@@ -1827,15 +1838,16 @@ module Google
1827
1838
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataStream]
1828
1839
  attr_accessor :data_stream
1829
1840
 
1830
- # A link between a GA4 property and a Display & Video 360 advertiser.
1841
+ # A link between a Google Analytics property and a Display & Video 360
1842
+ # advertiser.
1831
1843
  # Corresponds to the JSON property `displayVideo360AdvertiserLink`
1832
1844
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink]
1833
1845
  attr_accessor :display_video360_advertiser_link
1834
1846
 
1835
- # A proposal for a link between a GA4 property and a Display & Video 360
1836
- # advertiser. A proposal is converted to a DisplayVideo360AdvertiserLink once
1837
- # approved. Google Analytics admins approve inbound proposals while Display &
1838
- # Video 360 admins approve outbound proposals.
1847
+ # A proposal for a link between a Google Analytics property and a Display &
1848
+ # Video 360 advertiser. A proposal is converted to a
1849
+ # DisplayVideo360AdvertiserLink once approved. Google Analytics admins approve
1850
+ # inbound proposals while Display & Video 360 admins approve outbound proposals.
1839
1851
  # Corresponds to the JSON property `displayVideo360AdvertiserLinkProposal`
1840
1852
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal]
1841
1853
  attr_accessor :display_video360_advertiser_link_proposal
@@ -1856,17 +1868,17 @@ module Google
1856
1868
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEventCreateRule]
1857
1869
  attr_accessor :event_create_rule
1858
1870
 
1859
- # A resource message representing a GA4 ExpandedDataSet.
1871
+ # A resource message representing an `ExpandedDataSet`.
1860
1872
  # Corresponds to the JSON property `expandedDataSet`
1861
1873
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaExpandedDataSet]
1862
1874
  attr_accessor :expanded_data_set
1863
1875
 
1864
- # A link between a GA4 property and a Firebase project.
1876
+ # A link between a Google Analytics property and a Firebase project.
1865
1877
  # Corresponds to the JSON property `firebaseLink`
1866
1878
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFirebaseLink]
1867
1879
  attr_accessor :firebase_link
1868
1880
 
1869
- # A link between a GA4 property and a Google Ads account.
1881
+ # A link between a Google Analytics property and a Google Ads account.
1870
1882
  # Corresponds to the JSON property `googleAdsLink`
1871
1883
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaGoogleAdsLink]
1872
1884
  attr_accessor :google_ads_link
@@ -1881,12 +1893,12 @@ module Google
1881
1893
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaMeasurementProtocolSecret]
1882
1894
  attr_accessor :measurement_protocol_secret
1883
1895
 
1884
- # A resource message representing a Google Analytics GA4 property.
1896
+ # A resource message representing a Google Analytics property.
1885
1897
  # Corresponds to the JSON property `property`
1886
1898
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty]
1887
1899
  attr_accessor :property
1888
1900
 
1889
- # A link between a GA4 property and a Search Ads 360 entity.
1901
+ # A link between a Google Analytics property and a Search Ads 360 entity.
1890
1902
  # Corresponds to the JSON property `searchAds360Link`
1891
1903
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link]
1892
1904
  attr_accessor :search_ads360_link
@@ -2427,7 +2439,7 @@ module Google
2427
2439
  class GoogleAnalyticsAdminV1alphaCreateRollupPropertyRequest
2428
2440
  include Google::Apis::Core::Hashable
2429
2441
 
2430
- # A resource message representing a Google Analytics GA4 property.
2442
+ # A resource message representing a Google Analytics property.
2431
2443
  # Corresponds to the JSON property `rollupProperty`
2432
2444
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty]
2433
2445
  attr_accessor :rollup_property
@@ -2453,7 +2465,7 @@ module Google
2453
2465
  class GoogleAnalyticsAdminV1alphaCreateRollupPropertyResponse
2454
2466
  include Google::Apis::Core::Hashable
2455
2467
 
2456
- # A resource message representing a Google Analytics GA4 property.
2468
+ # A resource message representing a Google Analytics property.
2457
2469
  # Corresponds to the JSON property `rollupProperty`
2458
2470
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty]
2459
2471
  attr_accessor :rollup_property
@@ -2474,56 +2486,6 @@ module Google
2474
2486
  end
2475
2487
  end
2476
2488
 
2477
- # Request message for CreateSubproperty RPC.
2478
- class GoogleAnalyticsAdminV1alphaCreateSubpropertyRequest
2479
- include Google::Apis::Core::Hashable
2480
-
2481
- # A resource message representing a Google Analytics GA4 property.
2482
- # Corresponds to the JSON property `subproperty`
2483
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty]
2484
- attr_accessor :subproperty
2485
-
2486
- # A resource message representing a GA4 Subproperty event filter.
2487
- # Corresponds to the JSON property `subpropertyEventFilter`
2488
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertyEventFilter]
2489
- attr_accessor :subproperty_event_filter
2490
-
2491
- def initialize(**args)
2492
- update!(**args)
2493
- end
2494
-
2495
- # Update properties of this object
2496
- def update!(**args)
2497
- @subproperty = args[:subproperty] if args.key?(:subproperty)
2498
- @subproperty_event_filter = args[:subproperty_event_filter] if args.key?(:subproperty_event_filter)
2499
- end
2500
- end
2501
-
2502
- # Response message for CreateSubproperty RPC.
2503
- class GoogleAnalyticsAdminV1alphaCreateSubpropertyResponse
2504
- include Google::Apis::Core::Hashable
2505
-
2506
- # A resource message representing a Google Analytics GA4 property.
2507
- # Corresponds to the JSON property `subproperty`
2508
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty]
2509
- attr_accessor :subproperty
2510
-
2511
- # A resource message representing a GA4 Subproperty event filter.
2512
- # Corresponds to the JSON property `subpropertyEventFilter`
2513
- # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertyEventFilter]
2514
- attr_accessor :subproperty_event_filter
2515
-
2516
- def initialize(**args)
2517
- update!(**args)
2518
- end
2519
-
2520
- # Update properties of this object
2521
- def update!(**args)
2522
- @subproperty = args[:subproperty] if args.key?(:subproperty)
2523
- @subproperty_event_filter = args[:subproperty_event_filter] if args.key?(:subproperty_event_filter)
2524
- end
2525
- end
2526
-
2527
2489
  # A definition for a CustomDimension.
2528
2490
  class GoogleAnalyticsAdminV1alphaCustomDimension
2529
2491
  include Google::Apis::Core::Hashable
@@ -2990,7 +2952,8 @@ module Google
2990
2952
  end
2991
2953
  end
2992
2954
 
2993
- # A link between a GA4 property and a Display & Video 360 advertiser.
2955
+ # A link between a Google Analytics property and a Display & Video 360
2956
+ # advertiser.
2994
2957
  class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLink
2995
2958
  include Google::Apis::Core::Hashable
2996
2959
 
@@ -3012,19 +2975,19 @@ module Google
3012
2975
  attr_accessor :advertiser_id
3013
2976
 
3014
2977
  # Immutable. Enables the import of campaign data from Display & Video 360 into
3015
- # the GA4 property. After link creation, this can only be updated from the
3016
- # Display & Video 360 product. If this field is not set on create, it will be
3017
- # defaulted to true.
2978
+ # the Google Analytics property. After link creation, this can only be updated
2979
+ # from the Display & Video 360 product. If this field is not set on create, it
2980
+ # will be defaulted to true.
3018
2981
  # Corresponds to the JSON property `campaignDataSharingEnabled`
3019
2982
  # @return [Boolean]
3020
2983
  attr_accessor :campaign_data_sharing_enabled
3021
2984
  alias_method :campaign_data_sharing_enabled?, :campaign_data_sharing_enabled
3022
2985
 
3023
2986
  # Immutable. Enables the import of cost data from Display & Video 360 into the
3024
- # GA4 property. This can only be enabled if campaign_data_sharing_enabled is
3025
- # enabled. After link creation, this can only be updated from the Display &
3026
- # Video 360 product. If this field is not set on create, it will be defaulted to
3027
- # true.
2987
+ # Google Analytics property. This can only be enabled if `
2988
+ # campaign_data_sharing_enabled` is true. After link creation, this can only be
2989
+ # updated from the Display & Video 360 product. If this field is not set on
2990
+ # create, it will be defaulted to true.
3028
2991
  # Corresponds to the JSON property `costDataSharingEnabled`
3029
2992
  # @return [Boolean]
3030
2993
  attr_accessor :cost_data_sharing_enabled
@@ -3052,10 +3015,10 @@ module Google
3052
3015
  end
3053
3016
  end
3054
3017
 
3055
- # A proposal for a link between a GA4 property and a Display & Video 360
3056
- # advertiser. A proposal is converted to a DisplayVideo360AdvertiserLink once
3057
- # approved. Google Analytics admins approve inbound proposals while Display &
3058
- # Video 360 admins approve outbound proposals.
3018
+ # A proposal for a link between a Google Analytics property and a Display &
3019
+ # Video 360 advertiser. A proposal is converted to a
3020
+ # DisplayVideo360AdvertiserLink once approved. Google Analytics admins approve
3021
+ # inbound proposals while Display & Video 360 admins approve outbound proposals.
3059
3022
  class GoogleAnalyticsAdminV1alphaDisplayVideo360AdvertiserLinkProposal
3060
3023
  include Google::Apis::Core::Hashable
3061
3024
 
@@ -3289,12 +3252,66 @@ module Google
3289
3252
  end
3290
3253
  end
3291
3254
 
3255
+ # An Event Edit Rule defines conditions that will trigger the creation of an
3256
+ # entirely new event based upon matched criteria of a source event. Additional
3257
+ # mutations of the parameters from the source event can be defined. Unlike Event
3258
+ # Create rules, Event Edit Rules are applied in their defined order. Event Edit
3259
+ # rules can't be used to modify an event created from an Event Create rule.
3260
+ class GoogleAnalyticsAdminV1alphaEventEditRule
3261
+ include Google::Apis::Core::Hashable
3262
+
3263
+ # Required. The display name of this event edit rule. Maximum of 255 characters.
3264
+ # Corresponds to the JSON property `displayName`
3265
+ # @return [String]
3266
+ attr_accessor :display_name
3267
+
3268
+ # Required. Conditions on the source event must match for this rule to be
3269
+ # applied. Must have at least one condition, and can have up to 10 max.
3270
+ # Corresponds to the JSON property `eventConditions`
3271
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaMatchingCondition>]
3272
+ attr_accessor :event_conditions
3273
+
3274
+ # Identifier. Resource name for this EventEditRule resource. Format: properties/`
3275
+ # property`/dataStreams/`data_stream`/eventEditRules/`event_edit_rule`
3276
+ # Corresponds to the JSON property `name`
3277
+ # @return [String]
3278
+ attr_accessor :name
3279
+
3280
+ # Required. Parameter mutations define parameter behavior on the new event, and
3281
+ # are applied in order. A maximum of 20 mutations can be applied.
3282
+ # Corresponds to the JSON property `parameterMutations`
3283
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaParameterMutation>]
3284
+ attr_accessor :parameter_mutations
3285
+
3286
+ # Output only. The order for which this rule will be processed. Rules with an
3287
+ # order value lower than this will be processed before this rule, rules with an
3288
+ # order value higher than this will be processed after this rule. New event edit
3289
+ # rules will be assigned an order value at the end of the order. This value does
3290
+ # not apply to event create rules.
3291
+ # Corresponds to the JSON property `processingOrder`
3292
+ # @return [Fixnum]
3293
+ attr_accessor :processing_order
3294
+
3295
+ def initialize(**args)
3296
+ update!(**args)
3297
+ end
3298
+
3299
+ # Update properties of this object
3300
+ def update!(**args)
3301
+ @display_name = args[:display_name] if args.key?(:display_name)
3302
+ @event_conditions = args[:event_conditions] if args.key?(:event_conditions)
3303
+ @name = args[:name] if args.key?(:name)
3304
+ @parameter_mutations = args[:parameter_mutations] if args.key?(:parameter_mutations)
3305
+ @processing_order = args[:processing_order] if args.key?(:processing_order)
3306
+ end
3307
+ end
3308
+
3292
3309
  # Event setting conditions to match an event.
3293
3310
  class GoogleAnalyticsAdminV1alphaEventMapping
3294
3311
  include Google::Apis::Core::Hashable
3295
3312
 
3296
- # Required. Name of the GA4 event. It must always be set. The max allowed
3297
- # display name length is 40 UTF-16 code units.
3313
+ # Required. Name of the Google Analytics event. It must always be set. The max
3314
+ # allowed display name length is 40 UTF-16 code units.
3298
3315
  # Corresponds to the JSON property `eventName`
3299
3316
  # @return [String]
3300
3317
  attr_accessor :event_name
@@ -3340,7 +3357,7 @@ module Google
3340
3357
  end
3341
3358
  end
3342
3359
 
3343
- # A resource message representing a GA4 ExpandedDataSet.
3360
+ # A resource message representing an `ExpandedDataSet`.
3344
3361
  class GoogleAnalyticsAdminV1alphaExpandedDataSet
3345
3362
  include Google::Apis::Core::Hashable
3346
3363
 
@@ -3606,7 +3623,7 @@ module Google
3606
3623
  end
3607
3624
  end
3608
3625
 
3609
- # A link between a GA4 property and a Firebase project.
3626
+ # A link between a Google Analytics property and a Firebase project.
3610
3627
  class GoogleAnalyticsAdminV1alphaFirebaseLink
3611
3628
  include Google::Apis::Core::Hashable
3612
3629
 
@@ -3670,7 +3687,7 @@ module Google
3670
3687
  end
3671
3688
  end
3672
3689
 
3673
- # A link between a GA4 property and a Google Ads account.
3690
+ # A link between a Google Analytics property and a Google Ads account.
3674
3691
  class GoogleAnalyticsAdminV1alphaGoogleAdsLink
3675
3692
  include Google::Apis::Core::Hashable
3676
3693
 
@@ -4347,6 +4364,33 @@ module Google
4347
4364
  end
4348
4365
  end
4349
4366
 
4367
+ # Response message for ListEventEditRules RPC.
4368
+ class GoogleAnalyticsAdminV1alphaListEventEditRulesResponse
4369
+ include Google::Apis::Core::Hashable
4370
+
4371
+ # List of EventEditRules. These will be ordered stably, but in an arbitrary
4372
+ # order.
4373
+ # Corresponds to the JSON property `eventEditRules`
4374
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEventEditRule>]
4375
+ attr_accessor :event_edit_rules
4376
+
4377
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
4378
+ # field is omitted, there are no subsequent pages.
4379
+ # Corresponds to the JSON property `nextPageToken`
4380
+ # @return [String]
4381
+ attr_accessor :next_page_token
4382
+
4383
+ def initialize(**args)
4384
+ update!(**args)
4385
+ end
4386
+
4387
+ # Update properties of this object
4388
+ def update!(**args)
4389
+ @event_edit_rules = args[:event_edit_rules] if args.key?(:event_edit_rules)
4390
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
4391
+ end
4392
+ end
4393
+
4350
4394
  # Response message for ListExpandedDataSets RPC.
4351
4395
  class GoogleAnalyticsAdminV1alphaListExpandedDataSetsResponse
4352
4396
  include Google::Apis::Core::Hashable
@@ -4782,7 +4826,7 @@ module Google
4782
4826
  end
4783
4827
  end
4784
4828
 
4785
- # A resource message representing a Google Analytics GA4 property.
4829
+ # A resource message representing a Google Analytics property.
4786
4830
  class GoogleAnalyticsAdminV1alphaProperty
4787
4831
  include Google::Apis::Core::Hashable
4788
4832
 
@@ -4888,7 +4932,7 @@ module Google
4888
4932
  end
4889
4933
  end
4890
4934
 
4891
- # A virtual resource representing metadata for a GA4 property.
4935
+ # A virtual resource representing metadata for a Google Analytics property.
4892
4936
  class GoogleAnalyticsAdminV1alphaPropertySummary
4893
4937
  include Google::Apis::Core::Hashable
4894
4938
 
@@ -4973,6 +5017,56 @@ module Google
4973
5017
  end
4974
5018
  end
4975
5019
 
5020
+ # Request message for CreateSubproperty RPC.
5021
+ class GoogleAnalyticsAdminV1alphaProvisionSubpropertyRequest
5022
+ include Google::Apis::Core::Hashable
5023
+
5024
+ # A resource message representing a Google Analytics property.
5025
+ # Corresponds to the JSON property `subproperty`
5026
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty]
5027
+ attr_accessor :subproperty
5028
+
5029
+ # A resource message representing a Google Analytics subproperty event filter.
5030
+ # Corresponds to the JSON property `subpropertyEventFilter`
5031
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertyEventFilter]
5032
+ attr_accessor :subproperty_event_filter
5033
+
5034
+ def initialize(**args)
5035
+ update!(**args)
5036
+ end
5037
+
5038
+ # Update properties of this object
5039
+ def update!(**args)
5040
+ @subproperty = args[:subproperty] if args.key?(:subproperty)
5041
+ @subproperty_event_filter = args[:subproperty_event_filter] if args.key?(:subproperty_event_filter)
5042
+ end
5043
+ end
5044
+
5045
+ # Response message for ProvisionSubproperty RPC.
5046
+ class GoogleAnalyticsAdminV1alphaProvisionSubpropertyResponse
5047
+ include Google::Apis::Core::Hashable
5048
+
5049
+ # A resource message representing a Google Analytics property.
5050
+ # Corresponds to the JSON property `subproperty`
5051
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaProperty]
5052
+ attr_accessor :subproperty
5053
+
5054
+ # A resource message representing a Google Analytics subproperty event filter.
5055
+ # Corresponds to the JSON property `subpropertyEventFilter`
5056
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSubpropertyEventFilter]
5057
+ attr_accessor :subproperty_event_filter
5058
+
5059
+ def initialize(**args)
5060
+ update!(**args)
5061
+ end
5062
+
5063
+ # Update properties of this object
5064
+ def update!(**args)
5065
+ @subproperty = args[:subproperty] if args.key?(:subproperty)
5066
+ @subproperty_event_filter = args[:subproperty_event_filter] if args.key?(:subproperty_event_filter)
5067
+ end
5068
+ end
5069
+
4976
5070
  # Request message for ReorderEventEditRules RPC.
4977
5071
  class GoogleAnalyticsAdminV1alphaReorderEventEditRulesRequest
4978
5072
  include Google::Apis::Core::Hashable
@@ -5248,7 +5342,7 @@ module Google
5248
5342
  end
5249
5343
  end
5250
5344
 
5251
- # A link between a GA4 property and a Search Ads 360 entity.
5345
+ # A link between a Google Analytics property and a Search Ads 360 entity.
5252
5346
  class GoogleAnalyticsAdminV1alphaSearchAds360Link
5253
5347
  include Google::Apis::Core::Hashable
5254
5348
 
@@ -5272,18 +5366,18 @@ module Google
5272
5366
  attr_accessor :advertiser_id
5273
5367
 
5274
5368
  # Immutable. Enables the import of campaign data from Search Ads 360 into the
5275
- # GA4 property. After link creation, this can only be updated from the Search
5276
- # Ads 360 product. If this field is not set on create, it will be defaulted to
5277
- # true.
5369
+ # Google Analytics property. After link creation, this can only be updated from
5370
+ # the Search Ads 360 product. If this field is not set on create, it will be
5371
+ # defaulted to true.
5278
5372
  # Corresponds to the JSON property `campaignDataSharingEnabled`
5279
5373
  # @return [Boolean]
5280
5374
  attr_accessor :campaign_data_sharing_enabled
5281
5375
  alias_method :campaign_data_sharing_enabled?, :campaign_data_sharing_enabled
5282
5376
 
5283
- # Immutable. Enables the import of cost data from Search Ads 360 to the GA4
5284
- # property. This can only be enabled if campaign_data_sharing_enabled is enabled.
5285
- # After link creation, this can only be updated from the Search Ads 360 product.
5286
- # If this field is not set on create, it will be defaulted to true.
5377
+ # Immutable. Enables the import of cost data from Search Ads 360 to the Google
5378
+ # Analytics property. This can only be enabled if campaign_data_sharing_enabled
5379
+ # is enabled. After link creation, this can only be updated from the Search Ads
5380
+ # 360 product. If this field is not set on create, it will be defaulted to true.
5287
5381
  # Corresponds to the JSON property `costDataSharingEnabled`
5288
5382
  # @return [Boolean]
5289
5383
  attr_accessor :cost_data_sharing_enabled
@@ -5362,7 +5456,7 @@ module Google
5362
5456
 
5363
5457
  # Optional. Resource name for a child property. If set, only return changes made
5364
5458
  # to this property or its child resources. Format: properties/`propertyId`
5365
- # Example: "properties/100"
5459
+ # Example: `properties/100`
5366
5460
  # Corresponds to the JSON property `property`
5367
5461
  # @return [String]
5368
5462
  attr_accessor :property
@@ -5458,7 +5552,7 @@ module Google
5458
5552
  end
5459
5553
  end
5460
5554
 
5461
- # A resource message representing a GA4 Subproperty event filter.
5555
+ # A resource message representing a Google Analytics subproperty event filter.
5462
5556
  class GoogleAnalyticsAdminV1alphaSubpropertyEventFilter
5463
5557
  include Google::Apis::Core::Hashable
5464
5558
 
@@ -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.74.0"
19
+ GEM_VERSION = "0.76.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.15.0"
22
+ GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240529"
25
+ REVISION = "20240929"
26
26
  end
27
27
  end
28
28
  end