google-apis-dfareporting_v4 0.12.0 → 0.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f099257ac28284d037b418e4b875d8f54dc4de793714efdeb93973b1db526eb4
|
4
|
+
data.tar.gz: f518770d95e687d5b9e8a988a94b43a8ad2853521d8bfe13d7f45601f862f01e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c23d2bfb2d5d2fea4b8a0909167265d1aacb112f88e78b7febf12f69c53df13c6d9dfcde2d8763548bbb5575e43d93026d645e5c3e48ee30da2a4c6297567cd
|
7
|
+
data.tar.gz: 21dc1e2e23567dd0b9e8300c4bd4b823754bdbfaa5d2d0c535db2bf7eb1dd6e96d7ed83b366ba9c836ec32b8499c7a551f5de99edfed206ab1a7273e3123972b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-dfareporting_v4
|
2
2
|
|
3
|
+
### v0.13.0 (2024-02-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240201
|
6
|
+
* Regenerated using generator version 0.13.1
|
7
|
+
|
3
8
|
### v0.12.0 (2024-01-23)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.13.0
|
@@ -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.
|
12205
|
-
#
|
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.
|
19
|
+
GEM_VERSION = "0.13.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.13.
|
22
|
+
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
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.
|
4
|
+
version: 0.13.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-
|
11
|
+
date: 2024-02-11 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v4/v0.13.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: []
|