google-apis-dfareporting_v4 0.12.0 → 0.14.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: 7336e83df79c3ae00442ffb325009afe6c84720be6b6b05c53849929b79a8517
4
- data.tar.gz: 23e4e190fc3d349c4d5f1a9b8aa369e71b9771fc8a5f3097339f92df642ac06a
3
+ metadata.gz: a2004ad665237cf65a9bd3b725b91806adde4b80415c2b9c81ebb01ea90af4dd
4
+ data.tar.gz: 4fa53b066e43f8a64f77046d52d12432ad8a7a1ca16fa9e568d411651052d373
5
5
  SHA512:
6
- metadata.gz: 31be9cfb0242d7f7e4e09d9b7b087c40f3f453e9556cd7b492d5b9bb7735402a99cb33037ab92b34f60a47a894d43c34923441c74b734c22ff227b62ef798b6e
7
- data.tar.gz: bbee26f88a48ad6eef27b9cd329a1925077255ef4d6486f3dcfce71ca130340da7d8a3184f3e09aa6200175a701efb0a1c288e66ee63b167abf6328f75560f75
6
+ metadata.gz: 23b649f87b73609998dda8f1b9065fd4ab0a0654c35d87e9df58eacd51beaad43cadbb9f2d5b37c815c2deb9ff89a352b49a9be691dbee338b17c0d31304d87f
7
+ data.tar.gz: d28de77258f5b9161e4469783b23e21713f698d2686fbf77795aa5a25b17df06260df13fc63d79923ff6cfd36a31095c93ebdc8147ca322b4b8953943760ce95
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-dfareporting_v4
2
2
 
3
+ ### v0.14.0 (2024-02-24)
4
+
5
+ * Regenerated using generator version 0.14.0
6
+
7
+ ### v0.13.0 (2024-02-11)
8
+
9
+ * Regenerated from discovery document revision 20240201
10
+ * Regenerated using generator version 0.13.1
11
+
3
12
  ### v0.12.0 (2024-01-23)
4
13
 
5
14
  * Regenerated using generator version 0.13.0
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://developers.google.com/doubleclick-advertiser
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
88
- Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
88
+ Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
90
90
  ## License
91
91
 
@@ -2758,6 +2758,11 @@ module Google
2758
2758
  class Conversion
2759
2759
  include Google::Apis::Core::Hashable
2760
2760
 
2761
+ # This represents consent for ad user data.
2762
+ # Corresponds to the JSON property `adUserDataConsent`
2763
+ # @return [String]
2764
+ attr_accessor :ad_user_data_consent
2765
+
2761
2766
  # Whether this particular request may come from a user under the age of 13,
2762
2767
  # under COPPA compliance.
2763
2768
  # Corresponds to the JSON property `childDirectedTreatment`
@@ -2904,6 +2909,7 @@ module Google
2904
2909
 
2905
2910
  # Update properties of this object
2906
2911
  def update!(**args)
2912
+ @ad_user_data_consent = args[:ad_user_data_consent] if args.key?(:ad_user_data_consent)
2907
2913
  @child_directed_treatment = args[:child_directed_treatment] if args.key?(:child_directed_treatment)
2908
2914
  @custom_variables = args[:custom_variables] if args.key?(:custom_variables)
2909
2915
  @dclid = args[:dclid] if args.key?(:dclid)
@@ -8962,6 +8968,11 @@ module Google
8962
8968
  # @return [Fixnum]
8963
8969
  attr_accessor :content_category_id
8964
8970
 
8971
+ # Optional. Conversion domain overrides for a placement.
8972
+ # Corresponds to the JSON property `conversionDomainOverride`
8973
+ # @return [Google::Apis::DfareportingV4::PlacementConversionDomainOverride]
8974
+ attr_accessor :conversion_domain_override
8975
+
8965
8976
  # Modification timestamp.
8966
8977
  # Corresponds to the JSON property `createInfo`
8967
8978
  # @return [Google::Apis::DfareportingV4::LastModifiedInfo]
@@ -9175,6 +9186,7 @@ module Google
9175
9186
  @comment = args[:comment] if args.key?(:comment)
9176
9187
  @compatibility = args[:compatibility] if args.key?(:compatibility)
9177
9188
  @content_category_id = args[:content_category_id] if args.key?(:content_category_id)
9189
+ @conversion_domain_override = args[:conversion_domain_override] if args.key?(:conversion_domain_override)
9178
9190
  @create_info = args[:create_info] if args.key?(:create_info)
9179
9191
  @directory_site_id = args[:directory_site_id] if args.key?(:directory_site_id)
9180
9192
  @directory_site_id_dimension_value = args[:directory_site_id_dimension_value] if args.key?(:directory_site_id_dimension_value)
@@ -9251,6 +9263,25 @@ module Google
9251
9263
  end
9252
9264
  end
9253
9265
 
9266
+ #
9267
+ class PlacementConversionDomainOverride
9268
+ include Google::Apis::Core::Hashable
9269
+
9270
+ #
9271
+ # Corresponds to the JSON property `conversionDomains`
9272
+ # @return [Array<Google::Apis::DfareportingV4::PlacementSingleConversionDomain>]
9273
+ attr_accessor :conversion_domains
9274
+
9275
+ def initialize(**args)
9276
+ update!(**args)
9277
+ end
9278
+
9279
+ # Update properties of this object
9280
+ def update!(**args)
9281
+ @conversion_domains = args[:conversion_domains] if args.key?(:conversion_domains)
9282
+ end
9283
+ end
9284
+
9254
9285
  # Contains properties of a package or roadblock.
9255
9286
  class PlacementGroup
9256
9287
  include Google::Apis::Core::Hashable
@@ -9471,6 +9502,31 @@ module Google
9471
9502
  end
9472
9503
  end
9473
9504
 
9505
+ #
9506
+ class PlacementSingleConversionDomain
9507
+ include Google::Apis::Core::Hashable
9508
+
9509
+ #
9510
+ # Corresponds to the JSON property `conversionDomainId`
9511
+ # @return [Fixnum]
9512
+ attr_accessor :conversion_domain_id
9513
+
9514
+ #
9515
+ # Corresponds to the JSON property `conversionDomainValue`
9516
+ # @return [String]
9517
+ attr_accessor :conversion_domain_value
9518
+
9519
+ def initialize(**args)
9520
+ update!(**args)
9521
+ end
9522
+
9523
+ # Update properties of this object
9524
+ def update!(**args)
9525
+ @conversion_domain_id = args[:conversion_domain_id] if args.key?(:conversion_domain_id)
9526
+ @conversion_domain_value = args[:conversion_domain_value] if args.key?(:conversion_domain_value)
9527
+ end
9528
+ end
9529
+
9474
9530
  # Placement Strategy List Response
9475
9531
  class PlacementStrategiesListResponse
9476
9532
  include Google::Apis::Core::Hashable
@@ -12201,8 +12257,8 @@ module Google
12201
12257
  # @return [String]
12202
12258
  attr_accessor :additional_key_values
12203
12259
 
12204
- # Whether static landing page URLs should be included in the tags. This setting
12205
- # applies only to placements.
12260
+ # Whether static landing page URLs should be included in the tags. New
12261
+ # placements will default to the value set on their site.
12206
12262
  # Corresponds to the JSON property `includeClickThroughUrls`
12207
12263
  # @return [Boolean]
12208
12264
  attr_accessor :include_click_through_urls
@@ -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.12.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.0"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230918"
25
+ REVISION = "20240201"
26
26
  end
27
27
  end
28
28
  end
@@ -1024,6 +1024,12 @@ module Google
1024
1024
  include Google::Apis::Core::JsonObjectSupport
1025
1025
  end
1026
1026
 
1027
+ class PlacementConversionDomainOverride
1028
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1029
+
1030
+ include Google::Apis::Core::JsonObjectSupport
1031
+ end
1032
+
1027
1033
  class PlacementGroup
1028
1034
  class Representation < Google::Apis::Core::JsonRepresentation; end
1029
1035
 
@@ -1036,6 +1042,12 @@ module Google
1036
1042
  include Google::Apis::Core::JsonObjectSupport
1037
1043
  end
1038
1044
 
1045
+ class PlacementSingleConversionDomain
1046
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1047
+
1048
+ include Google::Apis::Core::JsonObjectSupport
1049
+ end
1050
+
1039
1051
  class PlacementStrategiesListResponse
1040
1052
  class Representation < Google::Apis::Core::JsonRepresentation; end
1041
1053
 
@@ -2223,6 +2235,7 @@ module Google
2223
2235
  class Conversion
2224
2236
  # @private
2225
2237
  class Representation < Google::Apis::Core::JsonRepresentation
2238
+ property :ad_user_data_consent, as: 'adUserDataConsent'
2226
2239
  property :child_directed_treatment, as: 'childDirectedTreatment'
2227
2240
  collection :custom_variables, as: 'customVariables', class: Google::Apis::DfareportingV4::CustomFloodlightVariable, decorator: Google::Apis::DfareportingV4::CustomFloodlightVariable::Representation
2228
2241
 
@@ -3733,6 +3746,8 @@ module Google
3733
3746
  property :comment, as: 'comment'
3734
3747
  property :compatibility, as: 'compatibility'
3735
3748
  property :content_category_id, :numeric_string => true, as: 'contentCategoryId'
3749
+ property :conversion_domain_override, as: 'conversionDomainOverride', class: Google::Apis::DfareportingV4::PlacementConversionDomainOverride, decorator: Google::Apis::DfareportingV4::PlacementConversionDomainOverride::Representation
3750
+
3736
3751
  property :create_info, as: 'createInfo', class: Google::Apis::DfareportingV4::LastModifiedInfo, decorator: Google::Apis::DfareportingV4::LastModifiedInfo::Representation
3737
3752
 
3738
3753
  property :directory_site_id, :numeric_string => true, as: 'directorySiteId'
@@ -3792,6 +3807,14 @@ module Google
3792
3807
  end
3793
3808
  end
3794
3809
 
3810
+ class PlacementConversionDomainOverride
3811
+ # @private
3812
+ class Representation < Google::Apis::Core::JsonRepresentation
3813
+ collection :conversion_domains, as: 'conversionDomains', class: Google::Apis::DfareportingV4::PlacementSingleConversionDomain, decorator: Google::Apis::DfareportingV4::PlacementSingleConversionDomain::Representation
3814
+
3815
+ end
3816
+ end
3817
+
3795
3818
  class PlacementGroup
3796
3819
  # @private
3797
3820
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3843,6 +3866,14 @@ module Google
3843
3866
  end
3844
3867
  end
3845
3868
 
3869
+ class PlacementSingleConversionDomain
3870
+ # @private
3871
+ class Representation < Google::Apis::Core::JsonRepresentation
3872
+ property :conversion_domain_id, :numeric_string => true, as: 'conversionDomainId'
3873
+ property :conversion_domain_value, as: 'conversionDomainValue'
3874
+ end
3875
+ end
3876
+
3846
3877
  class PlacementStrategiesListResponse
3847
3878
  # @private
3848
3879
  class Representation < Google::Apis::Core::JsonRepresentation
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.12.0
4
+ version: 0.14.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-01-23 00:00:00.000000000 Z
11
+ date: 2024-02-25 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.12.0
19
+ version: 0.14.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.12.0
29
+ version: 0.14.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.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v4/v0.14.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: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Campaign Manager 360 API V4