google-apis-dfareporting_v4 0.3.0 → 0.5.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: 340ed411d3a2768d237bd194816f25bd67b5dcd71b88dd1988b9e1b3d0f5e46d
4
- data.tar.gz: e7c70fe60fd26dc8294e0260c9e7eaff25ba2eb8c21e93907703de9dd0da620e
3
+ metadata.gz: 8c48f3d5cab8f105b73f73ac777f823086769fb07940415e4cba9fdfca4a2ae6
4
+ data.tar.gz: a199a22ecb165d484f46cfb97ba38320a158566b707a3011dd8d9280afc747cb
5
5
  SHA512:
6
- metadata.gz: 5f150bd3babecadfd026c0ade4adcdbd74428200e8c6a3ea5feabc9c96dcb90741080dee2aed5f92b388ca726ac090d6bd77e4be15400e02b1553328d7b4554c
7
- data.tar.gz: 51ca418d1f8370d31b34d5313c489413d60109a6c558d7da4f07ae50fde571b4e7a4cc5998448216c1d2af86b2abb3b1a171b7083872ac394c04c70113c2f843
6
+ metadata.gz: 4489a4a96556693b1b716c49f6aa83fae036afe48442a6d3207702db02aaeb91110959673129f3dd4a3c92ee3e3219f650b29a1161c58414961b8a42d4671f1d
7
+ data.tar.gz: a22e67be41169d9edc1918538e6462d44869d65c81fbc27f573a35513f0ab1512cb7e96ea6e6ddc1032f33e1e9951f94005555e2f294a5dec352e05b89ce0cea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Release history for google-apis-dfareporting_v4
2
2
 
3
+ ### v0.5.0 (2022-09-21)
4
+
5
+ * Regenerated from discovery document revision 20220920
6
+ * Regenerated using generator version 0.10.0
7
+
8
+ ### v0.4.0 (2022-08-17)
9
+
10
+ * Regenerated from discovery document revision 20220815
11
+ * Regenerated using generator version 0.9.0
12
+
3
13
  ### v0.3.0 (2022-06-30)
4
14
 
5
15
  * Regenerated using generator version 0.8.0
@@ -5379,7 +5379,7 @@ module Google
5379
5379
  # @return [String]
5380
5380
  attr_accessor :kind
5381
5381
 
5382
- # The dimension name, e.g. dfa:advertiser
5382
+ # The dimension name, e.g. advertiser
5383
5383
  # Corresponds to the JSON property `name`
5384
5384
  # @return [String]
5385
5385
  attr_accessor :name
@@ -5854,6 +5854,11 @@ module Google
5854
5854
  # @return [String]
5855
5855
  attr_accessor :kind
5856
5856
 
5857
+ # Defines the filtering on a single uvar.
5858
+ # Corresponds to the JSON property `uvarFilter`
5859
+ # @return [Google::Apis::DfareportingV4::UvarFilter]
5860
+ attr_accessor :uvar_filter
5861
+
5857
5862
  def initialize(**args)
5858
5863
  update!(**args)
5859
5864
  end
@@ -5862,6 +5867,7 @@ module Google
5862
5867
  def update!(**args)
5863
5868
  @dimension_filter = args[:dimension_filter] if args.key?(:dimension_filter)
5864
5869
  @kind = args[:kind] if args.key?(:kind)
5870
+ @uvar_filter = args[:uvar_filter] if args.key?(:uvar_filter)
5865
5871
  end
5866
5872
  end
5867
5873
 
@@ -13157,6 +13163,50 @@ module Google
13157
13163
  end
13158
13164
  end
13159
13165
 
13166
+ # Defines the filtering on a single uvar.
13167
+ class UvarFilter
13168
+ include Google::Apis::Core::Hashable
13169
+
13170
+ # Return rows which don't match this filter.
13171
+ # Corresponds to the JSON property `complement`
13172
+ # @return [Boolean]
13173
+ attr_accessor :complement
13174
+ alias_method :complement?, :complement
13175
+
13176
+ # Custom variable index the filter is applied to.
13177
+ # Corresponds to the JSON property `index`
13178
+ # @return [Fixnum]
13179
+ attr_accessor :index
13180
+
13181
+ # The kind of resource this is, in this case dfareporting#uvarFilter.
13182
+ # Corresponds to the JSON property `kind`
13183
+ # @return [String]
13184
+ attr_accessor :kind
13185
+
13186
+ # Indicates how the filter should be matched to the values.
13187
+ # Corresponds to the JSON property `match`
13188
+ # @return [String]
13189
+ attr_accessor :match
13190
+
13191
+ # Values to filter on.
13192
+ # Corresponds to the JSON property `values`
13193
+ # @return [Array<String>]
13194
+ attr_accessor :values
13195
+
13196
+ def initialize(**args)
13197
+ update!(**args)
13198
+ end
13199
+
13200
+ # Update properties of this object
13201
+ def update!(**args)
13202
+ @complement = args[:complement] if args.key?(:complement)
13203
+ @index = args[:index] if args.key?(:index)
13204
+ @kind = args[:kind] if args.key?(:kind)
13205
+ @match = args[:match] if args.key?(:match)
13206
+ @values = args[:values] if args.key?(:values)
13207
+ end
13208
+ end
13209
+
13160
13210
  # Contains information about supported video formats.
13161
13211
  class VideoFormat
13162
13212
  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.3.0"
19
+ GEM_VERSION = "0.5.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.8.0"
22
+ GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220611"
25
+ REVISION = "20220920"
26
26
  end
27
27
  end
28
28
  end
@@ -1492,6 +1492,12 @@ module Google
1492
1492
  include Google::Apis::Core::JsonObjectSupport
1493
1493
  end
1494
1494
 
1495
+ class UvarFilter
1496
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1497
+
1498
+ include Google::Apis::Core::JsonObjectSupport
1499
+ end
1500
+
1495
1501
  class VideoFormat
1496
1502
  class Representation < Google::Apis::Core::JsonRepresentation; end
1497
1503
 
@@ -2938,6 +2944,8 @@ module Google
2938
2944
  property :dimension_filter, as: 'dimensionFilter', class: Google::Apis::DfareportingV4::PathReportDimensionValue, decorator: Google::Apis::DfareportingV4::PathReportDimensionValue::Representation
2939
2945
 
2940
2946
  property :kind, as: 'kind'
2947
+ property :uvar_filter, as: 'uvarFilter', class: Google::Apis::DfareportingV4::UvarFilter, decorator: Google::Apis::DfareportingV4::UvarFilter::Representation
2948
+
2941
2949
  end
2942
2950
  end
2943
2951
 
@@ -4826,6 +4834,17 @@ module Google
4826
4834
  end
4827
4835
  end
4828
4836
 
4837
+ class UvarFilter
4838
+ # @private
4839
+ class Representation < Google::Apis::Core::JsonRepresentation
4840
+ property :complement, as: 'complement'
4841
+ property :index, :numeric_string => true, as: 'index'
4842
+ property :kind, as: 'kind'
4843
+ property :match, as: 'match'
4844
+ collection :values, as: 'values'
4845
+ end
4846
+ end
4847
+
4829
4848
  class VideoFormat
4830
4849
  # @private
4831
4850
  class Representation < Google::Apis::Core::JsonRepresentation