google-apis-dfareporting_v4 0.4.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: 3960dc973961f5d3d8b1b9e48dc07f3aa56fc809f27253fa53b180ff9152fa2e
4
- data.tar.gz: e6bd813dd8a50723ac45d68f64b6ebc498b20fd1cd23e08b65ba24b8d6811ad7
3
+ metadata.gz: 8c48f3d5cab8f105b73f73ac777f823086769fb07940415e4cba9fdfca4a2ae6
4
+ data.tar.gz: a199a22ecb165d484f46cfb97ba38320a158566b707a3011dd8d9280afc747cb
5
5
  SHA512:
6
- metadata.gz: 1769d599068992a90a0bf711b2f01adbe77e74e9465e131f220944d96486534ac9f509b2f1daf6e2528fa4372ecbe61994a8eebc07abdd34e2a96409351c2e18
7
- data.tar.gz: ef7bd962d6e51bd297218019aed817f9ccea1969d367bebf7084d398ed9520ac9f2c792403664a5f864a5b55c663bdf2aac952fe954d656131cb76c39dcc90b9
6
+ metadata.gz: 4489a4a96556693b1b716c49f6aa83fae036afe48442a6d3207702db02aaeb91110959673129f3dd4a3c92ee3e3219f650b29a1161c58414961b8a42d4671f1d
7
+ data.tar.gz: a22e67be41169d9edc1918538e6462d44869d65c81fbc27f573a35513f0ab1512cb7e96ea6e6ddc1032f33e1e9951f94005555e2f294a5dec352e05b89ce0cea
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.4.0 (2022-08-17)
4
9
 
5
10
  * Regenerated from discovery document revision 20220815
@@ -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.4.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.9.0"
22
+ GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220815"
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
@@ -6842,7 +6842,7 @@ module Google
6842
6842
 
6843
6843
  # Updates an existing report. This method supports patch semantics.
6844
6844
  # @param [Fixnum] profile_id
6845
- # The DFA user profile ID.
6845
+ # The Campaign Manager 360 user profile ID.
6846
6846
  # @param [Fixnum] report_id
6847
6847
  # The ID of the report.
6848
6848
  # @param [Google::Apis::DfareportingV4::Report] report_object
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.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-22 00:00:00.000000000 Z
11
+ date: 2022-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.7'
19
+ version: 0.9.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.7'
29
+ version: 0.9.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.4.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v4/v0.5.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: []