google-apis-tagmanager_v2 0.33.0 → 0.34.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: f1806ff07fbf211b3c62638919ff0a6cdaaad2dfb354ac3684a1a8476d5a7de3
|
4
|
+
data.tar.gz: 8aed80c5d4706ce41999c6a9a5d2430e4961e9ea13982fff8a89cdad786de9cb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e785ecefb66d6696d2ea3554cb8285e234f5cf53e2e27c0ec4b620fa846b0a6360aa3f4462ce4134373c59c24dd886977c5d02222131b9af3d61838f8e7a9ea
|
7
|
+
data.tar.gz: 16a7277577f31e38a73fbb764835c01a18596b66ca508c4caf6fcfab7d0c376cff33c30b35acb3c1956ad684ac0736f43ae8ef4248d80826f25322f319b6763d
|
data/CHANGELOG.md
CHANGED
@@ -717,16 +717,6 @@ module Google
|
|
717
717
|
# @return [String]
|
718
718
|
attr_accessor :num_gtag_configs
|
719
719
|
|
720
|
-
# Number of macros in the container version.
|
721
|
-
# Corresponds to the JSON property `numMacros`
|
722
|
-
# @return [String]
|
723
|
-
attr_accessor :num_macros
|
724
|
-
|
725
|
-
# Number of rules in the container version.
|
726
|
-
# Corresponds to the JSON property `numRules`
|
727
|
-
# @return [String]
|
728
|
-
attr_accessor :num_rules
|
729
|
-
|
730
720
|
# Number of tags in the container version.
|
731
721
|
# Corresponds to the JSON property `numTags`
|
732
722
|
# @return [String]
|
@@ -771,8 +761,6 @@ module Google
|
|
771
761
|
@num_clients = args[:num_clients] if args.key?(:num_clients)
|
772
762
|
@num_custom_templates = args[:num_custom_templates] if args.key?(:num_custom_templates)
|
773
763
|
@num_gtag_configs = args[:num_gtag_configs] if args.key?(:num_gtag_configs)
|
774
|
-
@num_macros = args[:num_macros] if args.key?(:num_macros)
|
775
|
-
@num_rules = args[:num_rules] if args.key?(:num_rules)
|
776
764
|
@num_tags = args[:num_tags] if args.key?(:num_tags)
|
777
765
|
@num_transformations = args[:num_transformations] if args.key?(:num_transformations)
|
778
766
|
@num_triggers = args[:num_triggers] if args.key?(:num_triggers)
|
@@ -2319,12 +2307,6 @@ module Google
|
|
2319
2307
|
# @return [String]
|
2320
2308
|
attr_accessor :account_id
|
2321
2309
|
|
2322
|
-
# Blocking rule IDs. If any of the listed rules evaluate to true, the tag will
|
2323
|
-
# not fire.
|
2324
|
-
# Corresponds to the JSON property `blockingRuleId`
|
2325
|
-
# @return [Array<String>]
|
2326
|
-
attr_accessor :blocking_rule_id
|
2327
|
-
|
2328
2310
|
# Blocking trigger IDs. If any of the listed triggers evaluate to true, the tag
|
2329
2311
|
# will not fire.
|
2330
2312
|
# Corresponds to the JSON property `blockingTriggerId`
|
@@ -2347,12 +2329,6 @@ module Google
|
|
2347
2329
|
# @return [String]
|
2348
2330
|
attr_accessor :fingerprint
|
2349
2331
|
|
2350
|
-
# Firing rule IDs. A tag will fire when any of the listed rules are true and all
|
2351
|
-
# of its blockingRuleIds (if any specified) are false.
|
2352
|
-
# Corresponds to the JSON property `firingRuleId`
|
2353
|
-
# @return [Array<String>]
|
2354
|
-
attr_accessor :firing_rule_id
|
2355
|
-
|
2356
2332
|
# Firing trigger IDs. A tag will fire when any of the listed triggers are true
|
2357
2333
|
# and all of its blockingTriggerIds (if any specified) are false.
|
2358
2334
|
# Corresponds to the JSON property `firingTriggerId`
|
@@ -2465,12 +2441,10 @@ module Google
|
|
2465
2441
|
# Update properties of this object
|
2466
2442
|
def update!(**args)
|
2467
2443
|
@account_id = args[:account_id] if args.key?(:account_id)
|
2468
|
-
@blocking_rule_id = args[:blocking_rule_id] if args.key?(:blocking_rule_id)
|
2469
2444
|
@blocking_trigger_id = args[:blocking_trigger_id] if args.key?(:blocking_trigger_id)
|
2470
2445
|
@consent_settings = args[:consent_settings] if args.key?(:consent_settings)
|
2471
2446
|
@container_id = args[:container_id] if args.key?(:container_id)
|
2472
2447
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
2473
|
-
@firing_rule_id = args[:firing_rule_id] if args.key?(:firing_rule_id)
|
2474
2448
|
@firing_trigger_id = args[:firing_trigger_id] if args.key?(:firing_trigger_id)
|
2475
2449
|
@live_only = args[:live_only] if args.key?(:live_only)
|
2476
2450
|
@monitoring_metadata = args[:monitoring_metadata] if args.key?(:monitoring_metadata)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TagmanagerV2
|
18
18
|
# Version of the google-apis-tagmanager_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.34.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250409"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -608,8 +608,6 @@ module Google
|
|
608
608
|
property :num_clients, as: 'numClients'
|
609
609
|
property :num_custom_templates, as: 'numCustomTemplates'
|
610
610
|
property :num_gtag_configs, as: 'numGtagConfigs'
|
611
|
-
property :num_macros, as: 'numMacros'
|
612
|
-
property :num_rules, as: 'numRules'
|
613
611
|
property :num_tags, as: 'numTags'
|
614
612
|
property :num_transformations, as: 'numTransformations'
|
615
613
|
property :num_triggers, as: 'numTriggers'
|
@@ -1100,13 +1098,11 @@ module Google
|
|
1100
1098
|
# @private
|
1101
1099
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1102
1100
|
property :account_id, as: 'accountId'
|
1103
|
-
collection :blocking_rule_id, as: 'blockingRuleId'
|
1104
1101
|
collection :blocking_trigger_id, as: 'blockingTriggerId'
|
1105
1102
|
property :consent_settings, as: 'consentSettings', class: Google::Apis::TagmanagerV2::TagConsentSetting, decorator: Google::Apis::TagmanagerV2::TagConsentSetting::Representation
|
1106
1103
|
|
1107
1104
|
property :container_id, as: 'containerId'
|
1108
1105
|
property :fingerprint, as: 'fingerprint'
|
1109
|
-
collection :firing_rule_id, as: 'firingRuleId'
|
1110
1106
|
collection :firing_trigger_id, as: 'firingTriggerId'
|
1111
1107
|
property :live_only, as: 'liveOnly'
|
1112
1108
|
property :monitoring_metadata, as: 'monitoringMetadata', class: Google::Apis::TagmanagerV2::Parameter, decorator: Google::Apis::TagmanagerV2::Parameter::Representation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-tagmanager_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.34.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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-tagmanager_v2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-tagmanager_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-tagmanager_v2/v0.34.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tagmanager_v2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|