google-apis-analyticsadmin_v1alpha 0.43.0 → 0.45.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: d10c7bcf6bd87478d2fd09151999264b8fc4adf6e0e1b2bf162bbf2193236fb0
4
- data.tar.gz: 907313022907a50e44abc7b3e30520de0371d1571e92b9e3ee733a8046023511
3
+ metadata.gz: 73b57fe447e2fc51d94329a3523349ff7248c3d1d9260ad6d98290e9a9fdc93f
4
+ data.tar.gz: 35465b8de277c261d05424494dbaa1464cfd98f8b5eb83436d15cd92cfaf1191
5
5
  SHA512:
6
- metadata.gz: c3c305530efce5fccaa62a2b1ce18461a3af6a9deb9d448a58c79fb21ab6c0fec4867b01e985968f5d119257eada6cf4aa7c60f5b80e83b9edda9aa3ec19069c
7
- data.tar.gz: eebba2ffeea7298f1b6b091590e1bce7f0dc3d083218cb5d5c10ef5600e78cc48ed692172c95592530d4a1fed00e30616e2f2237ebe8cab703bf89be748ea4fc
6
+ metadata.gz: 0fc2da45405f47830a40634eb8fc7786d75a0f56b4c67e6fb73e3083cc06215445264c4a49df7604365a731af900a848533f0ce5faccbc532bbf66d1a7e8e29e
7
+ data.tar.gz: 43ca41788f6059b4ff8a1f44d2445886ee6f84b30e5336c443bc6b5ce949b25d8b7d99cfb20ae508edf2ffe96b9928c0ffd1a5e7c7fe591bcf4d6fba553a345c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.45.0 (2023-02-05)
4
+
5
+ * Regenerated from discovery document revision 20230131
6
+ * Regenerated using generator version 0.11.1
7
+
8
+ ### v0.44.0 (2022-12-07)
9
+
10
+ * Regenerated from discovery document revision 20221205
11
+
3
12
  ### v0.43.0 (2022-11-06)
4
13
 
5
14
  * Regenerated from discovery document revision 20221101
@@ -1564,6 +1564,79 @@ module Google
1564
1564
  end
1565
1565
  end
1566
1566
 
1567
+ # A link between a GA4 Property and BigQuery project.
1568
+ class GoogleAnalyticsAdminV1alphaBigQueryLink
1569
+ include Google::Apis::Core::Hashable
1570
+
1571
+ # Output only. Time when the link was created.
1572
+ # Corresponds to the JSON property `createTime`
1573
+ # @return [String]
1574
+ attr_accessor :create_time
1575
+
1576
+ # If set true, enables daily data export to the linked Google Cloud project.
1577
+ # Corresponds to the JSON property `dailyExportEnabled`
1578
+ # @return [Boolean]
1579
+ attr_accessor :daily_export_enabled
1580
+ alias_method :daily_export_enabled?, :daily_export_enabled
1581
+
1582
+ # The list of event names that will be excluded from exports.
1583
+ # Corresponds to the JSON property `excludedEvents`
1584
+ # @return [Array<String>]
1585
+ attr_accessor :excluded_events
1586
+
1587
+ # The list of streams under the parent property for which data will be exported.
1588
+ # Format: properties/`property_id`/dataStreams/`stream_id` Example: ['properties/
1589
+ # 1000/dataStreams/2000']
1590
+ # Corresponds to the JSON property `exportStreams`
1591
+ # @return [Array<String>]
1592
+ attr_accessor :export_streams
1593
+
1594
+ # If set true, exported data will include advertising identifiers for mobile app
1595
+ # streams.
1596
+ # Corresponds to the JSON property `includeAdvertisingId`
1597
+ # @return [Boolean]
1598
+ attr_accessor :include_advertising_id
1599
+ alias_method :include_advertising_id?, :include_advertising_id
1600
+
1601
+ # Output only. Resource name of this BigQuery link. Format: 'properties/`
1602
+ # property_id`/bigQueryLinks/`bigquery_link_id`' Format: 'properties/1234/
1603
+ # bigQueryLinks/abc567'
1604
+ # Corresponds to the JSON property `name`
1605
+ # @return [String]
1606
+ attr_accessor :name
1607
+
1608
+ # Immutable. The linked Google Cloud project. When creating a BigQueryLink, you
1609
+ # may provide this resource name using either a project number or project ID.
1610
+ # Once this resource has been created, the returned project will always have a
1611
+ # project that contains a project number. Format: 'projects/`project number`'
1612
+ # Example: 'projects/1234'
1613
+ # Corresponds to the JSON property `project`
1614
+ # @return [String]
1615
+ attr_accessor :project
1616
+
1617
+ # If set true, enables streaming export to the linked Google Cloud project.
1618
+ # Corresponds to the JSON property `streamingExportEnabled`
1619
+ # @return [Boolean]
1620
+ attr_accessor :streaming_export_enabled
1621
+ alias_method :streaming_export_enabled?, :streaming_export_enabled
1622
+
1623
+ def initialize(**args)
1624
+ update!(**args)
1625
+ end
1626
+
1627
+ # Update properties of this object
1628
+ def update!(**args)
1629
+ @create_time = args[:create_time] if args.key?(:create_time)
1630
+ @daily_export_enabled = args[:daily_export_enabled] if args.key?(:daily_export_enabled)
1631
+ @excluded_events = args[:excluded_events] if args.key?(:excluded_events)
1632
+ @export_streams = args[:export_streams] if args.key?(:export_streams)
1633
+ @include_advertising_id = args[:include_advertising_id] if args.key?(:include_advertising_id)
1634
+ @name = args[:name] if args.key?(:name)
1635
+ @project = args[:project] if args.key?(:project)
1636
+ @streaming_export_enabled = args[:streaming_export_enabled] if args.key?(:streaming_export_enabled)
1637
+ end
1638
+ end
1639
+
1567
1640
  # Request message for CancelDisplayVideo360AdvertiserLinkProposal RPC.
1568
1641
  class GoogleAnalyticsAdminV1alphaCancelDisplayVideo360AdvertiserLinkProposalRequest
1569
1642
  include Google::Apis::Core::Hashable
@@ -1632,6 +1705,11 @@ module Google
1632
1705
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAttributionSettings]
1633
1706
  attr_accessor :attribution_settings
1634
1707
 
1708
+ # A link between a GA4 Property and BigQuery project.
1709
+ # Corresponds to the JSON property `bigqueryLink`
1710
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink]
1711
+ attr_accessor :bigquery_link
1712
+
1635
1713
  # A conversion event in a Google Analytics property.
1636
1714
  # Corresponds to the JSON property `conversionEvent`
1637
1715
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent]
@@ -1713,6 +1791,7 @@ module Google
1713
1791
  def update!(**args)
1714
1792
  @account = args[:account] if args.key?(:account)
1715
1793
  @attribution_settings = args[:attribution_settings] if args.key?(:attribution_settings)
1794
+ @bigquery_link = args[:bigquery_link] if args.key?(:bigquery_link)
1716
1795
  @conversion_event = args[:conversion_event] if args.key?(:conversion_event)
1717
1796
  @custom_dimension = args[:custom_dimension] if args.key?(:custom_dimension)
1718
1797
  @custom_metric = args[:custom_metric] if args.key?(:custom_metric)
@@ -2613,6 +2692,48 @@ module Google
2613
2692
  end
2614
2693
  end
2615
2694
 
2695
+ # Request for fetching the opt out status for the automated GA4 setup process.
2696
+ class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutRequest
2697
+ include Google::Apis::Core::Hashable
2698
+
2699
+ # Required. The UA property to get the opt out status. Note this request uses
2700
+ # the internal property ID, not the tracking ID of the form UA-XXXXXX-YY. Format:
2701
+ # properties/`internalWebPropertyId` Example: properties/1234
2702
+ # Corresponds to the JSON property `property`
2703
+ # @return [String]
2704
+ attr_accessor :property
2705
+
2706
+ def initialize(**args)
2707
+ update!(**args)
2708
+ end
2709
+
2710
+ # Update properties of this object
2711
+ def update!(**args)
2712
+ @property = args[:property] if args.key?(:property)
2713
+ end
2714
+ end
2715
+
2716
+ # Response message for fetching the opt out status for the automated GA4 setup
2717
+ # process.
2718
+ class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse
2719
+ include Google::Apis::Core::Hashable
2720
+
2721
+ # The opt out status for the UA property.
2722
+ # Corresponds to the JSON property `optOut`
2723
+ # @return [Boolean]
2724
+ attr_accessor :opt_out
2725
+ alias_method :opt_out?, :opt_out
2726
+
2727
+ def initialize(**args)
2728
+ update!(**args)
2729
+ end
2730
+
2731
+ # Update properties of this object
2732
+ def update!(**args)
2733
+ @opt_out = args[:opt_out] if args.key?(:opt_out)
2734
+ end
2735
+ end
2736
+
2616
2737
  # A link between a GA4 property and a Firebase project.
2617
2738
  class GoogleAnalyticsAdminV1alphaFirebaseLink
2618
2739
  include Google::Apis::Core::Hashable
@@ -2880,6 +3001,32 @@ module Google
2880
3001
  end
2881
3002
  end
2882
3003
 
3004
+ # Response message for ListBigQueryLinks RPC
3005
+ class GoogleAnalyticsAdminV1alphaListBigQueryLinksResponse
3006
+ include Google::Apis::Core::Hashable
3007
+
3008
+ # List of BigQueryLinks.
3009
+ # Corresponds to the JSON property `bigqueryLinks`
3010
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink>]
3011
+ attr_accessor :bigquery_links
3012
+
3013
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
3014
+ # field is omitted, there are no subsequent pages.
3015
+ # Corresponds to the JSON property `nextPageToken`
3016
+ # @return [String]
3017
+ attr_accessor :next_page_token
3018
+
3019
+ def initialize(**args)
3020
+ update!(**args)
3021
+ end
3022
+
3023
+ # Update properties of this object
3024
+ def update!(**args)
3025
+ @bigquery_links = args[:bigquery_links] if args.key?(:bigquery_links)
3026
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3027
+ end
3028
+ end
3029
+
2883
3030
  # Response message for ListConversionEvents RPC.
2884
3031
  class GoogleAnalyticsAdminV1alphaListConversionEventsResponse
2885
3032
  include Google::Apis::Core::Hashable
@@ -3765,6 +3912,48 @@ module Google
3765
3912
  end
3766
3913
  end
3767
3914
 
3915
+ # Request for setting the opt out status for the automated GA4 setup process.
3916
+ class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutRequest
3917
+ include Google::Apis::Core::Hashable
3918
+
3919
+ # The status to set.
3920
+ # Corresponds to the JSON property `optOut`
3921
+ # @return [Boolean]
3922
+ attr_accessor :opt_out
3923
+ alias_method :opt_out?, :opt_out
3924
+
3925
+ # Required. The UA property to set the opt out status. Note this request uses
3926
+ # the internal property ID, not the tracking ID of the form UA-XXXXXX-YY. Format:
3927
+ # properties/`internalWebPropertyId` Example: properties/1234
3928
+ # Corresponds to the JSON property `property`
3929
+ # @return [String]
3930
+ attr_accessor :property
3931
+
3932
+ def initialize(**args)
3933
+ update!(**args)
3934
+ end
3935
+
3936
+ # Update properties of this object
3937
+ def update!(**args)
3938
+ @opt_out = args[:opt_out] if args.key?(:opt_out)
3939
+ @property = args[:property] if args.key?(:property)
3940
+ end
3941
+ end
3942
+
3943
+ # Response message for setting the opt out status for the automated GA4 setup
3944
+ # process.
3945
+ class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse
3946
+ include Google::Apis::Core::Hashable
3947
+
3948
+ def initialize(**args)
3949
+ update!(**args)
3950
+ end
3951
+
3952
+ # Update properties of this object
3953
+ def update!(**args)
3954
+ end
3955
+ end
3956
+
3768
3957
  # Request message for UpdateUserLink RPC.
3769
3958
  class GoogleAnalyticsAdminV1alphaUpdateUserLinkRequest
3770
3959
  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.43.0"
19
+ GEM_VERSION = "0.45.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221101"
25
+ REVISION = "20230131"
26
26
  end
27
27
  end
28
28
  end
@@ -346,6 +346,12 @@ module Google
346
346
  include Google::Apis::Core::JsonObjectSupport
347
347
  end
348
348
 
349
+ class GoogleAnalyticsAdminV1alphaBigQueryLink
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
349
355
  class GoogleAnalyticsAdminV1alphaCancelDisplayVideo360AdvertiserLinkProposalRequest
350
356
  class Representation < Google::Apis::Core::JsonRepresentation; end
351
357
 
@@ -484,6 +490,18 @@ module Google
484
490
  include Google::Apis::Core::JsonObjectSupport
485
491
  end
486
492
 
493
+ class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutRequest
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
499
+ class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse
500
+ class Representation < Google::Apis::Core::JsonRepresentation; end
501
+
502
+ include Google::Apis::Core::JsonObjectSupport
503
+ end
504
+
487
505
  class GoogleAnalyticsAdminV1alphaFirebaseLink
488
506
  class Representation < Google::Apis::Core::JsonRepresentation; end
489
507
 
@@ -532,6 +550,12 @@ module Google
532
550
  include Google::Apis::Core::JsonObjectSupport
533
551
  end
534
552
 
553
+ class GoogleAnalyticsAdminV1alphaListBigQueryLinksResponse
554
+ class Representation < Google::Apis::Core::JsonRepresentation; end
555
+
556
+ include Google::Apis::Core::JsonObjectSupport
557
+ end
558
+
535
559
  class GoogleAnalyticsAdminV1alphaListConversionEventsResponse
536
560
  class Representation < Google::Apis::Core::JsonRepresentation; end
537
561
 
@@ -670,6 +694,18 @@ module Google
670
694
  include Google::Apis::Core::JsonObjectSupport
671
695
  end
672
696
 
697
+ class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutRequest
698
+ class Representation < Google::Apis::Core::JsonRepresentation; end
699
+
700
+ include Google::Apis::Core::JsonObjectSupport
701
+ end
702
+
703
+ class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse
704
+ class Representation < Google::Apis::Core::JsonRepresentation; end
705
+
706
+ include Google::Apis::Core::JsonObjectSupport
707
+ end
708
+
673
709
  class GoogleAnalyticsAdminV1alphaUpdateUserLinkRequest
674
710
  class Representation < Google::Apis::Core::JsonRepresentation; end
675
711
 
@@ -1184,6 +1220,20 @@ module Google
1184
1220
  end
1185
1221
  end
1186
1222
 
1223
+ class GoogleAnalyticsAdminV1alphaBigQueryLink
1224
+ # @private
1225
+ class Representation < Google::Apis::Core::JsonRepresentation
1226
+ property :create_time, as: 'createTime'
1227
+ property :daily_export_enabled, as: 'dailyExportEnabled'
1228
+ collection :excluded_events, as: 'excludedEvents'
1229
+ collection :export_streams, as: 'exportStreams'
1230
+ property :include_advertising_id, as: 'includeAdvertisingId'
1231
+ property :name, as: 'name'
1232
+ property :project, as: 'project'
1233
+ property :streaming_export_enabled, as: 'streamingExportEnabled'
1234
+ end
1235
+ end
1236
+
1187
1237
  class GoogleAnalyticsAdminV1alphaCancelDisplayVideo360AdvertiserLinkProposalRequest
1188
1238
  # @private
1189
1239
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1209,6 +1259,8 @@ module Google
1209
1259
 
1210
1260
  property :attribution_settings, as: 'attributionSettings', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAttributionSettings, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAttributionSettings::Representation
1211
1261
 
1262
+ property :bigquery_link, as: 'bigqueryLink', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink::Representation
1263
+
1212
1264
  property :conversion_event, as: 'conversionEvent', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent::Representation
1213
1265
 
1214
1266
  property :custom_dimension, as: 'customDimension', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCustomDimension, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCustomDimension::Representation
@@ -1458,6 +1510,20 @@ module Google
1458
1510
  end
1459
1511
  end
1460
1512
 
1513
+ class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutRequest
1514
+ # @private
1515
+ class Representation < Google::Apis::Core::JsonRepresentation
1516
+ property :property, as: 'property'
1517
+ end
1518
+ end
1519
+
1520
+ class GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse
1521
+ # @private
1522
+ class Representation < Google::Apis::Core::JsonRepresentation
1523
+ property :opt_out, as: 'optOut'
1524
+ end
1525
+ end
1526
+
1461
1527
  class GoogleAnalyticsAdminV1alphaFirebaseLink
1462
1528
  # @private
1463
1529
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1533,6 +1599,15 @@ module Google
1533
1599
  end
1534
1600
  end
1535
1601
 
1602
+ class GoogleAnalyticsAdminV1alphaListBigQueryLinksResponse
1603
+ # @private
1604
+ class Representation < Google::Apis::Core::JsonRepresentation
1605
+ collection :bigquery_links, as: 'bigqueryLinks', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink::Representation
1606
+
1607
+ property :next_page_token, as: 'nextPageToken'
1608
+ end
1609
+ end
1610
+
1536
1611
  class GoogleAnalyticsAdminV1alphaListConversionEventsResponse
1537
1612
  # @private
1538
1613
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1776,6 +1851,20 @@ module Google
1776
1851
  end
1777
1852
  end
1778
1853
 
1854
+ class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutRequest
1855
+ # @private
1856
+ class Representation < Google::Apis::Core::JsonRepresentation
1857
+ property :opt_out, as: 'optOut'
1858
+ property :property, as: 'property'
1859
+ end
1860
+ end
1861
+
1862
+ class GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse
1863
+ # @private
1864
+ class Representation < Google::Apis::Core::JsonRepresentation
1865
+ end
1866
+ end
1867
+
1779
1868
  class GoogleAnalyticsAdminV1alphaUpdateUserLinkRequest
1780
1869
  # @private
1781
1870
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -791,6 +791,37 @@ module Google
791
791
  execute_or_queue_command(command, &block)
792
792
  end
793
793
 
794
+ # Fetches the opt out status for the automated GA4 setup process for a UA
795
+ # property. Note: this has no effect on GA4 property.
796
+ # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutRequest] google_analytics_admin_v1alpha_fetch_automated_ga4_configuration_opt_out_request_object
797
+ # @param [String] fields
798
+ # Selector specifying which fields to include in a partial response.
799
+ # @param [String] quota_user
800
+ # Available to use for quota purposes for server-side applications. Can be any
801
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
802
+ # @param [Google::Apis::RequestOptions] options
803
+ # Request-specific options
804
+ #
805
+ # @yield [result, err] Result & error if block supplied
806
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse] parsed result object
807
+ # @yieldparam err [StandardError] error object if request failed
808
+ #
809
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse]
810
+ #
811
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
812
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
813
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
814
+ def fetch_property_automated_ga4_configuration_opt_out(google_analytics_admin_v1alpha_fetch_automated_ga4_configuration_opt_out_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
815
+ command = make_simple_command(:post, 'v1alpha/properties:fetchAutomatedGa4ConfigurationOptOut', options)
816
+ command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutRequest::Representation
817
+ command.request_object = google_analytics_admin_v1alpha_fetch_automated_ga4_configuration_opt_out_request_object
818
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse::Representation
819
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaFetchAutomatedGa4ConfigurationOptOutResponse
820
+ command.query['fields'] = fields unless fields.nil?
821
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
822
+ execute_or_queue_command(command, &block)
823
+ end
824
+
794
825
  # Lookup for a single "GA4" Property.
795
826
  # @param [String] name
796
827
  # Required. The name of the property to lookup. Format: properties/`property_id`
@@ -1055,6 +1086,37 @@ module Google
1055
1086
  execute_or_queue_command(command, &block)
1056
1087
  end
1057
1088
 
1089
+ # Sets the opt out status for the automated GA4 setup process for a UA property.
1090
+ # Note: this has no effect on GA4 property.
1091
+ # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutRequest] google_analytics_admin_v1alpha_set_automated_ga4_configuration_opt_out_request_object
1092
+ # @param [String] fields
1093
+ # Selector specifying which fields to include in a partial response.
1094
+ # @param [String] quota_user
1095
+ # Available to use for quota purposes for server-side applications. Can be any
1096
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1097
+ # @param [Google::Apis::RequestOptions] options
1098
+ # Request-specific options
1099
+ #
1100
+ # @yield [result, err] Result & error if block supplied
1101
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse] parsed result object
1102
+ # @yieldparam err [StandardError] error object if request failed
1103
+ #
1104
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse]
1105
+ #
1106
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1107
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1108
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1109
+ def set_property_automated_ga4_configuration_opt_out(google_analytics_admin_v1alpha_set_automated_ga4_configuration_opt_out_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
1110
+ command = make_simple_command(:post, 'v1alpha/properties:setAutomatedGa4ConfigurationOptOut', options)
1111
+ command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutRequest::Representation
1112
+ command.request_object = google_analytics_admin_v1alpha_set_automated_ga4_configuration_opt_out_request_object
1113
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse::Representation
1114
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSetAutomatedGa4ConfigurationOptOutResponse
1115
+ command.query['fields'] = fields unless fields.nil?
1116
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1117
+ execute_or_queue_command(command, &block)
1118
+ end
1119
+
1058
1120
  # Updates attribution settings on a property.
1059
1121
  # @param [String] name
1060
1122
  # Output only. Resource name of this attribution settings resource. Format:
@@ -1351,6 +1413,81 @@ module Google
1351
1413
  execute_or_queue_command(command, &block)
1352
1414
  end
1353
1415
 
1416
+ # Lookup for a single BigQuery Link.
1417
+ # @param [String] name
1418
+ # Required. The name of the BigQuery link to lookup. Format: properties/`
1419
+ # property_id`/bigQueryLinks/`bigquery_link_id` Example: properties/123/
1420
+ # bigQueryLinks/456
1421
+ # @param [String] fields
1422
+ # Selector specifying which fields to include in a partial response.
1423
+ # @param [String] quota_user
1424
+ # Available to use for quota purposes for server-side applications. Can be any
1425
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1426
+ # @param [Google::Apis::RequestOptions] options
1427
+ # Request-specific options
1428
+ #
1429
+ # @yield [result, err] Result & error if block supplied
1430
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink] parsed result object
1431
+ # @yieldparam err [StandardError] error object if request failed
1432
+ #
1433
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink]
1434
+ #
1435
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1436
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1437
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1438
+ def get_property_big_query_link(name, fields: nil, quota_user: nil, options: nil, &block)
1439
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
1440
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink::Representation
1441
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaBigQueryLink
1442
+ command.params['name'] = name unless name.nil?
1443
+ command.query['fields'] = fields unless fields.nil?
1444
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1445
+ execute_or_queue_command(command, &block)
1446
+ end
1447
+
1448
+ # Lists BigQuery Links on a property.
1449
+ # @param [String] parent
1450
+ # Required. The name of the property to list BigQuery links under. Format:
1451
+ # properties/`property_id` Example: properties/1234
1452
+ # @param [Fixnum] page_size
1453
+ # The maximum number of resources to return. The service may return fewer than
1454
+ # this value, even if there are additional pages. If unspecified, at most 50
1455
+ # resources will be returned. The maximum value is 200; (higher values will be
1456
+ # coerced to the maximum)
1457
+ # @param [String] page_token
1458
+ # A page token, received from a previous `ListBigQueryLinks` call. Provide this
1459
+ # to retrieve the subsequent page. When paginating, all other parameters
1460
+ # provided to `ListBigQueryLinks` must match the call that provided the page
1461
+ # token.
1462
+ # @param [String] fields
1463
+ # Selector specifying which fields to include in a partial response.
1464
+ # @param [String] quota_user
1465
+ # Available to use for quota purposes for server-side applications. Can be any
1466
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
1467
+ # @param [Google::Apis::RequestOptions] options
1468
+ # Request-specific options
1469
+ #
1470
+ # @yield [result, err] Result & error if block supplied
1471
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListBigQueryLinksResponse] parsed result object
1472
+ # @yieldparam err [StandardError] error object if request failed
1473
+ #
1474
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListBigQueryLinksResponse]
1475
+ #
1476
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1477
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1478
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
1479
+ def list_property_big_query_links(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1480
+ command = make_simple_command(:get, 'v1alpha/{+parent}/bigQueryLinks', options)
1481
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListBigQueryLinksResponse::Representation
1482
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListBigQueryLinksResponse
1483
+ command.params['parent'] = parent unless parent.nil?
1484
+ command.query['pageSize'] = page_size unless page_size.nil?
1485
+ command.query['pageToken'] = page_token unless page_token.nil?
1486
+ command.query['fields'] = fields unless fields.nil?
1487
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
1488
+ execute_or_queue_command(command, &block)
1489
+ end
1490
+
1354
1491
  # Creates a conversion event with the specified attributes.
1355
1492
  # @param [String] parent
1356
1493
  # Required. The resource name of the parent property where this conversion event
@@ -2701,7 +2838,8 @@ module Google
2701
2838
  # @param [String] page_token
2702
2839
  # A page token, received from a previous `ListFirebaseLinks` call. Provide this
2703
2840
  # to retrieve the subsequent page. When paginating, all other parameters
2704
- # provided to `ListProperties` must match the call that provided the page token.
2841
+ # provided to `ListFirebaseLinks` must match the call that provided the page
2842
+ # token.
2705
2843
  # @param [String] fields
2706
2844
  # Selector specifying which fields to include in a partial response.
2707
2845
  # @param [String] quota_user
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.43.0
4
+ version: 0.45.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-11-07 00:00:00.000000000 Z
11
+ date: 2023-02-05 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.43.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.45.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Analytics Admin API V1alpha