google-apis-dfareporting_v4 0.15.0 → 0.16.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: 2ad70854360602232e8da2dd92e18bf09343b5bd0372e52d30746042621d6259
4
- data.tar.gz: c59e2019e608c8746cbeddedba1ca1502e33dbcb1bcaea7f379eed8439546b1e
3
+ metadata.gz: c67afaa7be6d701bebcba9de630e724c4a413d96c3fececdb2d49c1e034df2b7
4
+ data.tar.gz: 16a958410a2537b5ce54fd6b58a484701f695ddc8e1d321fe2feb05558ef31a1
5
5
  SHA512:
6
- metadata.gz: 58009a11dc6ca59a330594e7b7bcd377f8b9ff8f699c3d5fa9c5cbd619949e6d5b7585eb1a4b4770495e1c1e6d1ffcdb6e03190d1d3ccae495141035bb436fc2
7
- data.tar.gz: e1ecce06a0026eaa65c33fd934b23e9aaa4e4c771c2500a309a6547df76ccf9cac7c2fc29f280445a83415264fac4a8a163fc349c99b4fa0e1f2f70f80921104
6
+ metadata.gz: 62f094d1ee00d03ab880dc1b40cc8009425906266a4836c6f09b16faf0d057278f69f9c1c2211ff8b18be19e750750a28da5b83c5a3e00c7270e48b06c7f1b1a
7
+ data.tar.gz: b7cda36f00b028e2775109a641281d17036b92854f4eff995efda1a691b6ed952ae951cd0ef69f79b3c3af0d7f4e3bb80ce7b7873e9ecce8c2ec84be5473a2f6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dfareporting_v4
2
2
 
3
+ ### v0.16.0 (2024-06-16)
4
+
5
+ * Regenerated from discovery document revision 20240613
6
+
3
7
  ### v0.15.0 (2024-05-19)
4
8
 
5
9
  * Regenerated using generator version 0.15.0
@@ -389,7 +389,7 @@ module Google
389
389
  # @return [String]
390
390
  attr_accessor :comments
391
391
 
392
- # Email of the user profile. The email addresss must be linked to a Google
392
+ # Email of the user profile. The email address must be linked to a Google
393
393
  # Account. This field is required on insertion and is read-only after insertion.
394
394
  # Corresponds to the JSON property `email`
395
395
  # @return [String]
@@ -2218,74 +2218,6 @@ module Google
2218
2218
  end
2219
2219
  end
2220
2220
 
2221
- # Represents a DfaReporting channel grouping.
2222
- class ChannelGrouping
2223
- include Google::Apis::Core::Hashable
2224
-
2225
- # ChannelGrouping fallback name.
2226
- # Corresponds to the JSON property `fallbackName`
2227
- # @return [String]
2228
- attr_accessor :fallback_name
2229
-
2230
- # The kind of resource this is, in this case dfareporting#channelGrouping.
2231
- # Corresponds to the JSON property `kind`
2232
- # @return [String]
2233
- attr_accessor :kind
2234
-
2235
- # ChannelGrouping name.
2236
- # Corresponds to the JSON property `name`
2237
- # @return [String]
2238
- attr_accessor :name
2239
-
2240
- # The rules contained within this channel grouping.
2241
- # Corresponds to the JSON property `rules`
2242
- # @return [Array<Google::Apis::DfareportingV4::ChannelGroupingRule>]
2243
- attr_accessor :rules
2244
-
2245
- def initialize(**args)
2246
- update!(**args)
2247
- end
2248
-
2249
- # Update properties of this object
2250
- def update!(**args)
2251
- @fallback_name = args[:fallback_name] if args.key?(:fallback_name)
2252
- @kind = args[:kind] if args.key?(:kind)
2253
- @name = args[:name] if args.key?(:name)
2254
- @rules = args[:rules] if args.key?(:rules)
2255
- end
2256
- end
2257
-
2258
- # Represents a DfaReporting channel grouping rule.
2259
- class ChannelGroupingRule
2260
- include Google::Apis::Core::Hashable
2261
-
2262
- # The disjunctive match statements contained within this rule.
2263
- # Corresponds to the JSON property `disjunctiveMatchStatements`
2264
- # @return [Array<Google::Apis::DfareportingV4::DisjunctiveMatchStatement>]
2265
- attr_accessor :disjunctive_match_statements
2266
-
2267
- # The kind of resource this is, in this case dfareporting#channelGroupingRule.
2268
- # Corresponds to the JSON property `kind`
2269
- # @return [String]
2270
- attr_accessor :kind
2271
-
2272
- # Rule name.
2273
- # Corresponds to the JSON property `name`
2274
- # @return [String]
2275
- attr_accessor :name
2276
-
2277
- def initialize(**args)
2278
- update!(**args)
2279
- end
2280
-
2281
- # Update properties of this object
2282
- def update!(**args)
2283
- @disjunctive_match_statements = args[:disjunctive_match_statements] if args.key?(:disjunctive_match_statements)
2284
- @kind = args[:kind] if args.key?(:kind)
2285
- @name = args[:name] if args.key?(:name)
2286
- end
2287
- end
2288
-
2289
2221
  # City List Response
2290
2222
  class CitiesListResponse
2291
2223
  include Google::Apis::Core::Hashable
@@ -2575,18 +2507,6 @@ module Google
2575
2507
  # @return [String]
2576
2508
  attr_accessor :kind
2577
2509
 
2578
- # Represents fields that are compatible to be selected for a report of type "
2579
- # PATH".
2580
- # Corresponds to the JSON property `pathAttributionReportCompatibleFields`
2581
- # @return [Google::Apis::DfareportingV4::PathReportCompatibleFields]
2582
- attr_accessor :path_attribution_report_compatible_fields
2583
-
2584
- # Represents fields that are compatible to be selected for a report of type "
2585
- # PATH".
2586
- # Corresponds to the JSON property `pathReportCompatibleFields`
2587
- # @return [Google::Apis::DfareportingV4::PathReportCompatibleFields]
2588
- attr_accessor :path_report_compatible_fields
2589
-
2590
2510
  # Represents fields that are compatible to be selected for a report of type "
2591
2511
  # PATH_TO_CONVERSION".
2592
2512
  # Corresponds to the JSON property `pathToConversionReportCompatibleFields`
@@ -2614,8 +2534,6 @@ module Google
2614
2534
  @cross_dimension_reach_report_compatible_fields = args[:cross_dimension_reach_report_compatible_fields] if args.key?(:cross_dimension_reach_report_compatible_fields)
2615
2535
  @floodlight_report_compatible_fields = args[:floodlight_report_compatible_fields] if args.key?(:floodlight_report_compatible_fields)
2616
2536
  @kind = args[:kind] if args.key?(:kind)
2617
- @path_attribution_report_compatible_fields = args[:path_attribution_report_compatible_fields] if args.key?(:path_attribution_report_compatible_fields)
2618
- @path_report_compatible_fields = args[:path_report_compatible_fields] if args.key?(:path_report_compatible_fields)
2619
2537
  @path_to_conversion_report_compatible_fields = args[:path_to_conversion_report_compatible_fields] if args.key?(:path_to_conversion_report_compatible_fields)
2620
2538
  @reach_report_compatible_fields = args[:reach_report_compatible_fields] if args.key?(:reach_report_compatible_fields)
2621
2539
  @report_compatible_fields = args[:report_compatible_fields] if args.key?(:report_compatible_fields)
@@ -5713,33 +5631,6 @@ module Google
5713
5631
  end
5714
5632
  end
5715
5633
 
5716
- # Represents a Disjunctive Match Statement resource, which is a conjunction (and)
5717
- # of disjunctive (or) boolean statements.
5718
- class DisjunctiveMatchStatement
5719
- include Google::Apis::Core::Hashable
5720
-
5721
- # The event filters contained within this disjunctive match statement.
5722
- # Corresponds to the JSON property `eventFilters`
5723
- # @return [Array<Google::Apis::DfareportingV4::EventFilter>]
5724
- attr_accessor :event_filters
5725
-
5726
- # The kind of resource this is, in this case dfareporting#
5727
- # disjunctiveMatchStatement.
5728
- # Corresponds to the JSON property `kind`
5729
- # @return [String]
5730
- attr_accessor :kind
5731
-
5732
- def initialize(**args)
5733
- update!(**args)
5734
- end
5735
-
5736
- # Update properties of this object
5737
- def update!(**args)
5738
- @event_filters = args[:event_filters] if args.key?(:event_filters)
5739
- @kind = args[:kind] if args.key?(:kind)
5740
- end
5741
- end
5742
-
5743
5634
  # Contains properties of a dynamic targeting key. Dynamic targeting keys are
5744
5635
  # unique, user-friendly labels, created at the advertiser level in DCM, that can
5745
5636
  # be assigned to ads, creatives, and placements and used for targeting with
@@ -5852,37 +5743,6 @@ module Google
5852
5743
  end
5853
5744
  end
5854
5745
 
5855
- # Represents a DfaReporting event filter.
5856
- class EventFilter
5857
- include Google::Apis::Core::Hashable
5858
-
5859
- # Represents a PathReportDimensionValue resource.
5860
- # Corresponds to the JSON property `dimensionFilter`
5861
- # @return [Google::Apis::DfareportingV4::PathReportDimensionValue]
5862
- attr_accessor :dimension_filter
5863
-
5864
- # The kind of resource this is, in this case dfareporting#eventFilter.
5865
- # Corresponds to the JSON property `kind`
5866
- # @return [String]
5867
- attr_accessor :kind
5868
-
5869
- # Defines the filtering on a single uvar.
5870
- # Corresponds to the JSON property `uvarFilter`
5871
- # @return [Google::Apis::DfareportingV4::UvarFilter]
5872
- attr_accessor :uvar_filter
5873
-
5874
- def initialize(**args)
5875
- update!(**args)
5876
- end
5877
-
5878
- # Update properties of this object
5879
- def update!(**args)
5880
- @dimension_filter = args[:dimension_filter] if args.key?(:dimension_filter)
5881
- @kind = args[:kind] if args.key?(:kind)
5882
- @uvar_filter = args[:uvar_filter] if args.key?(:uvar_filter)
5883
- end
5884
- end
5885
-
5886
5746
  # Contains properties of an event tag.
5887
5747
  class EventTag
5888
5748
  include Google::Apis::Core::Hashable
@@ -6260,15 +6120,15 @@ module Google
6260
6120
  class FloodlightActivitiesGenerateTagResponse
6261
6121
  include Google::Apis::Core::Hashable
6262
6122
 
6263
- # Generated tag for this Floodlight activity. For global site tags, this is the
6264
- # event snippet.
6123
+ # Generated tag for this Floodlight activity. For Google tags, this is the event
6124
+ # snippet.
6265
6125
  # Corresponds to the JSON property `floodlightActivityTag`
6266
6126
  # @return [String]
6267
6127
  attr_accessor :floodlight_activity_tag
6268
6128
 
6269
- # The global snippet section of a global site tag. The global site tag sets new
6270
- # cookies on your domain, which will store a unique identifier for a user or the
6271
- # ad click that brought the user to your site. Learn more.
6129
+ # The global snippet section of a Google tag. The Google tag sets new cookies on
6130
+ # your domain, which will store a unique identifier for a user or the ad click
6131
+ # that brought the user to your site. Learn more.
6272
6132
  # Corresponds to the JSON property `globalSiteTagGlobalSnippet`
6273
6133
  # @return [String]
6274
6134
  attr_accessor :global_site_tag_global_snippet
@@ -8719,138 +8579,6 @@ module Google
8719
8579
  end
8720
8580
  end
8721
8581
 
8722
- # Represents a DfaReporting path filter.
8723
- class PathFilter
8724
- include Google::Apis::Core::Hashable
8725
-
8726
- # Event filters in path report.
8727
- # Corresponds to the JSON property `eventFilters`
8728
- # @return [Array<Google::Apis::DfareportingV4::EventFilter>]
8729
- attr_accessor :event_filters
8730
-
8731
- # The kind of resource this is, in this case dfareporting#pathFilter.
8732
- # Corresponds to the JSON property `kind`
8733
- # @return [String]
8734
- attr_accessor :kind
8735
-
8736
- # Determines how the 'value' field is matched when filtering. If not specified,
8737
- # defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a
8738
- # placeholder for variable length character sequences, and it can be escaped
8739
- # with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow
8740
- # a matchType other than EXACT.
8741
- # Corresponds to the JSON property `pathMatchPosition`
8742
- # @return [String]
8743
- attr_accessor :path_match_position
8744
-
8745
- def initialize(**args)
8746
- update!(**args)
8747
- end
8748
-
8749
- # Update properties of this object
8750
- def update!(**args)
8751
- @event_filters = args[:event_filters] if args.key?(:event_filters)
8752
- @kind = args[:kind] if args.key?(:kind)
8753
- @path_match_position = args[:path_match_position] if args.key?(:path_match_position)
8754
- end
8755
- end
8756
-
8757
- # Represents fields that are compatible to be selected for a report of type "
8758
- # PATH".
8759
- class PathReportCompatibleFields
8760
- include Google::Apis::Core::Hashable
8761
-
8762
- # Dimensions which are compatible to be selected in the "channelGroupings"
8763
- # section of the report.
8764
- # Corresponds to the JSON property `channelGroupings`
8765
- # @return [Array<Google::Apis::DfareportingV4::Dimension>]
8766
- attr_accessor :channel_groupings
8767
-
8768
- # Dimensions which are compatible to be selected in the "dimensions" section of
8769
- # the report.
8770
- # Corresponds to the JSON property `dimensions`
8771
- # @return [Array<Google::Apis::DfareportingV4::Dimension>]
8772
- attr_accessor :dimensions
8773
-
8774
- # The kind of resource this is, in this case dfareporting#
8775
- # pathReportCompatibleFields.
8776
- # Corresponds to the JSON property `kind`
8777
- # @return [String]
8778
- attr_accessor :kind
8779
-
8780
- # Metrics which are compatible to be selected in the "metricNames" section of
8781
- # the report.
8782
- # Corresponds to the JSON property `metrics`
8783
- # @return [Array<Google::Apis::DfareportingV4::Metric>]
8784
- attr_accessor :metrics
8785
-
8786
- # Dimensions which are compatible to be selected in the "pathFilters" section of
8787
- # the report.
8788
- # Corresponds to the JSON property `pathFilters`
8789
- # @return [Array<Google::Apis::DfareportingV4::Dimension>]
8790
- attr_accessor :path_filters
8791
-
8792
- def initialize(**args)
8793
- update!(**args)
8794
- end
8795
-
8796
- # Update properties of this object
8797
- def update!(**args)
8798
- @channel_groupings = args[:channel_groupings] if args.key?(:channel_groupings)
8799
- @dimensions = args[:dimensions] if args.key?(:dimensions)
8800
- @kind = args[:kind] if args.key?(:kind)
8801
- @metrics = args[:metrics] if args.key?(:metrics)
8802
- @path_filters = args[:path_filters] if args.key?(:path_filters)
8803
- end
8804
- end
8805
-
8806
- # Represents a PathReportDimensionValue resource.
8807
- class PathReportDimensionValue
8808
- include Google::Apis::Core::Hashable
8809
-
8810
- # The name of the dimension.
8811
- # Corresponds to the JSON property `dimensionName`
8812
- # @return [String]
8813
- attr_accessor :dimension_name
8814
-
8815
- # The possible ID's associated with the value if available.
8816
- # Corresponds to the JSON property `ids`
8817
- # @return [Array<String>]
8818
- attr_accessor :ids
8819
-
8820
- # The kind of resource this is, in this case dfareporting#
8821
- # pathReportDimensionValue.
8822
- # Corresponds to the JSON property `kind`
8823
- # @return [String]
8824
- attr_accessor :kind
8825
-
8826
- # Determines how the 'value' field is matched when filtering. If not specified,
8827
- # defaults to EXACT. If set to WILDCARD_EXPRESSION, '*' is allowed as a
8828
- # placeholder for variable length character sequences, and it can be escaped
8829
- # with a backslash. Note, only paid search dimensions ('dfa:paidSearch*') allow
8830
- # a matchType other than EXACT.
8831
- # Corresponds to the JSON property `matchType`
8832
- # @return [String]
8833
- attr_accessor :match_type
8834
-
8835
- # The possible values of the dimension.
8836
- # Corresponds to the JSON property `values`
8837
- # @return [Array<String>]
8838
- attr_accessor :values
8839
-
8840
- def initialize(**args)
8841
- update!(**args)
8842
- end
8843
-
8844
- # Update properties of this object
8845
- def update!(**args)
8846
- @dimension_name = args[:dimension_name] if args.key?(:dimension_name)
8847
- @ids = args[:ids] if args.key?(:ids)
8848
- @kind = args[:kind] if args.key?(:kind)
8849
- @match_type = args[:match_type] if args.key?(:match_type)
8850
- @values = args[:values] if args.key?(:values)
8851
- end
8852
- end
8853
-
8854
8582
  # Represents fields that are compatible to be selected for a report of type "
8855
8583
  # PATH_TO_CONVERSION".
8856
8584
  class PathToConversionReportCompatibleFields
@@ -10642,16 +10370,6 @@ module Google
10642
10370
  # @return [Fixnum]
10643
10371
  attr_accessor :owner_profile_id
10644
10372
 
10645
- # The report criteria for a report of type "PATH_ATTRIBUTION".
10646
- # Corresponds to the JSON property `pathAttributionCriteria`
10647
- # @return [Google::Apis::DfareportingV4::Report::PathAttributionCriteria]
10648
- attr_accessor :path_attribution_criteria
10649
-
10650
- # The report criteria for a report of type "PATH".
10651
- # Corresponds to the JSON property `pathCriteria`
10652
- # @return [Google::Apis::DfareportingV4::Report::PathCriteria]
10653
- attr_accessor :path_criteria
10654
-
10655
10373
  # The report criteria for a report of type "PATH_TO_CONVERSION".
10656
10374
  # Corresponds to the JSON property `pathToConversionCriteria`
10657
10375
  # @return [Google::Apis::DfareportingV4::Report::PathToConversionCriteria]
@@ -10697,8 +10415,6 @@ module Google
10697
10415
  @last_modified_time = args[:last_modified_time] if args.key?(:last_modified_time)
10698
10416
  @name = args[:name] if args.key?(:name)
10699
10417
  @owner_profile_id = args[:owner_profile_id] if args.key?(:owner_profile_id)
10700
- @path_attribution_criteria = args[:path_attribution_criteria] if args.key?(:path_attribution_criteria)
10701
- @path_criteria = args[:path_criteria] if args.key?(:path_criteria)
10702
10418
  @path_to_conversion_criteria = args[:path_to_conversion_criteria] if args.key?(:path_to_conversion_criteria)
10703
10419
  @reach_criteria = args[:reach_criteria] if args.key?(:reach_criteria)
10704
10420
  @schedule = args[:schedule] if args.key?(:schedule)
@@ -10946,116 +10662,6 @@ module Google
10946
10662
  end
10947
10663
  end
10948
10664
 
10949
- # The report criteria for a report of type "PATH_ATTRIBUTION".
10950
- class PathAttributionCriteria
10951
- include Google::Apis::Core::Hashable
10952
-
10953
- # The list of 'dfa:activity' values to filter on.
10954
- # Corresponds to the JSON property `activityFilters`
10955
- # @return [Array<Google::Apis::DfareportingV4::DimensionValue>]
10956
- attr_accessor :activity_filters
10957
-
10958
- # Represents a DfaReporting channel grouping.
10959
- # Corresponds to the JSON property `customChannelGrouping`
10960
- # @return [Google::Apis::DfareportingV4::ChannelGrouping]
10961
- attr_accessor :custom_channel_grouping
10962
-
10963
- # Represents a date range.
10964
- # Corresponds to the JSON property `dateRange`
10965
- # @return [Google::Apis::DfareportingV4::DateRange]
10966
- attr_accessor :date_range
10967
-
10968
- # The list of dimensions the report should include.
10969
- # Corresponds to the JSON property `dimensions`
10970
- # @return [Array<Google::Apis::DfareportingV4::SortedDimension>]
10971
- attr_accessor :dimensions
10972
-
10973
- # Represents a DimensionValue resource.
10974
- # Corresponds to the JSON property `floodlightConfigId`
10975
- # @return [Google::Apis::DfareportingV4::DimensionValue]
10976
- attr_accessor :floodlight_config_id
10977
-
10978
- # The list of names of metrics the report should include.
10979
- # Corresponds to the JSON property `metricNames`
10980
- # @return [Array<String>]
10981
- attr_accessor :metric_names
10982
-
10983
- # Path Filters.
10984
- # Corresponds to the JSON property `pathFilters`
10985
- # @return [Array<Google::Apis::DfareportingV4::PathFilter>]
10986
- attr_accessor :path_filters
10987
-
10988
- def initialize(**args)
10989
- update!(**args)
10990
- end
10991
-
10992
- # Update properties of this object
10993
- def update!(**args)
10994
- @activity_filters = args[:activity_filters] if args.key?(:activity_filters)
10995
- @custom_channel_grouping = args[:custom_channel_grouping] if args.key?(:custom_channel_grouping)
10996
- @date_range = args[:date_range] if args.key?(:date_range)
10997
- @dimensions = args[:dimensions] if args.key?(:dimensions)
10998
- @floodlight_config_id = args[:floodlight_config_id] if args.key?(:floodlight_config_id)
10999
- @metric_names = args[:metric_names] if args.key?(:metric_names)
11000
- @path_filters = args[:path_filters] if args.key?(:path_filters)
11001
- end
11002
- end
11003
-
11004
- # The report criteria for a report of type "PATH".
11005
- class PathCriteria
11006
- include Google::Apis::Core::Hashable
11007
-
11008
- # The list of 'dfa:activity' values to filter on.
11009
- # Corresponds to the JSON property `activityFilters`
11010
- # @return [Array<Google::Apis::DfareportingV4::DimensionValue>]
11011
- attr_accessor :activity_filters
11012
-
11013
- # Represents a DfaReporting channel grouping.
11014
- # Corresponds to the JSON property `customChannelGrouping`
11015
- # @return [Google::Apis::DfareportingV4::ChannelGrouping]
11016
- attr_accessor :custom_channel_grouping
11017
-
11018
- # Represents a date range.
11019
- # Corresponds to the JSON property `dateRange`
11020
- # @return [Google::Apis::DfareportingV4::DateRange]
11021
- attr_accessor :date_range
11022
-
11023
- # The list of dimensions the report should include.
11024
- # Corresponds to the JSON property `dimensions`
11025
- # @return [Array<Google::Apis::DfareportingV4::SortedDimension>]
11026
- attr_accessor :dimensions
11027
-
11028
- # Represents a DimensionValue resource.
11029
- # Corresponds to the JSON property `floodlightConfigId`
11030
- # @return [Google::Apis::DfareportingV4::DimensionValue]
11031
- attr_accessor :floodlight_config_id
11032
-
11033
- # The list of names of metrics the report should include.
11034
- # Corresponds to the JSON property `metricNames`
11035
- # @return [Array<String>]
11036
- attr_accessor :metric_names
11037
-
11038
- # Path Filters.
11039
- # Corresponds to the JSON property `pathFilters`
11040
- # @return [Array<Google::Apis::DfareportingV4::PathFilter>]
11041
- attr_accessor :path_filters
11042
-
11043
- def initialize(**args)
11044
- update!(**args)
11045
- end
11046
-
11047
- # Update properties of this object
11048
- def update!(**args)
11049
- @activity_filters = args[:activity_filters] if args.key?(:activity_filters)
11050
- @custom_channel_grouping = args[:custom_channel_grouping] if args.key?(:custom_channel_grouping)
11051
- @date_range = args[:date_range] if args.key?(:date_range)
11052
- @dimensions = args[:dimensions] if args.key?(:dimensions)
11053
- @floodlight_config_id = args[:floodlight_config_id] if args.key?(:floodlight_config_id)
11054
- @metric_names = args[:metric_names] if args.key?(:metric_names)
11055
- @path_filters = args[:path_filters] if args.key?(:path_filters)
11056
- end
11057
- end
11058
-
11059
10665
  # The report criteria for a report of type "PATH_TO_CONVERSION".
11060
10666
  class PathToConversionCriteria
11061
10667
  include Google::Apis::Core::Hashable
@@ -13168,50 +12774,6 @@ module Google
13168
12774
  end
13169
12775
  end
13170
12776
 
13171
- # Defines the filtering on a single uvar.
13172
- class UvarFilter
13173
- include Google::Apis::Core::Hashable
13174
-
13175
- # Return rows which don't match this filter.
13176
- # Corresponds to the JSON property `complement`
13177
- # @return [Boolean]
13178
- attr_accessor :complement
13179
- alias_method :complement?, :complement
13180
-
13181
- # Custom variable index the filter is applied to.
13182
- # Corresponds to the JSON property `index`
13183
- # @return [Fixnum]
13184
- attr_accessor :index
13185
-
13186
- # The kind of resource this is, in this case dfareporting#uvarFilter.
13187
- # Corresponds to the JSON property `kind`
13188
- # @return [String]
13189
- attr_accessor :kind
13190
-
13191
- # Indicates how the filter should be matched to the values.
13192
- # Corresponds to the JSON property `match`
13193
- # @return [String]
13194
- attr_accessor :match
13195
-
13196
- # Values to filter on.
13197
- # Corresponds to the JSON property `values`
13198
- # @return [Array<String>]
13199
- attr_accessor :values
13200
-
13201
- def initialize(**args)
13202
- update!(**args)
13203
- end
13204
-
13205
- # Update properties of this object
13206
- def update!(**args)
13207
- @complement = args[:complement] if args.key?(:complement)
13208
- @index = args[:index] if args.key?(:index)
13209
- @kind = args[:kind] if args.key?(:kind)
13210
- @match = args[:match] if args.key?(:match)
13211
- @values = args[:values] if args.key?(:values)
13212
- end
13213
- end
13214
-
13215
12777
  # Contains information about supported video formats.
13216
12778
  class VideoFormat
13217
12779
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DfareportingV4
18
18
  # Version of the google-apis-dfareporting_v4 gem
19
- GEM_VERSION = "0.15.0"
19
+ GEM_VERSION = "0.16.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240201"
25
+ REVISION = "20240613"
26
26
  end
27
27
  end
28
28
  end
@@ -250,18 +250,6 @@ module Google
250
250
  include Google::Apis::Core::JsonObjectSupport
251
251
  end
252
252
 
253
- class ChannelGrouping
254
- class Representation < Google::Apis::Core::JsonRepresentation; end
255
-
256
- include Google::Apis::Core::JsonObjectSupport
257
- end
258
-
259
- class ChannelGroupingRule
260
- class Representation < Google::Apis::Core::JsonRepresentation; end
261
-
262
- include Google::Apis::Core::JsonObjectSupport
263
- end
264
-
265
253
  class CitiesListResponse
266
254
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
255
 
@@ -616,12 +604,6 @@ module Google
616
604
  include Google::Apis::Core::JsonObjectSupport
617
605
  end
618
606
 
619
- class DisjunctiveMatchStatement
620
- class Representation < Google::Apis::Core::JsonRepresentation; end
621
-
622
- include Google::Apis::Core::JsonObjectSupport
623
- end
624
-
625
607
  class DynamicTargetingKey
626
608
  class Representation < Google::Apis::Core::JsonRepresentation; end
627
609
 
@@ -640,12 +622,6 @@ module Google
640
622
  include Google::Apis::Core::JsonObjectSupport
641
623
  end
642
624
 
643
- class EventFilter
644
- class Representation < Google::Apis::Core::JsonRepresentation; end
645
-
646
- include Google::Apis::Core::JsonObjectSupport
647
- end
648
-
649
625
  class EventTag
650
626
  class Representation < Google::Apis::Core::JsonRepresentation; end
651
627
 
@@ -988,24 +964,6 @@ module Google
988
964
  include Google::Apis::Core::JsonObjectSupport
989
965
  end
990
966
 
991
- class PathFilter
992
- class Representation < Google::Apis::Core::JsonRepresentation; end
993
-
994
- include Google::Apis::Core::JsonObjectSupport
995
- end
996
-
997
- class PathReportCompatibleFields
998
- class Representation < Google::Apis::Core::JsonRepresentation; end
999
-
1000
- include Google::Apis::Core::JsonObjectSupport
1001
- end
1002
-
1003
- class PathReportDimensionValue
1004
- class Representation < Google::Apis::Core::JsonRepresentation; end
1005
-
1006
- include Google::Apis::Core::JsonObjectSupport
1007
- end
1008
-
1009
967
  class PathToConversionReportCompatibleFields
1010
968
  class Representation < Google::Apis::Core::JsonRepresentation; end
1011
969
 
@@ -1213,18 +1171,6 @@ module Google
1213
1171
  include Google::Apis::Core::JsonObjectSupport
1214
1172
  end
1215
1173
 
1216
- class PathAttributionCriteria
1217
- class Representation < Google::Apis::Core::JsonRepresentation; end
1218
-
1219
- include Google::Apis::Core::JsonObjectSupport
1220
- end
1221
-
1222
- class PathCriteria
1223
- class Representation < Google::Apis::Core::JsonRepresentation; end
1224
-
1225
- include Google::Apis::Core::JsonObjectSupport
1226
- end
1227
-
1228
1174
  class PathToConversionCriteria
1229
1175
  class Representation < Google::Apis::Core::JsonRepresentation; end
1230
1176
 
@@ -1504,12 +1450,6 @@ module Google
1504
1450
  include Google::Apis::Core::JsonObjectSupport
1505
1451
  end
1506
1452
 
1507
- class UvarFilter
1508
- class Representation < Google::Apis::Core::JsonRepresentation; end
1509
-
1510
- include Google::Apis::Core::JsonObjectSupport
1511
- end
1512
-
1513
1453
  class VideoFormat
1514
1454
  class Representation < Google::Apis::Core::JsonRepresentation; end
1515
1455
 
@@ -2080,27 +2020,6 @@ module Google
2080
2020
  end
2081
2021
  end
2082
2022
 
2083
- class ChannelGrouping
2084
- # @private
2085
- class Representation < Google::Apis::Core::JsonRepresentation
2086
- property :fallback_name, as: 'fallbackName'
2087
- property :kind, as: 'kind'
2088
- property :name, as: 'name'
2089
- collection :rules, as: 'rules', class: Google::Apis::DfareportingV4::ChannelGroupingRule, decorator: Google::Apis::DfareportingV4::ChannelGroupingRule::Representation
2090
-
2091
- end
2092
- end
2093
-
2094
- class ChannelGroupingRule
2095
- # @private
2096
- class Representation < Google::Apis::Core::JsonRepresentation
2097
- collection :disjunctive_match_statements, as: 'disjunctiveMatchStatements', class: Google::Apis::DfareportingV4::DisjunctiveMatchStatement, decorator: Google::Apis::DfareportingV4::DisjunctiveMatchStatement::Representation
2098
-
2099
- property :kind, as: 'kind'
2100
- property :name, as: 'name'
2101
- end
2102
- end
2103
-
2104
2023
  class CitiesListResponse
2105
2024
  # @private
2106
2025
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2181,10 +2100,6 @@ module Google
2181
2100
  property :floodlight_report_compatible_fields, as: 'floodlightReportCompatibleFields', class: Google::Apis::DfareportingV4::FloodlightReportCompatibleFields, decorator: Google::Apis::DfareportingV4::FloodlightReportCompatibleFields::Representation
2182
2101
 
2183
2102
  property :kind, as: 'kind'
2184
- property :path_attribution_report_compatible_fields, as: 'pathAttributionReportCompatibleFields', class: Google::Apis::DfareportingV4::PathReportCompatibleFields, decorator: Google::Apis::DfareportingV4::PathReportCompatibleFields::Representation
2185
-
2186
- property :path_report_compatible_fields, as: 'pathReportCompatibleFields', class: Google::Apis::DfareportingV4::PathReportCompatibleFields, decorator: Google::Apis::DfareportingV4::PathReportCompatibleFields::Representation
2187
-
2188
2103
  property :path_to_conversion_report_compatible_fields, as: 'pathToConversionReportCompatibleFields', class: Google::Apis::DfareportingV4::PathToConversionReportCompatibleFields, decorator: Google::Apis::DfareportingV4::PathToConversionReportCompatibleFields::Representation
2189
2104
 
2190
2105
  property :reach_report_compatible_fields, as: 'reachReportCompatibleFields', class: Google::Apis::DfareportingV4::ReachReportCompatibleFields, decorator: Google::Apis::DfareportingV4::ReachReportCompatibleFields::Representation
@@ -2915,15 +2830,6 @@ module Google
2915
2830
  end
2916
2831
  end
2917
2832
 
2918
- class DisjunctiveMatchStatement
2919
- # @private
2920
- class Representation < Google::Apis::Core::JsonRepresentation
2921
- collection :event_filters, as: 'eventFilters', class: Google::Apis::DfareportingV4::EventFilter, decorator: Google::Apis::DfareportingV4::EventFilter::Representation
2922
-
2923
- property :kind, as: 'kind'
2924
- end
2925
- end
2926
-
2927
2833
  class DynamicTargetingKey
2928
2834
  # @private
2929
2835
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2953,17 +2859,6 @@ module Google
2953
2859
  end
2954
2860
  end
2955
2861
 
2956
- class EventFilter
2957
- # @private
2958
- class Representation < Google::Apis::Core::JsonRepresentation
2959
- property :dimension_filter, as: 'dimensionFilter', class: Google::Apis::DfareportingV4::PathReportDimensionValue, decorator: Google::Apis::DfareportingV4::PathReportDimensionValue::Representation
2960
-
2961
- property :kind, as: 'kind'
2962
- property :uvar_filter, as: 'uvarFilter', class: Google::Apis::DfareportingV4::UvarFilter, decorator: Google::Apis::DfareportingV4::UvarFilter::Representation
2963
-
2964
- end
2965
- end
2966
-
2967
2862
  class EventTag
2968
2863
  # @private
2969
2864
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3678,42 +3573,6 @@ module Google
3678
3573
  end
3679
3574
  end
3680
3575
 
3681
- class PathFilter
3682
- # @private
3683
- class Representation < Google::Apis::Core::JsonRepresentation
3684
- collection :event_filters, as: 'eventFilters', class: Google::Apis::DfareportingV4::EventFilter, decorator: Google::Apis::DfareportingV4::EventFilter::Representation
3685
-
3686
- property :kind, as: 'kind'
3687
- property :path_match_position, as: 'pathMatchPosition'
3688
- end
3689
- end
3690
-
3691
- class PathReportCompatibleFields
3692
- # @private
3693
- class Representation < Google::Apis::Core::JsonRepresentation
3694
- collection :channel_groupings, as: 'channelGroupings', class: Google::Apis::DfareportingV4::Dimension, decorator: Google::Apis::DfareportingV4::Dimension::Representation
3695
-
3696
- collection :dimensions, as: 'dimensions', class: Google::Apis::DfareportingV4::Dimension, decorator: Google::Apis::DfareportingV4::Dimension::Representation
3697
-
3698
- property :kind, as: 'kind'
3699
- collection :metrics, as: 'metrics', class: Google::Apis::DfareportingV4::Metric, decorator: Google::Apis::DfareportingV4::Metric::Representation
3700
-
3701
- collection :path_filters, as: 'pathFilters', class: Google::Apis::DfareportingV4::Dimension, decorator: Google::Apis::DfareportingV4::Dimension::Representation
3702
-
3703
- end
3704
- end
3705
-
3706
- class PathReportDimensionValue
3707
- # @private
3708
- class Representation < Google::Apis::Core::JsonRepresentation
3709
- property :dimension_name, as: 'dimensionName'
3710
- collection :ids, as: 'ids'
3711
- property :kind, as: 'kind'
3712
- property :match_type, as: 'matchType'
3713
- collection :values, as: 'values'
3714
- end
3715
- end
3716
-
3717
3576
  class PathToConversionReportCompatibleFields
3718
3577
  # @private
3719
3578
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4172,10 +4031,6 @@ module Google
4172
4031
  property :last_modified_time, :numeric_string => true, as: 'lastModifiedTime'
4173
4032
  property :name, as: 'name'
4174
4033
  property :owner_profile_id, :numeric_string => true, as: 'ownerProfileId'
4175
- property :path_attribution_criteria, as: 'pathAttributionCriteria', class: Google::Apis::DfareportingV4::Report::PathAttributionCriteria, decorator: Google::Apis::DfareportingV4::Report::PathAttributionCriteria::Representation
4176
-
4177
- property :path_criteria, as: 'pathCriteria', class: Google::Apis::DfareportingV4::Report::PathCriteria, decorator: Google::Apis::DfareportingV4::Report::PathCriteria::Representation
4178
-
4179
4034
  property :path_to_conversion_criteria, as: 'pathToConversionCriteria', class: Google::Apis::DfareportingV4::Report::PathToConversionCriteria, decorator: Google::Apis::DfareportingV4::Report::PathToConversionCriteria::Representation
4180
4035
 
4181
4036
  property :reach_criteria, as: 'reachCriteria', class: Google::Apis::DfareportingV4::Report::ReachCriteria, decorator: Google::Apis::DfareportingV4::Report::ReachCriteria::Representation
@@ -4258,44 +4113,6 @@ module Google
4258
4113
  end
4259
4114
  end
4260
4115
 
4261
- class PathAttributionCriteria
4262
- # @private
4263
- class Representation < Google::Apis::Core::JsonRepresentation
4264
- collection :activity_filters, as: 'activityFilters', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
4265
-
4266
- property :custom_channel_grouping, as: 'customChannelGrouping', class: Google::Apis::DfareportingV4::ChannelGrouping, decorator: Google::Apis::DfareportingV4::ChannelGrouping::Representation
4267
-
4268
- property :date_range, as: 'dateRange', class: Google::Apis::DfareportingV4::DateRange, decorator: Google::Apis::DfareportingV4::DateRange::Representation
4269
-
4270
- collection :dimensions, as: 'dimensions', class: Google::Apis::DfareportingV4::SortedDimension, decorator: Google::Apis::DfareportingV4::SortedDimension::Representation
4271
-
4272
- property :floodlight_config_id, as: 'floodlightConfigId', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
4273
-
4274
- collection :metric_names, as: 'metricNames'
4275
- collection :path_filters, as: 'pathFilters', class: Google::Apis::DfareportingV4::PathFilter, decorator: Google::Apis::DfareportingV4::PathFilter::Representation
4276
-
4277
- end
4278
- end
4279
-
4280
- class PathCriteria
4281
- # @private
4282
- class Representation < Google::Apis::Core::JsonRepresentation
4283
- collection :activity_filters, as: 'activityFilters', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
4284
-
4285
- property :custom_channel_grouping, as: 'customChannelGrouping', class: Google::Apis::DfareportingV4::ChannelGrouping, decorator: Google::Apis::DfareportingV4::ChannelGrouping::Representation
4286
-
4287
- property :date_range, as: 'dateRange', class: Google::Apis::DfareportingV4::DateRange, decorator: Google::Apis::DfareportingV4::DateRange::Representation
4288
-
4289
- collection :dimensions, as: 'dimensions', class: Google::Apis::DfareportingV4::SortedDimension, decorator: Google::Apis::DfareportingV4::SortedDimension::Representation
4290
-
4291
- property :floodlight_config_id, as: 'floodlightConfigId', class: Google::Apis::DfareportingV4::DimensionValue, decorator: Google::Apis::DfareportingV4::DimensionValue::Representation
4292
-
4293
- collection :metric_names, as: 'metricNames'
4294
- collection :path_filters, as: 'pathFilters', class: Google::Apis::DfareportingV4::PathFilter, decorator: Google::Apis::DfareportingV4::PathFilter::Representation
4295
-
4296
- end
4297
- end
4298
-
4299
4116
  class PathToConversionCriteria
4300
4117
  # @private
4301
4118
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4855,17 +4672,6 @@ module Google
4855
4672
  end
4856
4673
  end
4857
4674
 
4858
- class UvarFilter
4859
- # @private
4860
- class Representation < Google::Apis::Core::JsonRepresentation
4861
- property :complement, as: 'complement'
4862
- property :index, :numeric_string => true, as: 'index'
4863
- property :kind, as: 'kind'
4864
- property :match, as: 'match'
4865
- collection :values, as: 'values'
4866
- end
4867
- end
4868
-
4869
4675
  class VideoFormat
4870
4676
  # @private
4871
4677
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -341,7 +341,7 @@ module Google
341
341
  execute_or_queue_command(command, &block)
342
342
  end
343
343
 
344
- # Updates an existing user role. This method supports patch semantics.
344
+ # Updates an existing account user profile. This method supports patch semantics.
345
345
  # @param [Fixnum] profile_id
346
346
  # User profile ID associated with this request.
347
347
  # @param [Fixnum] id
@@ -746,7 +746,7 @@ module Google
746
746
  execute_or_queue_command(command, &block)
747
747
  end
748
748
 
749
- # Updates an existing event tag. This method supports patch semantics.
749
+ # Updates an existing ad. This method supports patch semantics.
750
750
  # @param [Fixnum] profile_id
751
751
  # User profile ID associated with this request.
752
752
  # @param [Fixnum] id
@@ -1213,7 +1213,7 @@ module Google
1213
1213
  execute_or_queue_command(command, &block)
1214
1214
  end
1215
1215
 
1216
- # Updates an existing advertiser. This method supports patch semantics.
1216
+ # Updates an existing landing page. This method supports patch semantics.
1217
1217
  # @param [Fixnum] profile_id
1218
1218
  # User profile ID associated with this request.
1219
1219
  # @param [Fixnum] id
@@ -1982,7 +1982,7 @@ module Google
1982
1982
  execute_or_queue_command(command, &block)
1983
1983
  end
1984
1984
 
1985
- # Updates an existing creative. This method supports patch semantics.
1985
+ # Updates an existing campaign. This method supports patch semantics.
1986
1986
  # @param [Fixnum] profile_id
1987
1987
  # User profile ID associated with this request.
1988
1988
  # @param [Fixnum] id
@@ -4372,7 +4372,7 @@ module Google
4372
4372
  execute_or_queue_command(command, &block)
4373
4373
  end
4374
4374
 
4375
- # Updates an existing event tag. This method supports patch semantics.
4375
+ # Updates an existing floodlight activity. This method supports patch semantics.
4376
4376
  # @param [Fixnum] profile_id
4377
4377
  # User profile ID associated with this request.
4378
4378
  # @param [Fixnum] id
@@ -4578,7 +4578,8 @@ module Google
4578
4578
  execute_or_queue_command(command, &block)
4579
4579
  end
4580
4580
 
4581
- # Updates an existing event tag. This method supports patch semantics.
4581
+ # Updates an existing floodlight activity group. This method supports patch
4582
+ # semantics.
4582
4583
  # @param [Fixnum] profile_id
4583
4584
  # User profile ID associated with this request.
4584
4585
  # @param [Fixnum] id
@@ -4714,7 +4715,8 @@ module Google
4714
4715
  execute_or_queue_command(command, &block)
4715
4716
  end
4716
4717
 
4717
- # Updates an existing event tag. This method supports patch semantics.
4718
+ # Updates an existing floodlight configuration. This method supports patch
4719
+ # semantics.
4718
4720
  # @param [Fixnum] profile_id
4719
4721
  # User profile ID associated with this request.
4720
4722
  # @param [Fixnum] id
@@ -6329,7 +6331,8 @@ module Google
6329
6331
  execute_or_queue_command(command, &block)
6330
6332
  end
6331
6333
 
6332
- # Updates an existing RemarketingListShare. This method supports patch semantics.
6334
+ # Updates an existing remarketing list share. This method supports patch
6335
+ # semantics.
6333
6336
  # @param [Fixnum] profile_id
6334
6337
  # User profile ID associated with this request.
6335
6338
  # @param [Fixnum] id
@@ -6525,7 +6528,7 @@ module Google
6525
6528
  execute_or_queue_command(command, &block)
6526
6529
  end
6527
6530
 
6528
- # Updates an existing RemarketingList. This method supports patch semantics.
6531
+ # Updates an existing remarketing list. This method supports patch semantics.
6529
6532
  # @param [Fixnum] profile_id
6530
6533
  # User profile ID associated with this request.
6531
6534
  # @param [Fixnum] id
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dfareporting_v4
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.15.0
4
+ version: 0.16.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: 2024-05-26 00:00:00.000000000 Z
11
+ date: 2024-06-16 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-dfareporting_v4/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v4/v0.15.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v4/v0.16.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dfareporting_v4
63
63
  post_install_message:
64
64
  rdoc_options: []