google-apis-analyticsadmin_v1alpha 0.61.0 → 0.63.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bb3b31cb08919fea4aa69133e1de7508442d1357aab1fc0f144c3045832475f7
4
- data.tar.gz: '023829de737a4eb6ccddcf86698d7d48928ecab8330c7a2bc6d52a0300e305ad'
3
+ metadata.gz: 3ee4ae374fb8eb982ad04e202f4128e9c4b7c6322ec73cc7be2a1cbc7b07ec27
4
+ data.tar.gz: aa626b06e04f31dead5cdd461ab3021c24f32b45397f71bbd5700d6e4cdae1d2
5
5
  SHA512:
6
- metadata.gz: ac6d4f3ce71db3b6c3f273f7ee4c5da237ec9b920846b841432e706b221b9891fff0e9e080075c8295da4aae2c3f44e150a2888646cd16a9b477320c676610b1
7
- data.tar.gz: e72cb239773fe71de4bcca07cb9a4d377b848c48faa6943c5374230b982ad00d4cec220400360871a767d85a5acc09ac4c4d333d3866f7a2a9c6363872d0909f
6
+ metadata.gz: a7a4ef74b5b5bd70b17a5c1ce6220e38432a72b711b91dee0428ad3cc025bb69d7f245a9b476a1d065a166cb47020c178dbe9f08827a762ba7a0bc722b4d3f73
7
+ data.tar.gz: 7cca2a2f59f8b5232b8e4f2d9ff7f43beca0755a7b521a373058eb748699e15083aeef7a1a3280e5a382259ff4d40518c44751e8a8eb395412bb3d78b3b45710
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-analyticsadmin_v1alpha
2
2
 
3
+ ### v0.63.0 (2023-10-01)
4
+
5
+ * Regenerated from discovery document revision 20230927
6
+
7
+ ### v0.62.0 (2023-08-27)
8
+
9
+ * Regenerated from discovery document revision 20230823
10
+
3
11
  ### v0.61.0 (2023-08-13)
4
12
 
5
13
  * Regenerated from discovery document revision 20230809
@@ -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)
@@ -1941,6 +1941,11 @@ module Google
1941
1941
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCustomMetric]
1942
1942
  attr_accessor :custom_metric
1943
1943
 
1944
+ # Settings for client-side data redaction. Singleton resource under a Web Stream.
1945
+ # Corresponds to the JSON property `dataRedactionSettings`
1946
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRedactionSettings]
1947
+ attr_accessor :data_redaction_settings
1948
+
1944
1949
  # Settings values for data retention. This is a singleton resource.
1945
1950
  # Corresponds to the JSON property `dataRetentionSettings`
1946
1951
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRetentionSettings]
@@ -2015,6 +2020,11 @@ module Google
2015
2020
  # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link]
2016
2021
  attr_accessor :search_ads360_link
2017
2022
 
2023
+ # SKAdNetwork conversion value schema of an iOS stream.
2024
+ # Corresponds to the JSON property `skadnetworkConversionValueSchema`
2025
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema]
2026
+ attr_accessor :skadnetwork_conversion_value_schema
2027
+
2018
2028
  def initialize(**args)
2019
2029
  update!(**args)
2020
2030
  end
@@ -2030,6 +2040,7 @@ module Google
2030
2040
  @conversion_event = args[:conversion_event] if args.key?(:conversion_event)
2031
2041
  @custom_dimension = args[:custom_dimension] if args.key?(:custom_dimension)
2032
2042
  @custom_metric = args[:custom_metric] if args.key?(:custom_metric)
2043
+ @data_redaction_settings = args[:data_redaction_settings] if args.key?(:data_redaction_settings)
2033
2044
  @data_retention_settings = args[:data_retention_settings] if args.key?(:data_retention_settings)
2034
2045
  @data_stream = args[:data_stream] if args.key?(:data_stream)
2035
2046
  @display_video360_advertiser_link = args[:display_video360_advertiser_link] if args.key?(:display_video360_advertiser_link)
@@ -2043,6 +2054,7 @@ module Google
2043
2054
  @measurement_protocol_secret = args[:measurement_protocol_secret] if args.key?(:measurement_protocol_secret)
2044
2055
  @property = args[:property] if args.key?(:property)
2045
2056
  @search_ads360_link = args[:search_ads360_link] if args.key?(:search_ads360_link)
2057
+ @skadnetwork_conversion_value_schema = args[:skadnetwork_conversion_value_schema] if args.key?(:skadnetwork_conversion_value_schema)
2046
2058
  end
2047
2059
  end
2048
2060
 
@@ -2370,6 +2382,61 @@ module Google
2370
2382
  end
2371
2383
  end
2372
2384
 
2385
+ # Conversion value settings for a postback window for SKAdNetwork conversion
2386
+ # value schema.
2387
+ class GoogleAnalyticsAdminV1alphaConversionValues
2388
+ include Google::Apis::Core::Hashable
2389
+
2390
+ # Required. A coarse grained conversion value. This value is not guaranteed to
2391
+ # be unique.
2392
+ # Corresponds to the JSON property `coarseValue`
2393
+ # @return [String]
2394
+ attr_accessor :coarse_value
2395
+
2396
+ # Display name of the SKAdNetwork conversion value. The max allowed display name
2397
+ # length is 50 UTF-16 code units.
2398
+ # Corresponds to the JSON property `displayName`
2399
+ # @return [String]
2400
+ attr_accessor :display_name
2401
+
2402
+ # Event conditions that must be met for this Conversion Value to be achieved.
2403
+ # The conditions in this list are ANDed together. It must have minimum of 1
2404
+ # entry and maximum of 3 entries, if the postback window is enabled.
2405
+ # Corresponds to the JSON property `eventMappings`
2406
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEventMapping>]
2407
+ attr_accessor :event_mappings
2408
+
2409
+ # The fine-grained conversion value. This is applicable only to the first
2410
+ # postback window. Its valid values are [0,63], both inclusive. It must be set
2411
+ # for postback window 1, and must not be set for postback window 2 & 3. This
2412
+ # value is not guaranteed to be unique. If the configuration for the first
2413
+ # postback window is re-used for second or third postback windows this field has
2414
+ # no effect.
2415
+ # Corresponds to the JSON property `fineValue`
2416
+ # @return [Fixnum]
2417
+ attr_accessor :fine_value
2418
+
2419
+ # If true, the SDK should lock to this conversion value for the current postback
2420
+ # window.
2421
+ # Corresponds to the JSON property `lockEnabled`
2422
+ # @return [Boolean]
2423
+ attr_accessor :lock_enabled
2424
+ alias_method :lock_enabled?, :lock_enabled
2425
+
2426
+ def initialize(**args)
2427
+ update!(**args)
2428
+ end
2429
+
2430
+ # Update properties of this object
2431
+ def update!(**args)
2432
+ @coarse_value = args[:coarse_value] if args.key?(:coarse_value)
2433
+ @display_name = args[:display_name] if args.key?(:display_name)
2434
+ @event_mappings = args[:event_mappings] if args.key?(:event_mappings)
2435
+ @fine_value = args[:fine_value] if args.key?(:fine_value)
2436
+ @lock_enabled = args[:lock_enabled] if args.key?(:lock_enabled)
2437
+ end
2438
+ end
2439
+
2373
2440
  # Request message for CreateAccessBinding RPC.
2374
2441
  class GoogleAnalyticsAdminV1alphaCreateAccessBindingRequest
2375
2442
  include Google::Apis::Core::Hashable
@@ -2600,6 +2667,54 @@ module Google
2600
2667
  end
2601
2668
  end
2602
2669
 
2670
+ # Settings for client-side data redaction. Singleton resource under a Web Stream.
2671
+ class GoogleAnalyticsAdminV1alphaDataRedactionSettings
2672
+ include Google::Apis::Core::Hashable
2673
+
2674
+ # If enabled, any event parameter or user property values that look like an
2675
+ # email will be redacted.
2676
+ # Corresponds to the JSON property `emailRedactionEnabled`
2677
+ # @return [Boolean]
2678
+ attr_accessor :email_redaction_enabled
2679
+ alias_method :email_redaction_enabled?, :email_redaction_enabled
2680
+
2681
+ # Output only. Name of this Data Redaction Settings resource. Format: properties/
2682
+ # `property_id`/dataStreams/`data_stream`/dataRedactionSettings Example: "
2683
+ # properties/1000/dataStreams/2000/dataRedactionSettings"
2684
+ # Corresponds to the JSON property `name`
2685
+ # @return [String]
2686
+ attr_accessor :name
2687
+
2688
+ # The query parameter keys to apply redaction logic to if present in the URL.
2689
+ # Query parameter matching is case-insensitive. Must contain at least one
2690
+ # element if query_parameter_replacement_enabled is true. Keys cannot contain
2691
+ # commas.
2692
+ # Corresponds to the JSON property `queryParameterKeys`
2693
+ # @return [Array<String>]
2694
+ attr_accessor :query_parameter_keys
2695
+
2696
+ # Query Parameter redaction removes the key and value portions of a query
2697
+ # parameter if it is in the configured set of query parameters. If enabled, URL
2698
+ # query replacement logic will be run for the Stream. Any query parameters
2699
+ # defined in query_parameter_keys will be redacted.
2700
+ # Corresponds to the JSON property `queryParameterRedactionEnabled`
2701
+ # @return [Boolean]
2702
+ attr_accessor :query_parameter_redaction_enabled
2703
+ alias_method :query_parameter_redaction_enabled?, :query_parameter_redaction_enabled
2704
+
2705
+ def initialize(**args)
2706
+ update!(**args)
2707
+ end
2708
+
2709
+ # Update properties of this object
2710
+ def update!(**args)
2711
+ @email_redaction_enabled = args[:email_redaction_enabled] if args.key?(:email_redaction_enabled)
2712
+ @name = args[:name] if args.key?(:name)
2713
+ @query_parameter_keys = args[:query_parameter_keys] if args.key?(:query_parameter_keys)
2714
+ @query_parameter_redaction_enabled = args[:query_parameter_redaction_enabled] if args.key?(:query_parameter_redaction_enabled)
2715
+ end
2716
+ end
2717
+
2603
2718
  # Settings values for data retention. This is a singleton resource.
2604
2719
  class GoogleAnalyticsAdminV1alphaDataRetentionSettings
2605
2720
  include Google::Apis::Core::Hashable
@@ -3210,6 +3325,57 @@ module Google
3210
3325
  end
3211
3326
  end
3212
3327
 
3328
+ # Event setting conditions to match an event.
3329
+ class GoogleAnalyticsAdminV1alphaEventMapping
3330
+ include Google::Apis::Core::Hashable
3331
+
3332
+ # Required. Name of the GA4 event. It must always be set. The max allowed
3333
+ # display name length is 40 UTF-16 code units.
3334
+ # Corresponds to the JSON property `eventName`
3335
+ # @return [String]
3336
+ attr_accessor :event_name
3337
+
3338
+ # The maximum number of times the event occurred. If not set, maximum event
3339
+ # count won't be checked.
3340
+ # Corresponds to the JSON property `maxEventCount`
3341
+ # @return [Fixnum]
3342
+ attr_accessor :max_event_count
3343
+
3344
+ # The maximum revenue generated due to the event. Revenue currency will be
3345
+ # defined at the property level. If not set, maximum event value won't be
3346
+ # checked.
3347
+ # Corresponds to the JSON property `maxEventValue`
3348
+ # @return [Float]
3349
+ attr_accessor :max_event_value
3350
+
3351
+ # At least one of the following four min/max values must be set. The values set
3352
+ # will be ANDed together to qualify an event. The minimum number of times the
3353
+ # event occurred. If not set, minimum event count won't be checked.
3354
+ # Corresponds to the JSON property `minEventCount`
3355
+ # @return [Fixnum]
3356
+ attr_accessor :min_event_count
3357
+
3358
+ # The minimum revenue generated due to the event. Revenue currency will be
3359
+ # defined at the property level. If not set, minimum event value won't be
3360
+ # checked.
3361
+ # Corresponds to the JSON property `minEventValue`
3362
+ # @return [Float]
3363
+ attr_accessor :min_event_value
3364
+
3365
+ def initialize(**args)
3366
+ update!(**args)
3367
+ end
3368
+
3369
+ # Update properties of this object
3370
+ def update!(**args)
3371
+ @event_name = args[:event_name] if args.key?(:event_name)
3372
+ @max_event_count = args[:max_event_count] if args.key?(:max_event_count)
3373
+ @max_event_value = args[:max_event_value] if args.key?(:max_event_value)
3374
+ @min_event_count = args[:min_event_count] if args.key?(:min_event_count)
3375
+ @min_event_value = args[:min_event_value] if args.key?(:min_event_value)
3376
+ end
3377
+ end
3378
+
3213
3379
  # A resource message representing a GA4 ExpandedDataSet.
3214
3380
  class GoogleAnalyticsAdminV1alphaExpandedDataSet
3215
3381
  include Google::Apis::Core::Hashable
@@ -4229,6 +4395,34 @@ module Google
4229
4395
  end
4230
4396
  end
4231
4397
 
4398
+ # Response message for ListSKAdNetworkConversionValueSchemas RPC
4399
+ class GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse
4400
+ include Google::Apis::Core::Hashable
4401
+
4402
+ # A token, which can be sent as `page_token` to retrieve the next page. If this
4403
+ # field is omitted, there are no subsequent pages. Currently, Google Analytics
4404
+ # supports only one SKAdNetworkConversionValueSchema per dataStream, so this
4405
+ # will never be populated.
4406
+ # Corresponds to the JSON property `nextPageToken`
4407
+ # @return [String]
4408
+ attr_accessor :next_page_token
4409
+
4410
+ # List of SKAdNetworkConversionValueSchemas. This will have at most one value.
4411
+ # Corresponds to the JSON property `skadnetworkConversionValueSchemas`
4412
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema>]
4413
+ attr_accessor :skadnetwork_conversion_value_schemas
4414
+
4415
+ def initialize(**args)
4416
+ update!(**args)
4417
+ end
4418
+
4419
+ # Update properties of this object
4420
+ def update!(**args)
4421
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
4422
+ @skadnetwork_conversion_value_schemas = args[:skadnetwork_conversion_value_schemas] if args.key?(:skadnetwork_conversion_value_schemas)
4423
+ end
4424
+ end
4425
+
4232
4426
  # Response message for ListSearchAds360Links RPC.
4233
4427
  class GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse
4234
4428
  include Google::Apis::Core::Hashable
@@ -4418,6 +4612,40 @@ module Google
4418
4612
  end
4419
4613
  end
4420
4614
 
4615
+ # Settings for a SKAdNetwork conversion postback window.
4616
+ class GoogleAnalyticsAdminV1alphaPostbackWindow
4617
+ include Google::Apis::Core::Hashable
4618
+
4619
+ # Ordering of the repeated field will be used to prioritize the conversion value
4620
+ # settings. Lower indexed entries are prioritized higher. The first conversion
4621
+ # value setting that evaluates to true will be selected. It must have at least
4622
+ # one entry if enable_postback_window_settings is set to true. It can have
4623
+ # maximum of 128 entries.
4624
+ # Corresponds to the JSON property `conversionValues`
4625
+ # @return [Array<Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionValues>]
4626
+ attr_accessor :conversion_values
4627
+
4628
+ # If enable_postback_window_settings is true, conversion_values must be
4629
+ # populated and will be used for determining when and how to set the Conversion
4630
+ # Value on a client device and exporting schema to linked Ads accounts. If false,
4631
+ # the settings are not used, but are retained in case they may be used in the
4632
+ # future. This must always be true for postback_window_one.
4633
+ # Corresponds to the JSON property `postbackWindowSettingsEnabled`
4634
+ # @return [Boolean]
4635
+ attr_accessor :postback_window_settings_enabled
4636
+ alias_method :postback_window_settings_enabled?, :postback_window_settings_enabled
4637
+
4638
+ def initialize(**args)
4639
+ update!(**args)
4640
+ end
4641
+
4642
+ # Update properties of this object
4643
+ def update!(**args)
4644
+ @conversion_values = args[:conversion_values] if args.key?(:conversion_values)
4645
+ @postback_window_settings_enabled = args[:postback_window_settings_enabled] if args.key?(:postback_window_settings_enabled)
4646
+ end
4647
+ end
4648
+
4421
4649
  # A resource message representing a Google Analytics GA4 property.
4422
4650
  class GoogleAnalyticsAdminV1alphaProperty
4423
4651
  include Google::Apis::Core::Hashable
@@ -4764,6 +4992,56 @@ module Google
4764
4992
  end
4765
4993
  end
4766
4994
 
4995
+ # SKAdNetwork conversion value schema of an iOS stream.
4996
+ class GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
4997
+ include Google::Apis::Core::Hashable
4998
+
4999
+ # If enabled, the GA SDK will set conversion values using this schema definition,
5000
+ # and schema will be exported to any Google Ads accounts linked to this
5001
+ # property. If disabled, the GA SDK will not automatically set conversion values,
5002
+ # and also the schema will not be exported to Ads.
5003
+ # Corresponds to the JSON property `applyConversionValues`
5004
+ # @return [Boolean]
5005
+ attr_accessor :apply_conversion_values
5006
+ alias_method :apply_conversion_values?, :apply_conversion_values
5007
+
5008
+ # Output only. Resource name of the schema. This will be child of ONLY an iOS
5009
+ # stream, and there can be at most one such child under an iOS stream. Format:
5010
+ # properties/`property`/dataStreams/`dataStream`/
5011
+ # sKAdNetworkConversionValueSchema
5012
+ # Corresponds to the JSON property `name`
5013
+ # @return [String]
5014
+ attr_accessor :name
5015
+
5016
+ # Settings for a SKAdNetwork conversion postback window.
5017
+ # Corresponds to the JSON property `postbackWindowOne`
5018
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow]
5019
+ attr_accessor :postback_window_one
5020
+
5021
+ # Settings for a SKAdNetwork conversion postback window.
5022
+ # Corresponds to the JSON property `postbackWindowThree`
5023
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow]
5024
+ attr_accessor :postback_window_three
5025
+
5026
+ # Settings for a SKAdNetwork conversion postback window.
5027
+ # Corresponds to the JSON property `postbackWindowTwo`
5028
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow]
5029
+ attr_accessor :postback_window_two
5030
+
5031
+ def initialize(**args)
5032
+ update!(**args)
5033
+ end
5034
+
5035
+ # Update properties of this object
5036
+ def update!(**args)
5037
+ @apply_conversion_values = args[:apply_conversion_values] if args.key?(:apply_conversion_values)
5038
+ @name = args[:name] if args.key?(:name)
5039
+ @postback_window_one = args[:postback_window_one] if args.key?(:postback_window_one)
5040
+ @postback_window_three = args[:postback_window_three] if args.key?(:postback_window_three)
5041
+ @postback_window_two = args[:postback_window_two] if args.key?(:postback_window_two)
5042
+ end
5043
+ end
5044
+
4767
5045
  # A link between a GA4 property and a Search Ads 360 entity.
4768
5046
  class GoogleAnalyticsAdminV1alphaSearchAds360Link
4769
5047
  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.61.0"
19
+ GEM_VERSION = "0.63.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 = "20230809"
25
+ REVISION = "20230927"
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
 
@@ -508,6 +514,12 @@ module Google
508
514
  include Google::Apis::Core::JsonObjectSupport
509
515
  end
510
516
 
517
+ class GoogleAnalyticsAdminV1alphaDataRedactionSettings
518
+ class Representation < Google::Apis::Core::JsonRepresentation; end
519
+
520
+ include Google::Apis::Core::JsonObjectSupport
521
+ end
522
+
511
523
  class GoogleAnalyticsAdminV1alphaDataRetentionSettings
512
524
  class Representation < Google::Apis::Core::JsonRepresentation; end
513
525
 
@@ -586,6 +598,12 @@ module Google
586
598
  include Google::Apis::Core::JsonObjectSupport
587
599
  end
588
600
 
601
+ class GoogleAnalyticsAdminV1alphaEventMapping
602
+ class Representation < Google::Apis::Core::JsonRepresentation; end
603
+
604
+ include Google::Apis::Core::JsonObjectSupport
605
+ end
606
+
589
607
  class GoogleAnalyticsAdminV1alphaExpandedDataSet
590
608
  class Representation < Google::Apis::Core::JsonRepresentation; end
591
609
 
@@ -802,6 +820,12 @@ module Google
802
820
  include Google::Apis::Core::JsonObjectSupport
803
821
  end
804
822
 
823
+ class GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse
824
+ class Representation < Google::Apis::Core::JsonRepresentation; end
825
+
826
+ include Google::Apis::Core::JsonObjectSupport
827
+ end
828
+
805
829
  class GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse
806
830
  class Representation < Google::Apis::Core::JsonRepresentation; end
807
831
 
@@ -838,6 +862,12 @@ module Google
838
862
  include Google::Apis::Core::JsonObjectSupport
839
863
  end
840
864
 
865
+ class GoogleAnalyticsAdminV1alphaPostbackWindow
866
+ class Representation < Google::Apis::Core::JsonRepresentation; end
867
+
868
+ include Google::Apis::Core::JsonObjectSupport
869
+ end
870
+
841
871
  class GoogleAnalyticsAdminV1alphaProperty
842
872
  class Representation < Google::Apis::Core::JsonRepresentation; end
843
873
 
@@ -874,6 +904,12 @@ module Google
874
904
  include Google::Apis::Core::JsonObjectSupport
875
905
  end
876
906
 
907
+ class GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
908
+ class Representation < Google::Apis::Core::JsonRepresentation; end
909
+
910
+ include Google::Apis::Core::JsonObjectSupport
911
+ end
912
+
877
913
  class GoogleAnalyticsAdminV1alphaSearchAds360Link
878
914
  class Representation < Google::Apis::Core::JsonRepresentation; end
879
915
 
@@ -1495,9 +1531,9 @@ module Google
1495
1531
  class Representation < Google::Apis::Core::JsonRepresentation
1496
1532
  property :create_time, as: 'createTime'
1497
1533
  property :daily_export_enabled, as: 'dailyExportEnabled'
1498
- property :enterprise_export_enabled, as: 'enterpriseExportEnabled'
1499
1534
  collection :excluded_events, as: 'excludedEvents'
1500
1535
  collection :export_streams, as: 'exportStreams'
1536
+ property :fresh_daily_export_enabled, as: 'freshDailyExportEnabled'
1501
1537
  property :include_advertising_id, as: 'includeAdvertisingId'
1502
1538
  property :name, as: 'name'
1503
1539
  property :project, as: 'project'
@@ -1544,6 +1580,8 @@ module Google
1544
1580
 
1545
1581
  property :custom_metric, as: 'customMetric', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCustomMetric, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaCustomMetric::Representation
1546
1582
 
1583
+ property :data_redaction_settings, as: 'dataRedactionSettings', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRedactionSettings, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRedactionSettings::Representation
1584
+
1547
1585
  property :data_retention_settings, as: 'dataRetentionSettings', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRetentionSettings, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRetentionSettings::Representation
1548
1586
 
1549
1587
  property :data_stream, as: 'dataStream', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataStream, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataStream::Representation
@@ -1570,6 +1608,8 @@ module Google
1570
1608
 
1571
1609
  property :search_ads360_link, as: 'searchAds360Link', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSearchAds360Link::Representation
1572
1610
 
1611
+ property :skadnetwork_conversion_value_schema, as: 'skadnetworkConversionValueSchema', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
1612
+
1573
1613
  end
1574
1614
  end
1575
1615
 
@@ -1666,6 +1706,18 @@ module Google
1666
1706
  end
1667
1707
  end
1668
1708
 
1709
+ class GoogleAnalyticsAdminV1alphaConversionValues
1710
+ # @private
1711
+ class Representation < Google::Apis::Core::JsonRepresentation
1712
+ property :coarse_value, as: 'coarseValue'
1713
+ property :display_name, as: 'displayName'
1714
+ collection :event_mappings, as: 'eventMappings', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEventMapping, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaEventMapping::Representation
1715
+
1716
+ property :fine_value, as: 'fineValue'
1717
+ property :lock_enabled, as: 'lockEnabled'
1718
+ end
1719
+ end
1720
+
1669
1721
  class GoogleAnalyticsAdminV1alphaCreateAccessBindingRequest
1670
1722
  # @private
1671
1723
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1725,6 +1777,16 @@ module Google
1725
1777
  end
1726
1778
  end
1727
1779
 
1780
+ class GoogleAnalyticsAdminV1alphaDataRedactionSettings
1781
+ # @private
1782
+ class Representation < Google::Apis::Core::JsonRepresentation
1783
+ property :email_redaction_enabled, as: 'emailRedactionEnabled'
1784
+ property :name, as: 'name'
1785
+ collection :query_parameter_keys, as: 'queryParameterKeys'
1786
+ property :query_parameter_redaction_enabled, as: 'queryParameterRedactionEnabled'
1787
+ end
1788
+ end
1789
+
1728
1790
  class GoogleAnalyticsAdminV1alphaDataRetentionSettings
1729
1791
  # @private
1730
1792
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1867,6 +1929,17 @@ module Google
1867
1929
  end
1868
1930
  end
1869
1931
 
1932
+ class GoogleAnalyticsAdminV1alphaEventMapping
1933
+ # @private
1934
+ class Representation < Google::Apis::Core::JsonRepresentation
1935
+ property :event_name, as: 'eventName'
1936
+ property :max_event_count, :numeric_string => true, as: 'maxEventCount'
1937
+ property :max_event_value, as: 'maxEventValue'
1938
+ property :min_event_count, :numeric_string => true, as: 'minEventCount'
1939
+ property :min_event_value, as: 'minEventValue'
1940
+ end
1941
+ end
1942
+
1870
1943
  class GoogleAnalyticsAdminV1alphaExpandedDataSet
1871
1944
  # @private
1872
1945
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2193,6 +2266,15 @@ module Google
2193
2266
  end
2194
2267
  end
2195
2268
 
2269
+ class GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse
2270
+ # @private
2271
+ class Representation < Google::Apis::Core::JsonRepresentation
2272
+ property :next_page_token, as: 'nextPageToken'
2273
+ collection :skadnetwork_conversion_value_schemas, as: 'skadnetworkConversionValueSchemas', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
2274
+
2275
+ end
2276
+ end
2277
+
2196
2278
  class GoogleAnalyticsAdminV1alphaListSearchAds360LinksResponse
2197
2279
  # @private
2198
2280
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2246,6 +2328,15 @@ module Google
2246
2328
  end
2247
2329
  end
2248
2330
 
2331
+ class GoogleAnalyticsAdminV1alphaPostbackWindow
2332
+ # @private
2333
+ class Representation < Google::Apis::Core::JsonRepresentation
2334
+ collection :conversion_values, as: 'conversionValues', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionValues, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaConversionValues::Representation
2335
+
2336
+ property :postback_window_settings_enabled, as: 'postbackWindowSettingsEnabled'
2337
+ end
2338
+ end
2339
+
2249
2340
  class GoogleAnalyticsAdminV1alphaProperty
2250
2341
  # @private
2251
2342
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2328,6 +2419,20 @@ module Google
2328
2419
  end
2329
2420
  end
2330
2421
 
2422
+ class GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
2423
+ # @private
2424
+ class Representation < Google::Apis::Core::JsonRepresentation
2425
+ property :apply_conversion_values, as: 'applyConversionValues'
2426
+ property :name, as: 'name'
2427
+ property :postback_window_one, as: 'postbackWindowOne', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow::Representation
2428
+
2429
+ property :postback_window_three, as: 'postbackWindowThree', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow::Representation
2430
+
2431
+ property :postback_window_two, as: 'postbackWindowTwo', class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow, decorator: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaPostbackWindow::Representation
2432
+
2433
+ end
2434
+ end
2435
+
2331
2436
  class GoogleAnalyticsAdminV1alphaSearchAds360Link
2332
2437
  # @private
2333
2438
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3256,6 +3256,38 @@ module Google
3256
3256
  execute_or_queue_command(command, &block)
3257
3257
  end
3258
3258
 
3259
+ # Lookup for a single DataRedactionSettings.
3260
+ # @param [String] name
3261
+ # Required. The name of the settings to lookup. Format: properties/`property`/
3262
+ # dataStreams/`data_stream`/dataRedactionSettings Example: "properties/1000/
3263
+ # dataStreams/2000/dataRedactionSettings"
3264
+ # @param [String] fields
3265
+ # Selector specifying which fields to include in a partial response.
3266
+ # @param [String] quota_user
3267
+ # Available to use for quota purposes for server-side applications. Can be any
3268
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3269
+ # @param [Google::Apis::RequestOptions] options
3270
+ # Request-specific options
3271
+ #
3272
+ # @yield [result, err] Result & error if block supplied
3273
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRedactionSettings] parsed result object
3274
+ # @yieldparam err [StandardError] error object if request failed
3275
+ #
3276
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRedactionSettings]
3277
+ #
3278
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3279
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3280
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3281
+ def get_property_data_stream_data_redaction_settings(name, fields: nil, quota_user: nil, options: nil, &block)
3282
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
3283
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRedactionSettings::Representation
3284
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRedactionSettings
3285
+ command.params['name'] = name unless name.nil?
3286
+ command.query['fields'] = fields unless fields.nil?
3287
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3288
+ execute_or_queue_command(command, &block)
3289
+ end
3290
+
3259
3291
  # Returns the enhanced measurement settings for this data stream. Note that the
3260
3292
  # stream must enable enhanced measurement for these settings to take effect.
3261
3293
  # @param [String] name
@@ -3403,6 +3435,46 @@ module Google
3403
3435
  execute_or_queue_command(command, &block)
3404
3436
  end
3405
3437
 
3438
+ # Updates a DataRedactionSettings on a property.
3439
+ # @param [String] name
3440
+ # Output only. Name of this Data Redaction Settings resource. Format: properties/
3441
+ # `property_id`/dataStreams/`data_stream`/dataRedactionSettings Example: "
3442
+ # properties/1000/dataStreams/2000/dataRedactionSettings"
3443
+ # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRedactionSettings] google_analytics_admin_v1alpha_data_redaction_settings_object
3444
+ # @param [String] update_mask
3445
+ # Required. The list of fields to be updated. Field names must be in snake case (
3446
+ # e.g., "field_to_update"). Omitted fields will not be updated. To replace the
3447
+ # entire entity, use one path with the string "*" to match all fields.
3448
+ # @param [String] fields
3449
+ # Selector specifying which fields to include in a partial response.
3450
+ # @param [String] quota_user
3451
+ # Available to use for quota purposes for server-side applications. Can be any
3452
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3453
+ # @param [Google::Apis::RequestOptions] options
3454
+ # Request-specific options
3455
+ #
3456
+ # @yield [result, err] Result & error if block supplied
3457
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRedactionSettings] parsed result object
3458
+ # @yieldparam err [StandardError] error object if request failed
3459
+ #
3460
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRedactionSettings]
3461
+ #
3462
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3463
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3464
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3465
+ def update_property_data_stream_data_redaction_settings(name, google_analytics_admin_v1alpha_data_redaction_settings_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
3466
+ command = make_simple_command(:patch, 'v1alpha/{+name}', options)
3467
+ command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRedactionSettings::Representation
3468
+ command.request_object = google_analytics_admin_v1alpha_data_redaction_settings_object
3469
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRedactionSettings::Representation
3470
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaDataRedactionSettings
3471
+ command.params['name'] = name unless name.nil?
3472
+ command.query['updateMask'] = update_mask unless update_mask.nil?
3473
+ command.query['fields'] = fields unless fields.nil?
3474
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3475
+ execute_or_queue_command(command, &block)
3476
+ end
3477
+
3406
3478
  # Updates the enhanced measurement settings for this data stream. Note that the
3407
3479
  # stream must enable enhanced measurement for these settings to take effect.
3408
3480
  # @param [String] name
@@ -3797,6 +3869,188 @@ module Google
3797
3869
  execute_or_queue_command(command, &block)
3798
3870
  end
3799
3871
 
3872
+ # Creates a SKAdNetworkConversionValueSchema.
3873
+ # @param [String] parent
3874
+ # Required. The parent resource where this schema will be created. Format:
3875
+ # properties/`property`/dataStreams/`dataStream`
3876
+ # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema] google_analytics_admin_v1alpha_sk_ad_network_conversion_value_schema_object
3877
+ # @param [String] fields
3878
+ # Selector specifying which fields to include in a partial response.
3879
+ # @param [String] quota_user
3880
+ # Available to use for quota purposes for server-side applications. Can be any
3881
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3882
+ # @param [Google::Apis::RequestOptions] options
3883
+ # Request-specific options
3884
+ #
3885
+ # @yield [result, err] Result & error if block supplied
3886
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema] parsed result object
3887
+ # @yieldparam err [StandardError] error object if request failed
3888
+ #
3889
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema]
3890
+ #
3891
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3892
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3893
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3894
+ 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)
3895
+ command = make_simple_command(:post, 'v1alpha/{+parent}/sKAdNetworkConversionValueSchema', options)
3896
+ command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
3897
+ command.request_object = google_analytics_admin_v1alpha_sk_ad_network_conversion_value_schema_object
3898
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
3899
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
3900
+ command.params['parent'] = parent unless parent.nil?
3901
+ command.query['fields'] = fields unless fields.nil?
3902
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3903
+ execute_or_queue_command(command, &block)
3904
+ end
3905
+
3906
+ # Deletes target SKAdNetworkConversionValueSchema.
3907
+ # @param [String] name
3908
+ # Required. The name of the SKAdNetworkConversionValueSchema to delete. Format:
3909
+ # properties/`property`/dataStreams/`dataStream`/
3910
+ # sKAdNetworkConversionValueSchema/`skadnetwork_conversion_value_schema`
3911
+ # @param [String] fields
3912
+ # Selector specifying which fields to include in a partial response.
3913
+ # @param [String] quota_user
3914
+ # Available to use for quota purposes for server-side applications. Can be any
3915
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3916
+ # @param [Google::Apis::RequestOptions] options
3917
+ # Request-specific options
3918
+ #
3919
+ # @yield [result, err] Result & error if block supplied
3920
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty] parsed result object
3921
+ # @yieldparam err [StandardError] error object if request failed
3922
+ #
3923
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty]
3924
+ #
3925
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3926
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3927
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3928
+ def delete_property_data_stream_s_k_ad_network_conversion_value_schema(name, fields: nil, quota_user: nil, options: nil, &block)
3929
+ command = make_simple_command(:delete, 'v1alpha/{+name}', options)
3930
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty::Representation
3931
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleProtobufEmpty
3932
+ command.params['name'] = name unless name.nil?
3933
+ command.query['fields'] = fields unless fields.nil?
3934
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3935
+ execute_or_queue_command(command, &block)
3936
+ end
3937
+
3938
+ # Looks up a single SKAdNetworkConversionValueSchema.
3939
+ # @param [String] name
3940
+ # Required. The resource name of SKAdNetwork conversion value schema to look up.
3941
+ # Format: properties/`property`/dataStreams/`dataStream`/
3942
+ # sKAdNetworkConversionValueSchema/`skadnetwork_conversion_value_schema`
3943
+ # @param [String] fields
3944
+ # Selector specifying which fields to include in a partial response.
3945
+ # @param [String] quota_user
3946
+ # Available to use for quota purposes for server-side applications. Can be any
3947
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3948
+ # @param [Google::Apis::RequestOptions] options
3949
+ # Request-specific options
3950
+ #
3951
+ # @yield [result, err] Result & error if block supplied
3952
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema] parsed result object
3953
+ # @yieldparam err [StandardError] error object if request failed
3954
+ #
3955
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema]
3956
+ #
3957
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3958
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3959
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3960
+ def get_property_data_stream_s_k_ad_network_conversion_value_schema(name, fields: nil, quota_user: nil, options: nil, &block)
3961
+ command = make_simple_command(:get, 'v1alpha/{+name}', options)
3962
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
3963
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
3964
+ command.params['name'] = name unless name.nil?
3965
+ command.query['fields'] = fields unless fields.nil?
3966
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3967
+ execute_or_queue_command(command, &block)
3968
+ end
3969
+
3970
+ # Lists SKAdNetworkConversionValueSchema on a stream. Properties can have at
3971
+ # most one SKAdNetworkConversionValueSchema.
3972
+ # @param [String] parent
3973
+ # Required. The DataStream resource to list schemas for. Format: properties/`
3974
+ # property_id`/dataStreams/`dataStream` Example: properties/1234/dataStreams/
3975
+ # 5678
3976
+ # @param [Fixnum] page_size
3977
+ # The maximum number of resources to return. The service may return fewer than
3978
+ # this value, even if there are additional pages. If unspecified, at most 50
3979
+ # resources will be returned. The maximum value is 200; (higher values will be
3980
+ # coerced to the maximum)
3981
+ # @param [String] page_token
3982
+ # A page token, received from a previous `ListSKAdNetworkConversionValueSchemas`
3983
+ # call. Provide this to retrieve the subsequent page. When paginating, all other
3984
+ # parameters provided to `ListSKAdNetworkConversionValueSchema` must match the
3985
+ # call that provided the page token.
3986
+ # @param [String] fields
3987
+ # Selector specifying which fields to include in a partial response.
3988
+ # @param [String] quota_user
3989
+ # Available to use for quota purposes for server-side applications. Can be any
3990
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3991
+ # @param [Google::Apis::RequestOptions] options
3992
+ # Request-specific options
3993
+ #
3994
+ # @yield [result, err] Result & error if block supplied
3995
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse] parsed result object
3996
+ # @yieldparam err [StandardError] error object if request failed
3997
+ #
3998
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse]
3999
+ #
4000
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4001
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4002
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4003
+ 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)
4004
+ command = make_simple_command(:get, 'v1alpha/{+parent}/sKAdNetworkConversionValueSchema', options)
4005
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse::Representation
4006
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaListSkAdNetworkConversionValueSchemasResponse
4007
+ command.params['parent'] = parent unless parent.nil?
4008
+ command.query['pageSize'] = page_size unless page_size.nil?
4009
+ command.query['pageToken'] = page_token unless page_token.nil?
4010
+ command.query['fields'] = fields unless fields.nil?
4011
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4012
+ execute_or_queue_command(command, &block)
4013
+ end
4014
+
4015
+ # Updates a SKAdNetworkConversionValueSchema.
4016
+ # @param [String] name
4017
+ # Output only. Resource name of the schema. This will be child of ONLY an iOS
4018
+ # stream, and there can be at most one such child under an iOS stream. Format:
4019
+ # properties/`property`/dataStreams/`dataStream`/
4020
+ # sKAdNetworkConversionValueSchema
4021
+ # @param [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema] google_analytics_admin_v1alpha_sk_ad_network_conversion_value_schema_object
4022
+ # @param [String] update_mask
4023
+ # Required. The list of fields to be updated. Omitted fields will not be updated.
4024
+ # @param [String] fields
4025
+ # Selector specifying which fields to include in a partial response.
4026
+ # @param [String] quota_user
4027
+ # Available to use for quota purposes for server-side applications. Can be any
4028
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
4029
+ # @param [Google::Apis::RequestOptions] options
4030
+ # Request-specific options
4031
+ #
4032
+ # @yield [result, err] Result & error if block supplied
4033
+ # @yieldparam result [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema] parsed result object
4034
+ # @yieldparam err [StandardError] error object if request failed
4035
+ #
4036
+ # @return [Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema]
4037
+ #
4038
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
4039
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
4040
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
4041
+ 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)
4042
+ command = make_simple_command(:patch, 'v1alpha/{+name}', options)
4043
+ command.request_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
4044
+ command.request_object = google_analytics_admin_v1alpha_sk_ad_network_conversion_value_schema_object
4045
+ command.response_representation = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema::Representation
4046
+ command.response_class = Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaSkAdNetworkConversionValueSchema
4047
+ command.params['name'] = name unless name.nil?
4048
+ command.query['updateMask'] = update_mask unless update_mask.nil?
4049
+ command.query['fields'] = fields unless fields.nil?
4050
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
4051
+ execute_or_queue_command(command, &block)
4052
+ end
4053
+
3800
4054
  # Approves a DisplayVideo360AdvertiserLinkProposal. The
3801
4055
  # DisplayVideo360AdvertiserLinkProposal will be deleted and a new
3802
4056
  # 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.61.0
4
+ version: 0.63.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-20 00:00:00.000000000 Z
11
+ date: 2023-10-01 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.61.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-analyticsadmin_v1alpha/v0.63.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