google-apis-dfareporting_v5 0.5.0 → 0.6.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: c7713ca35abfd898c65ccb7b85f8ee4e72cffd03fa53b883535a527e14c5c37b
4
- data.tar.gz: ad5bc8745ba769989b12099f00c0adaea86f1f7b56cad7dcdef2e7f1e9a7be2e
3
+ metadata.gz: 5e01ff47ddd163d650d305d5a9c240fa1dab3750e55f8084f34c7e33b342784a
4
+ data.tar.gz: 2d2afbf0dabc5faac148c8420a6b3e5fde73ff5eb5b50850b0f7198d5b5d1000
5
5
  SHA512:
6
- metadata.gz: ad860d36d1d41e10a2113849865ad38024750eff242040755ae1be47784e5e995709ed5c7bd40ee5432fbb232f81ed31e7ade203a4ea8d8c3e653f2e45b50f4c
7
- data.tar.gz: c57ab5e00e9913046525460a56df0595d33f2499d0945985991b458b5cbff9fea7cd47456eb0cc7c088e949cb1c0e06e09d75daa701dde332b65966d05c4c148
6
+ metadata.gz: a69dbca90ac33ba88b118ba7cb05d17a2e957cba725c0162fc2d86297cdf3e8a73bc1ac78b40de265dbd8c9a8dd07fc88cf8456447af86d604b68b63317f3316
7
+ data.tar.gz: bd723a880fdc18582c43440409e84b6c72ef53c12afbf50ced84549bae10ea2b61295ca8ec39ab00cec8e5e8f09bcfdc5bea29a6be47d5b3400e53aea2ede365
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dfareporting_v5
2
2
 
3
+ ### v0.6.0 (2026-03-15)
4
+
5
+ * Regenerated from discovery document revision 20260310
6
+
3
7
  ### v0.5.0 (2026-02-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20260213
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DfareportingV5
18
18
  # Version of the google-apis-dfareporting_v5 gem
19
- GEM_VERSION = "0.5.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260213"
25
+ REVISION = "20260310"
26
26
  end
27
27
  end
28
28
  end
@@ -5858,6 +5858,18 @@ module Google
5858
5858
  # @param [Array<String>, String] tag_formats
5859
5859
  # Tag formats to generate for these placements. *Note:* PLACEMENT_TAG_STANDARD
5860
5860
  # can only be generated for 1x1 placements.
5861
+ # @param [Boolean] tag_properties_dc_dbm_macro_included
5862
+ # Optional. Indicates whether to include the dc_dbm macro in the generated tags.
5863
+ # [Learn more](https://support.google.com/campaignmanager/answer/9280273) about
5864
+ # this macro.
5865
+ # @param [Boolean] tag_properties_gpp_macros_included
5866
+ # Optional. Indicates whether to include the GPP macro in the generated tags. [
5867
+ # Learn more](https://support.google.com/campaignmanager/answer/10031693) about
5868
+ # this macro.
5869
+ # @param [Boolean] tag_properties_tcf_gdpr_macros_included
5870
+ # Optional. Indicates whether to include the TCF macro in the generated tags.
5871
+ # Default true. [Learn more](https://support.google.com/campaignmanager/answer/
5872
+ # 10031693) about this macro.
5861
5873
  # @param [String] fields
5862
5874
  # Selector specifying which fields to include in a partial response.
5863
5875
  # @param [String] quota_user
@@ -5875,7 +5887,7 @@ module Google
5875
5887
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5876
5888
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5877
5889
  # @raise [Google::Apis::AuthorizationError] Authorization is required
5878
- def generatetags_placement(profile_id, campaign_id: nil, placement_ids: nil, tag_formats: nil, fields: nil, quota_user: nil, options: nil, &block)
5890
+ def generatetags_placement(profile_id, campaign_id: nil, placement_ids: nil, tag_formats: nil, tag_properties_dc_dbm_macro_included: nil, tag_properties_gpp_macros_included: nil, tag_properties_tcf_gdpr_macros_included: nil, fields: nil, quota_user: nil, options: nil, &block)
5879
5891
  command = make_simple_command(:post, 'userprofiles/{+profileId}/placements/generatetags', options)
5880
5892
  command.response_representation = Google::Apis::DfareportingV5::PlacementsGenerateTagsResponse::Representation
5881
5893
  command.response_class = Google::Apis::DfareportingV5::PlacementsGenerateTagsResponse
@@ -5883,6 +5895,9 @@ module Google
5883
5895
  command.query['campaignId'] = campaign_id unless campaign_id.nil?
5884
5896
  command.query['placementIds'] = placement_ids unless placement_ids.nil?
5885
5897
  command.query['tagFormats'] = tag_formats unless tag_formats.nil?
5898
+ command.query['tagProperties.dcDbmMacroIncluded'] = tag_properties_dc_dbm_macro_included unless tag_properties_dc_dbm_macro_included.nil?
5899
+ command.query['tagProperties.gppMacrosIncluded'] = tag_properties_gpp_macros_included unless tag_properties_gpp_macros_included.nil?
5900
+ command.query['tagProperties.tcfGdprMacrosIncluded'] = tag_properties_tcf_gdpr_macros_included unless tag_properties_tcf_gdpr_macros_included.nil?
5886
5901
  command.query['fields'] = fields unless fields.nil?
5887
5902
  command.query['quotaUser'] = quota_user unless quota_user.nil?
5888
5903
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dfareporting_v5
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dfareporting_v5/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v5/v0.5.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dfareporting_v5/v0.6.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dfareporting_v5
62
62
  rdoc_options: []
63
63
  require_paths: