google-apis-analyticsadmin_v1alpha 0.60.0 → 0.62.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: 87b0ca3f585446d291a820d4eb7f7eda558d2618f656ff4e7fd75d2401340114
4
- data.tar.gz: 701b5ed42ea20a895b8151b4d2b9c35a82daba0361b9a8b73c4a8e289f548ec2
3
+ metadata.gz: 4b8163e48bb3a74706a337bc1412efc2c651ff8105cfa635f15dec448510b083
4
+ data.tar.gz: df55fa214cc47b02385bd87b522a797e94f2fb6b22ac46ced03671c272bb7045
5
5
  SHA512:
6
- metadata.gz: 45f14ebe9d2d6259266b9d94aa97d9cdbd5864913d0baf97a8d79369ef9be479dbfb903c728a80ae080a7d6f5b65dc80e5e03a56d78436720442a289c79783db
7
- data.tar.gz: db2d7c19ea8adaa46e91d8988e29f12005b7f978050349bab8e983bc1bd9d9a5ab10189ac43375486ebfaf3c4e6ceab914eb54fa44e7a667e3bddef05613bb31
6
+ metadata.gz: 6506af0bed893115e26c6eca454baeb25dd9bc48a94ce74bda3f7147729546e557aed04e5d10ac99245d73713608ba1aea0a74981dcf90014c02c755139e8c0f
7
+ data.tar.gz: bd5d17180a50c377aed07a2d5475b0eb363ec38ca9eeda68de3ba702c868e0bd1533523de0aa2f1962aa93ee3e185bbdc42450895a45e69fba6c58ab899f9ac9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.62.0 (2023-08-27)
4
+
5
+ * Regenerated from discovery document revision 20230823
6
+
7
+ ### v0.61.0 (2023-08-13)
8
+
9
+ * Regenerated from discovery document revision 20230809
10
+
3
11
  ### v0.60.0 (2023-08-06)
4
12
 
5
13
  * Regenerated from discovery document revision 20230802
@@ -1773,12 +1773,6 @@ module Google
1773
1773
  attr_accessor :daily_export_enabled
1774
1774
  alias_method :daily_export_enabled?, :daily_export_enabled
1775
1775
 
1776
- # If set true, enables enterprise export to the linked Google Cloud project.
1777
- # Corresponds to the JSON property `enterpriseExportEnabled`
1778
- # @return [Boolean]
1779
- attr_accessor :enterprise_export_enabled
1780
- alias_method :enterprise_export_enabled?, :enterprise_export_enabled
1781
-
1782
1776
  # The list of event names that will be excluded from exports.
1783
1777
  # Corresponds to the JSON property `excludedEvents`
1784
1778
  # @return [Array<String>]
@@ -1791,6 +1785,12 @@ module Google
1791
1785
  # @return [Array<String>]
1792
1786
  attr_accessor :export_streams
1793
1787
 
1788
+ # If set true, enables fresh daily export to the linked Google Cloud project.
1789
+ # Corresponds to the JSON property `freshDailyExportEnabled`
1790
+ # @return [Boolean]
1791
+ attr_accessor :fresh_daily_export_enabled
1792
+ alias_method :fresh_daily_export_enabled?, :fresh_daily_export_enabled
1793
+
1794
1794
  # If set true, exported data will include advertising identifiers for mobile app
1795
1795
  # streams.
1796
1796
  # Corresponds to the JSON property `includeAdvertisingId`
@@ -1828,9 +1828,9 @@ module Google
1828
1828
  def update!(**args)
1829
1829
  @create_time = args[:create_time] if args.key?(:create_time)
1830
1830
  @daily_export_enabled = args[:daily_export_enabled] if args.key?(:daily_export_enabled)
1831
- @enterprise_export_enabled = args[:enterprise_export_enabled] if args.key?(:enterprise_export_enabled)
1832
1831
  @excluded_events = args[:excluded_events] if args.key?(:excluded_events)
1833
1832
  @export_streams = args[:export_streams] if args.key?(:export_streams)
1833
+ @fresh_daily_export_enabled = args[:fresh_daily_export_enabled] if args.key?(:fresh_daily_export_enabled)
1834
1834
  @include_advertising_id = args[:include_advertising_id] if args.key?(:include_advertising_id)
1835
1835
  @name = args[:name] if args.key?(:name)
1836
1836
  @project = args[:project] if args.key?(:project)
@@ -2015,6 +2015,11 @@ module Google
2015
2015
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link]
2016
2016
  attr_accessor :search_ads360_link
2017
2017
 
2018
+ # SKAdNetwork conversion value schema of an iOS stream.
2019
+ # Corresponds to the JSON property `skadnetworkConversionValueSchema`
2020
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema]
2021
+ attr_accessor :skadnetwork_conversion_value_schema
2022
+
2018
2023
  def initialize(**args)
2019
2024
  update!(**args)
2020
2025
  end
@@ -2043,6 +2048,7 @@ module Google
2043
2048
  @measurement_protocol_secret = args[:measurement_protocol_secret] if args.key?(:measurement_protocol_secret)
2044
2049
  @property = args[:property] if args.key?(:property)
2045
2050
  @search_ads360_link = args[:search_ads360_link] if args.key?(:search_ads360_link)
2051
+ @skadnetwork_conversion_value_schema = args[:skadnetwork_conversion_value_schema] if args.key?(:skadnetwork_conversion_value_schema)
2046
2052
  end
2047
2053
  end
2048
2054
 
@@ -2313,6 +2319,13 @@ module Google
2313
2319
  class GoogleAnalyticsAdminV1alphaConversionEvent
2314
2320
  include Google::Apis::Core::Hashable
2315
2321
 
2322
+ # Optional. The method by which conversions will be counted across multiple
2323
+ # events within a session. If this value is not provided, it will be set to `
2324
+ # ONCE_PER_EVENT`.
2325
+ # Corresponds to the JSON property `countingMethod`
2326
+ # @return [String]
2327
+ attr_accessor :counting_method
2328
+
2316
2329
  # Output only. Time when this conversion event was created in the property.
2317
2330
  # Corresponds to the JSON property `createTime`
2318
2331
  # @return [String]
@@ -2354,6 +2367,7 @@ module Google
2354
2367
 
2355
2368
  # Update properties of this object
2356
2369
  def update!(**args)
2370
+ @counting_method = args[:counting_method] if args.key?(:counting_method)
2357
2371
  @create_time = args[:create_time] if args.key?(:create_time)
2358
2372
  @custom = args[:custom] if args.key?(:custom)
2359
2373
  @deletable = args[:deletable] if args.key?(:deletable)
@@ -2362,6 +2376,61 @@ module Google
2362
2376
  end
2363
2377
  end
2364
2378
 
2379
+ # Conversion value settings for a postback window for SKAdNetwork conversion
2380
+ # value schema.
2381
+ class GoogleAnalyticsAdminV1alphaConversionValues
2382
+ include Google::Apis::Core::Hashable
2383
+
2384
+ # Required. A coarse grained conversion value. This value is not guaranteed to
2385
+ # be unique.
2386
+ # Corresponds to the JSON property `coarseValue`
2387
+ # @return [String]
2388
+ attr_accessor :coarse_value
2389
+
2390
+ # Display name of the SKAdNetwork conversion value. The max allowed display name
2391
+ # length is 50 UTF-16 code units.
2392
+ # Corresponds to the JSON property `displayName`
2393
+ # @return [String]
2394
+ attr_accessor :display_name
2395
+
2396
+ # Event conditions that must be met for this Conversion Value to be achieved.
2397
+ # The conditions in this list are ANDed together. It must have minimum of 1
2398
+ # entry and maximum of 3 entries, if the postback window is enabled.
2399
+ # Corresponds to the JSON property `eventMappings`
2400
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEventMapping>]
2401
+ attr_accessor :event_mappings
2402
+
2403
+ # The fine-grained conversion value. This is applicable only to the first
2404
+ # postback window. Its valid values are [0,63], both inclusive. It must be set
2405
+ # for postback window 1, and must not be set for postback window 2 & 3. This
2406
+ # value is not guaranteed to be unique. If the configuration for the first
2407
+ # postback window is re-used for second or third postback windows this field has
2408
+ # no effect.
2409
+ # Corresponds to the JSON property `fineValue`
2410
+ # @return [Fixnum]
2411
+ attr_accessor :fine_value
2412
+
2413
+ # If true, the SDK should lock to this conversion value for the current postback
2414
+ # window.
2415
+ # Corresponds to the JSON property `lockEnabled`
2416
+ # @return [Boolean]
2417
+ attr_accessor :lock_enabled
2418
+ alias_method :lock_enabled?, :lock_enabled
2419
+
2420
+ def initialize(**args)
2421
+ update!(**args)
2422
+ end
2423
+
2424
+ # Update properties of this object
2425
+ def update!(**args)
2426
+ @coarse_value = args[:coarse_value] if args.key?(:coarse_value)
2427
+ @display_name = args[:display_name] if args.key?(:display_name)
2428
+ @event_mappings = args[:event_mappings] if args.key?(:event_mappings)
2429
+ @fine_value = args[:fine_value] if args.key?(:fine_value)
2430
+ @lock_enabled = args[:lock_enabled] if args.key?(:lock_enabled)
2431
+ end
2432
+ end
2433
+
2365
2434
  # Request message for CreateAccessBinding RPC.
2366
2435
  class GoogleAnalyticsAdminV1alphaCreateAccessBindingRequest
2367
2436
  include Google::Apis::Core::Hashable
@@ -3202,6 +3271,57 @@ module Google
3202
3271
  end
3203
3272
  end
3204
3273
 
3274
+ # Event setting conditions to match an event.
3275
+ class GoogleAnalyticsAdminV1alphaEventMapping
3276
+ include Google::Apis::Core::Hashable
3277
+
3278
+ # Required. Name of the GA4 event. It must always be set. The max allowed
3279
+ # display name length is 40 UTF-16 code units.
3280
+ # Corresponds to the JSON property `eventName`
3281
+ # @return [String]
3282
+ attr_accessor :event_name
3283
+
3284
+ # The maximum number of times the event occurred. If not set, maximum event
3285
+ # count won't be checked.
3286
+ # Corresponds to the JSON property `maxEventCount`
3287
+ # @return [Fixnum]
3288
+ attr_accessor :max_event_count
3289
+
3290
+ # The maximum revenue generated due to the event. Revenue currency will be
3291
+ # defined at the property level. If not set, maximum event value won't be
3292
+ # checked.
3293
+ # Corresponds to the JSON property `maxEventValue`
3294
+ # @return [Float]
3295
+ attr_accessor :max_event_value
3296
+
3297
+ # At least one of the following four min/max values must be set. The values set
3298
+ # will be ANDed together to qualify an event. The minimum number of times the
3299
+ # event occurred. If not set, minimum event count won't be checked.
3300
+ # Corresponds to the JSON property `minEventCount`
3301
+ # @return [Fixnum]
3302
+ attr_accessor :min_event_count
3303
+
3304
+ # The minimum revenue generated due to the event. Revenue currency will be
3305
+ # defined at the property level. If not set, minimum event value won't be
3306
+ # checked.
3307
+ # Corresponds to the JSON property `minEventValue`
3308
+ # @return [Float]
3309
+ attr_accessor :min_event_value
3310
+
3311
+ def initialize(**args)
3312
+ update!(**args)
3313
+ end
3314
+
3315
+ # Update properties of this object
3316
+ def update!(**args)
3317
+ @event_name = args[:event_name] if args.key?(:event_name)
3318
+ @max_event_count = args[:max_event_count] if args.key?(:max_event_count)
3319
+ @max_event_value = args[:max_event_value] if args.key?(:max_event_value)
3320
+ @min_event_count = args[:min_event_count] if args.key?(:min_event_count)
3321
+ @min_event_value = args[:min_event_value] if args.key?(:min_event_value)
3322
+ end
3323
+ end
3324
+
3205
3325
  # A resource message representing a GA4 ExpandedDataSet.
3206
3326
  class GoogleAnalyticsAdminV1alphaExpandedDataSet
3207
3327
  include Google::Apis::Core::Hashable
@@ -4221,6 +4341,34 @@ module Google
4221
4341
  end
4222
4342
  end
4223
4343
 
4344
+ # Response message for ListSKAdNetworkConversionValueSchemas RPC
4345
+ class GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse
4346
+ include Google::Apis::Core::Hashable
4347
+
4348
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
4349
+ # field is omitted, there are no subsequent pages. Currently, Google Analytics
4350
+ # supports only one SKAdNetworkConversionValueSchema per dataStream, so this
4351
+ # will never be populated.
4352
+ # Corresponds to the JSON property `nextPageToken`
4353
+ # @return [String]
4354
+ attr_accessor :next_page_token
4355
+
4356
+ # List of SKAdNetworkConversionValueSchemas. This will have at most one value.
4357
+ # Corresponds to the JSON property `skadnetworkConversionValueSchemas`
4358
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema>]
4359
+ attr_accessor :skadnetwork_conversion_value_schemas
4360
+
4361
+ def initialize(**args)
4362
+ update!(**args)
4363
+ end
4364
+
4365
+ # Update properties of this object
4366
+ def update!(**args)
4367
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
4368
+ @skadnetwork_conversion_value_schemas = args[:skadnetwork_conversion_value_schemas] if args.key?(:skadnetwork_conversion_value_schemas)
4369
+ end
4370
+ end
4371
+
4224
4372
  # Response message for ListSearchAds360Links RPC.
4225
4373
  class GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse
4226
4374
  include Google::Apis::Core::Hashable
@@ -4410,6 +4558,40 @@ module Google
4410
4558
  end
4411
4559
  end
4412
4560
 
4561
+ # Settings for a SKAdNetwork conversion postback window.
4562
+ class GoogleAnalyticsAdminV1alphaPostbackWindow
4563
+ include Google::Apis::Core::Hashable
4564
+
4565
+ # Ordering of the repeated field will be used to prioritize the conversion value
4566
+ # settings. Lower indexed entries are prioritized higher. The first conversion
4567
+ # value setting that evaluates to true will be selected. It must have at least
4568
+ # one entry if enable_postback_window_settings is set to true. It can have
4569
+ # maximum of 128 entries.
4570
+ # Corresponds to the JSON property `conversionValues`
4571
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionValues>]
4572
+ attr_accessor :conversion_values
4573
+
4574
+ # If enable_postback_window_settings is true, conversion_values must be
4575
+ # populated and will be used for determining when and how to set the Conversion
4576
+ # Value on a client device and exporting schema to linked Ads accounts. If false,
4577
+ # the settings are not used, but are retained in case they may be used in the
4578
+ # future. This must always be true for postback_window_one.
4579
+ # Corresponds to the JSON property `postbackWindowSettingsEnabled`
4580
+ # @return [Boolean]
4581
+ attr_accessor :postback_window_settings_enabled
4582
+ alias_method :postback_window_settings_enabled?, :postback_window_settings_enabled
4583
+
4584
+ def initialize(**args)
4585
+ update!(**args)
4586
+ end
4587
+
4588
+ # Update properties of this object
4589
+ def update!(**args)
4590
+ @conversion_values = args[:conversion_values] if args.key?(:conversion_values)
4591
+ @postback_window_settings_enabled = args[:postback_window_settings_enabled] if args.key?(:postback_window_settings_enabled)
4592
+ end
4593
+ end
4594
+
4413
4595
  # A resource message representing a Google Analytics GA4 property.
4414
4596
  class GoogleAnalyticsAdminV1alphaProperty
4415
4597
  include Google::Apis::Core::Hashable
@@ -4756,6 +4938,56 @@ module Google
4756
4938
  end
4757
4939
  end
4758
4940
 
4941
+ # SKAdNetwork conversion value schema of an iOS stream.
4942
+ class GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
4943
+ include Google::Apis::Core::Hashable
4944
+
4945
+ # If enabled, the GA SDK will set conversion values using this schema definition,
4946
+ # and schema will be exported to any Google Ads accounts linked to this
4947
+ # property. If disabled, the GA SDK will not automatically set conversion values,
4948
+ # and also the schema will not be exported to Ads.
4949
+ # Corresponds to the JSON property `applyConversionValues`
4950
+ # @return [Boolean]
4951
+ attr_accessor :apply_conversion_values
4952
+ alias_method :apply_conversion_values?, :apply_conversion_values
4953
+
4954
+ # Output only. Resource name of the schema. This will be child of ONLY an iOS
4955
+ # stream, and there can be at most one such child under an iOS stream. Format:
4956
+ # properties/`property`/dataStreams/`dataStream`/
4957
+ # sKAdNetworkConversionValueSchema
4958
+ # Corresponds to the JSON property `name`
4959
+ # @return [String]
4960
+ attr_accessor :name
4961
+
4962
+ # Settings for a SKAdNetwork conversion postback window.
4963
+ # Corresponds to the JSON property `postbackWindowOne`
4964
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow]
4965
+ attr_accessor :postback_window_one
4966
+
4967
+ # Settings for a SKAdNetwork conversion postback window.
4968
+ # Corresponds to the JSON property `postbackWindowThree`
4969
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow]
4970
+ attr_accessor :postback_window_three
4971
+
4972
+ # Settings for a SKAdNetwork conversion postback window.
4973
+ # Corresponds to the JSON property `postbackWindowTwo`
4974
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow]
4975
+ attr_accessor :postback_window_two
4976
+
4977
+ def initialize(**args)
4978
+ update!(**args)
4979
+ end
4980
+
4981
+ # Update properties of this object
4982
+ def update!(**args)
4983
+ @apply_conversion_values = args[:apply_conversion_values] if args.key?(:apply_conversion_values)
4984
+ @name = args[:name] if args.key?(:name)
4985
+ @postback_window_one = args[:postback_window_one] if args.key?(:postback_window_one)
4986
+ @postback_window_three = args[:postback_window_three] if args.key?(:postback_window_three)
4987
+ @postback_window_two = args[:postback_window_two] if args.key?(:postback_window_two)
4988
+ end
4989
+ end
4990
+
4759
4991
  # A link between a GA4 property and a Search Ads 360 entity.
4760
4992
  class GoogleAnalyticsAdminV1alphaSearchAds360Link
4761
4993
  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.60.0"
19
+ GEM_VERSION = "0.62.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230802"
25
+ REVISION = "20230823"
26
26
  end
27
27
  end
28
28
  end
@@ -472,6 +472,12 @@ module Google
472
472
  include Google::Apis::Core::JsonObjectSupport
473
473
  end
474
474
 
475
+ class GoogleAnalyticsAdminV1alphaConversionValues
476
+ class Representation < Google::Apis::Core::JsonRepresentation; end
477
+
478
+ include Google::Apis::Core::JsonObjectSupport
479
+ end
480
+
475
481
  class GoogleAnalyticsAdminV1alphaCreateAccessBindingRequest
476
482
  class Representation < Google::Apis::Core::JsonRepresentation; end
477
483
 
@@ -586,6 +592,12 @@ module Google
586
592
  include Google::Apis::Core::JsonObjectSupport
587
593
  end
588
594
 
595
+ class GoogleAnalyticsAdminV1alphaEventMapping
596
+ class Representation < Google::Apis::Core::JsonRepresentation; end
597
+
598
+ include Google::Apis::Core::JsonObjectSupport
599
+ end
600
+
589
601
  class GoogleAnalyticsAdminV1alphaExpandedDataSet
590
602
  class Representation < Google::Apis::Core::JsonRepresentation; end
591
603
 
@@ -802,6 +814,12 @@ module Google
802
814
  include Google::Apis::Core::JsonObjectSupport
803
815
  end
804
816
 
817
+ class GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse
818
+ class Representation < Google::Apis::Core::JsonRepresentation; end
819
+
820
+ include Google::Apis::Core::JsonObjectSupport
821
+ end
822
+
805
823
  class GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse
806
824
  class Representation < Google::Apis::Core::JsonRepresentation; end
807
825
 
@@ -838,6 +856,12 @@ module Google
838
856
  include Google::Apis::Core::JsonObjectSupport
839
857
  end
840
858
 
859
+ class GoogleAnalyticsAdminV1alphaPostbackWindow
860
+ class Representation < Google::Apis::Core::JsonRepresentation; end
861
+
862
+ include Google::Apis::Core::JsonObjectSupport
863
+ end
864
+
841
865
  class GoogleAnalyticsAdminV1alphaProperty
842
866
  class Representation < Google::Apis::Core::JsonRepresentation; end
843
867
 
@@ -874,6 +898,12 @@ module Google
874
898
  include Google::Apis::Core::JsonObjectSupport
875
899
  end
876
900
 
901
+ class GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
902
+ class Representation < Google::Apis::Core::JsonRepresentation; end
903
+
904
+ include Google::Apis::Core::JsonObjectSupport
905
+ end
906
+
877
907
  class GoogleAnalyticsAdminV1alphaSearchAds360Link
878
908
  class Representation < Google::Apis::Core::JsonRepresentation; end
879
909
 
@@ -1495,9 +1525,9 @@ module Google
1495
1525
  class Representation < Google::Apis::Core::JsonRepresentation
1496
1526
  property :create_time, as: 'createTime'
1497
1527
  property :daily_export_enabled, as: 'dailyExportEnabled'
1498
- property :enterprise_export_enabled, as: 'enterpriseExportEnabled'
1499
1528
  collection :excluded_events, as: 'excludedEvents'
1500
1529
  collection :export_streams, as: 'exportStreams'
1530
+ property :fresh_daily_export_enabled, as: 'freshDailyExportEnabled'
1501
1531
  property :include_advertising_id, as: 'includeAdvertisingId'
1502
1532
  property :name, as: 'name'
1503
1533
  property :project, as: 'project'
@@ -1570,6 +1600,8 @@ module Google
1570
1600
 
1571
1601
  property :search_ads360_link, as: 'searchAds360Link', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link::Representation
1572
1602
 
1603
+ property :skadnetwork_conversion_value_schema, as: 'skadnetworkConversionValueSchema', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
1604
+
1573
1605
  end
1574
1606
  end
1575
1607
 
@@ -1657,6 +1689,7 @@ module Google
1657
1689
  class GoogleAnalyticsAdminV1alphaConversionEvent
1658
1690
  # @private
1659
1691
  class Representation < Google::Apis::Core::JsonRepresentation
1692
+ property :counting_method, as: 'countingMethod'
1660
1693
  property :create_time, as: 'createTime'
1661
1694
  property :custom, as: 'custom'
1662
1695
  property :deletable, as: 'deletable'
@@ -1665,6 +1698,18 @@ module Google
1665
1698
  end
1666
1699
  end
1667
1700
 
1701
+ class GoogleAnalyticsAdminV1alphaConversionValues
1702
+ # @private
1703
+ class Representation < Google::Apis::Core::JsonRepresentation
1704
+ property :coarse_value, as: 'coarseValue'
1705
+ property :display_name, as: 'displayName'
1706
+ collection :event_mappings, as: 'eventMappings', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEventMapping, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEventMapping::Representation
1707
+
1708
+ property :fine_value, as: 'fineValue'
1709
+ property :lock_enabled, as: 'lockEnabled'
1710
+ end
1711
+ end
1712
+
1668
1713
  class GoogleAnalyticsAdminV1alphaCreateAccessBindingRequest
1669
1714
  # @private
1670
1715
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1866,6 +1911,17 @@ module Google
1866
1911
  end
1867
1912
  end
1868
1913
 
1914
+ class GoogleAnalyticsAdminV1alphaEventMapping
1915
+ # @private
1916
+ class Representation < Google::Apis::Core::JsonRepresentation
1917
+ property :event_name, as: 'eventName'
1918
+ property :max_event_count, :numeric_string => true, as: 'maxEventCount'
1919
+ property :max_event_value, as: 'maxEventValue'
1920
+ property :min_event_count, :numeric_string => true, as: 'minEventCount'
1921
+ property :min_event_value, as: 'minEventValue'
1922
+ end
1923
+ end
1924
+
1869
1925
  class GoogleAnalyticsAdminV1alphaExpandedDataSet
1870
1926
  # @private
1871
1927
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2192,6 +2248,15 @@ module Google
2192
2248
  end
2193
2249
  end
2194
2250
 
2251
+ class GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse
2252
+ # @private
2253
+ class Representation < Google::Apis::Core::JsonRepresentation
2254
+ property :next_page_token, as: 'nextPageToken'
2255
+ collection :skadnetwork_conversion_value_schemas, as: 'skadnetworkConversionValueSchemas', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
2256
+
2257
+ end
2258
+ end
2259
+
2195
2260
  class GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse
2196
2261
  # @private
2197
2262
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2245,6 +2310,15 @@ module Google
2245
2310
  end
2246
2311
  end
2247
2312
 
2313
+ class GoogleAnalyticsAdminV1alphaPostbackWindow
2314
+ # @private
2315
+ class Representation < Google::Apis::Core::JsonRepresentation
2316
+ collection :conversion_values, as: 'conversionValues', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionValues, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionValues::Representation
2317
+
2318
+ property :postback_window_settings_enabled, as: 'postbackWindowSettingsEnabled'
2319
+ end
2320
+ end
2321
+
2248
2322
  class GoogleAnalyticsAdminV1alphaProperty
2249
2323
  # @private
2250
2324
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2327,6 +2401,20 @@ module Google
2327
2401
  end
2328
2402
  end
2329
2403
 
2404
+ class GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
2405
+ # @private
2406
+ class Representation < Google::Apis::Core::JsonRepresentation
2407
+ property :apply_conversion_values, as: 'applyConversionValues'
2408
+ property :name, as: 'name'
2409
+ property :postback_window_one, as: 'postbackWindowOne', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow::Representation
2410
+
2411
+ property :postback_window_three, as: 'postbackWindowThree', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow::Representation
2412
+
2413
+ property :postback_window_two, as: 'postbackWindowTwo', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow::Representation
2414
+
2415
+ end
2416
+ end
2417
+
2330
2418
  class GoogleAnalyticsAdminV1alphaSearchAds360Link
2331
2419
  # @private
2332
2420
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2766,6 +2766,45 @@ module Google
2766
2766
  execute_or_queue_command(command, &block)
2767
2767
  end
2768
2768
 
2769
+ # Updates a conversion event with the specified attributes.
2770
+ # @param [String] name
2771
+ # Output only. Resource name of this conversion event. Format: properties/`
2772
+ # property`/conversionEvents/`conversion_event`
2773
+ # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent] google_analytics_admin_v1alpha_conversion_event_object
2774
+ # @param [String] update_mask
2775
+ # Required. The list of fields to be updated. Field names must be in snake case (
2776
+ # e.g., "field_to_update"). Omitted fields will not be updated. To replace the
2777
+ # entire entity, use one path with the string "*" to match all fields.
2778
+ # @param [String] fields
2779
+ # Selector specifying which fields to include in a partial response.
2780
+ # @param [String] quota_user
2781
+ # Available to use for quota purposes for server-side applications. Can be any
2782
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
2783
+ # @param [Google::Apis::RequestOptions] options
2784
+ # Request-specific options
2785
+ #
2786
+ # @yield [result, err] Result & error if block supplied
2787
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent] parsed result object
2788
+ # @yieldparam err [StandardError] error object if request failed
2789
+ #
2790
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent]
2791
+ #
2792
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
2793
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
2794
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
2795
+ def patch_property_conversion_event(name, google_analytics_admin_v1alpha_conversion_event_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
2796
+ command = make_simple_command(:patch, 'v1alpha/{+name}', options)
2797
+ command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent::Representation
2798
+ command.request_object = google_analytics_admin_v1alpha_conversion_event_object
2799
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent::Representation
2800
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionEvent
2801
+ command.params['name'] = name unless name.nil?
2802
+ command.query['updateMask'] = update_mask unless update_mask.nil?
2803
+ command.query['fields'] = fields unless fields.nil?
2804
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
2805
+ execute_or_queue_command(command, &block)
2806
+ end
2807
+
2769
2808
  # Archives a CustomDimension on a property.
2770
2809
  # @param [String] name
2771
2810
  # Required. The name of the CustomDimension to archive. Example format:
@@ -3758,6 +3797,188 @@ module Google
3758
3797
  execute_or_queue_command(command, &block)
3759
3798
  end
3760
3799
 
3800
+ # Creates a SKAdNetworkConversionValueSchema.
3801
+ # @param [String] parent
3802
+ # Required. The parent resource where this schema will be created. Format:
3803
+ # properties/`property`/dataStreams/`dataStream`
3804
+ # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema] google_analytics_admin_v1alpha_sk_ad_network_conversion_value_schema_object
3805
+ # @param [String] fields
3806
+ # Selector specifying which fields to include in a partial response.
3807
+ # @param [String] quota_user
3808
+ # Available to use for quota purposes for server-side applications. Can be any
3809
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3810
+ # @param [Google::Apis::RequestOptions] options
3811
+ # Request-specific options
3812
+ #
3813
+ # @yield [result, err] Result & error if block supplied
3814
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema] parsed result object
3815
+ # @yieldparam err [StandardError] error object if request failed
3816
+ #
3817
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema]
3818
+ #
3819
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3820
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3821
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3822
+ def create_property_data_stream_s_k_ad_network_conversion_value_schema(parent, google_analytics_admin_v1alpha_sk_ad_network_conversion_value_schema_object = nil, fields: nil, quota_user: nil, options: nil, &block)
3823
+ command = make_simple_command(:post, 'v1alpha/{+parent}/sKAdNetworkConversionValueSchema', options)
3824
+ command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
3825
+ command.request_object = google_analytics_admin_v1alpha_sk_ad_network_conversion_value_schema_object
3826
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
3827
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
3828
+ command.params['parent'] = parent unless parent.nil?
3829
+ command.query['fields'] = fields unless fields.nil?
3830
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3831
+ execute_or_queue_command(command, &block)
3832
+ end
3833
+
3834
+ # Deletes target SKAdNetworkConversionValueSchema.
3835
+ # @param [String] name
3836
+ # Required. The name of the SKAdNetworkConversionValueSchema to delete. Format:
3837
+ # properties/`property`/dataStreams/`dataStream`/
3838
+ # sKAdNetworkConversionValueSchema/`skadnetwork_conversion_value_schema`
3839
+ # @param [String] fields
3840
+ # Selector specifying which fields to include in a partial response.
3841
+ # @param [String] quota_user
3842
+ # Available to use for quota purposes for server-side applications. Can be any
3843
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3844
+ # @param [Google::Apis::RequestOptions] options
3845
+ # Request-specific options
3846
+ #
3847
+ # @yield [result, err] Result & error if block supplied
3848
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty] parsed result object
3849
+ # @yieldparam err [StandardError] error object if request failed
3850
+ #
3851
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty]
3852
+ #
3853
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3854
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3855
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3856
+ def delete_property_data_stream_s_k_ad_network_conversion_value_schema(name, fields: nil, quota_user: nil, options: nil, &block)
3857
+ command = make_simple_command(:delete, 'v1alpha/{+name}', options)
3858
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty::Representation
3859
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty
3860
+ command.params['name'] = name unless name.nil?
3861
+ command.query['fields'] = fields unless fields.nil?
3862
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3863
+ execute_or_queue_command(command, &block)
3864
+ end
3865
+
3866
+ # Looks up a single SKAdNetworkConversionValueSchema.
3867
+ # @param [String] name
3868
+ # Required. The resource name of SKAdNetwork conversion value schema to look up.
3869
+ # Format: properties/`property`/dataStreams/`dataStream`/
3870
+ # sKAdNetworkConversionValueSchema/`skadnetwork_conversion_value_schema`
3871
+ # @param [String] fields
3872
+ # Selector specifying which fields to include in a partial response.
3873
+ # @param [String] quota_user
3874
+ # Available to use for quota purposes for server-side applications. Can be any
3875
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3876
+ # @param [Google::Apis::RequestOptions] options
3877
+ # Request-specific options
3878
+ #
3879
+ # @yield [result, err] Result & error if block supplied
3880
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema] parsed result object
3881
+ # @yieldparam err [StandardError] error object if request failed
3882
+ #
3883
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema]
3884
+ #
3885
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3886
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3887
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3888
+ def get_property_data_stream_s_k_ad_network_conversion_value_schema(name, fields: nil, quota_user: nil, options: nil, &block)
3889
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
3890
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
3891
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
3892
+ command.params['name'] = name unless name.nil?
3893
+ command.query['fields'] = fields unless fields.nil?
3894
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3895
+ execute_or_queue_command(command, &block)
3896
+ end
3897
+
3898
+ # Lists SKAdNetworkConversionValueSchema on a stream. Properties can have at
3899
+ # most one SKAdNetworkConversionValueSchema.
3900
+ # @param [String] parent
3901
+ # Required. Format: properties/`property_id`/dataStreams/`dataStream`/
3902
+ # sKAdNetworkConversionValueSchema Example: properties/1234/dataStreams/5678/
3903
+ # sKAdNetworkConversionValueSchema
3904
+ # @param [Fixnum] page_size
3905
+ # The maximum number of resources to return. The service may return fewer than
3906
+ # this value, even if there are additional pages. If unspecified, at most 50
3907
+ # resources will be returned. The maximum value is 200; (higher values will be
3908
+ # coerced to the maximum)
3909
+ # @param [String] page_token
3910
+ # A page token, received from a previous `ListSKAdNetworkConversionValueSchemas`
3911
+ # call. Provide this to retrieve the subsequent page. When paginating, all other
3912
+ # parameters provided to `ListSKAdNetworkConversionValueSchema` must match the
3913
+ # call that provided the page token.
3914
+ # @param [String] fields
3915
+ # Selector specifying which fields to include in a partial response.
3916
+ # @param [String] quota_user
3917
+ # Available to use for quota purposes for server-side applications. Can be any
3918
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3919
+ # @param [Google::Apis::RequestOptions] options
3920
+ # Request-specific options
3921
+ #
3922
+ # @yield [result, err] Result & error if block supplied
3923
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse] parsed result object
3924
+ # @yieldparam err [StandardError] error object if request failed
3925
+ #
3926
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse]
3927
+ #
3928
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3929
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3930
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3931
+ def list_property_data_stream_s_k_ad_network_conversion_value_schemas(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
3932
+ command = make_simple_command(:get, 'v1alpha/{+parent}/sKAdNetworkConversionValueSchema', options)
3933
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse::Representation
3934
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse
3935
+ command.params['parent'] = parent unless parent.nil?
3936
+ command.query['pageSize'] = page_size unless page_size.nil?
3937
+ command.query['pageToken'] = page_token unless page_token.nil?
3938
+ command.query['fields'] = fields unless fields.nil?
3939
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3940
+ execute_or_queue_command(command, &block)
3941
+ end
3942
+
3943
+ # Updates a SKAdNetworkConversionValueSchema.
3944
+ # @param [String] name
3945
+ # Output only. Resource name of the schema. This will be child of ONLY an iOS
3946
+ # stream, and there can be at most one such child under an iOS stream. Format:
3947
+ # properties/`property`/dataStreams/`dataStream`/
3948
+ # sKAdNetworkConversionValueSchema
3949
+ # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema] google_analytics_admin_v1alpha_sk_ad_network_conversion_value_schema_object
3950
+ # @param [String] update_mask
3951
+ # Required. The list of fields to be updated. Omitted fields will not be updated.
3952
+ # @param [String] fields
3953
+ # Selector specifying which fields to include in a partial response.
3954
+ # @param [String] quota_user
3955
+ # Available to use for quota purposes for server-side applications. Can be any
3956
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3957
+ # @param [Google::Apis::RequestOptions] options
3958
+ # Request-specific options
3959
+ #
3960
+ # @yield [result, err] Result & error if block supplied
3961
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema] parsed result object
3962
+ # @yieldparam err [StandardError] error object if request failed
3963
+ #
3964
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema]
3965
+ #
3966
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3967
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3968
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3969
+ def patch_property_data_stream_s_k_ad_network_conversion_value_schema(name, google_analytics_admin_v1alpha_sk_ad_network_conversion_value_schema_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
3970
+ command = make_simple_command(:patch, 'v1alpha/{+name}', options)
3971
+ command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
3972
+ command.request_object = google_analytics_admin_v1alpha_sk_ad_network_conversion_value_schema_object
3973
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
3974
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
3975
+ command.params['name'] = name unless name.nil?
3976
+ command.query['updateMask'] = update_mask unless update_mask.nil?
3977
+ command.query['fields'] = fields unless fields.nil?
3978
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3979
+ execute_or_queue_command(command, &block)
3980
+ end
3981
+
3761
3982
  # Approves a DisplayVideo360AdvertiserLinkProposal. The
3762
3983
  # DisplayVideo360AdvertiserLinkProposal will be deleted and a new
3763
3984
  # DisplayVideo360AdvertiserLink will be created.
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.60.0
4
+ version: 0.62.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: 2023-08-06 00:00:00.000000000 Z
11
+ date: 2023-08-27 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.60.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.62.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.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Google Analytics Admin API V1alpha