google-apis-tagmanager_v1 0.18.0 → 0.19.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: be9a5f658dac54662af03428b8af34e93b17062cadade54a0253a65794d97d7a
|
4
|
+
data.tar.gz: 39e656959a9fa4165e2e2f0b0452609fe7c62e1594535ffd3f5970a83857f10f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 140d2b968b32d985ffd5a70d26292108b363c866572b68cf1bd1296c658f6020a5528ee4d63abc02a17128408f4276a3d6eceb3e1f6577117aa8f90ff65ac7e2
|
7
|
+
data.tar.gz: 4dc5b3857b68e4b03d5a43a9fc70c6e06d67c2c3113acf553c33605543ee686a66729cff627acdf7770fe2dfbe1fa7f2df7c902520fbb20ebd83c1fc0df9effb
|
data/CHANGELOG.md
CHANGED
@@ -265,11 +265,6 @@ module Google
|
|
265
265
|
# @return [Array<Google::Apis::TagmanagerV1::Folder>]
|
266
266
|
attr_accessor :folder
|
267
267
|
|
268
|
-
# The macros in the container that this version was taken from.
|
269
|
-
# Corresponds to the JSON property `macro`
|
270
|
-
# @return [Array<Google::Apis::TagmanagerV1::Macro>]
|
271
|
-
attr_accessor :macro
|
272
|
-
|
273
268
|
# Container version display name.
|
274
269
|
# Corresponds to the JSON property `name`
|
275
270
|
# @return [String]
|
@@ -280,11 +275,6 @@ module Google
|
|
280
275
|
# @return [String]
|
281
276
|
attr_accessor :notes
|
282
277
|
|
283
|
-
# The rules in the container that this version was taken from.
|
284
|
-
# Corresponds to the JSON property `rule`
|
285
|
-
# @return [Array<Google::Apis::TagmanagerV1::Rule>]
|
286
|
-
attr_accessor :rule
|
287
|
-
|
288
278
|
# The tags in the container that this version was taken from.
|
289
279
|
# Corresponds to the JSON property `tag`
|
290
280
|
# @return [Array<Google::Apis::TagmanagerV1::Tag>]
|
@@ -313,10 +303,8 @@ module Google
|
|
313
303
|
@deleted = args[:deleted] if args.key?(:deleted)
|
314
304
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
315
305
|
@folder = args[:folder] if args.key?(:folder)
|
316
|
-
@macro = args[:macro] if args.key?(:macro)
|
317
306
|
@name = args[:name] if args.key?(:name)
|
318
307
|
@notes = args[:notes] if args.key?(:notes)
|
319
|
-
@rule = args[:rule] if args.key?(:rule)
|
320
308
|
@tag = args[:tag] if args.key?(:tag)
|
321
309
|
@trigger = args[:trigger] if args.key?(:trigger)
|
322
310
|
@variable = args[:variable] if args.key?(:variable)
|
@@ -353,16 +341,6 @@ module Google
|
|
353
341
|
# @return [String]
|
354
342
|
attr_accessor :name
|
355
343
|
|
356
|
-
# Number of macros in the container version.
|
357
|
-
# Corresponds to the JSON property `numMacros`
|
358
|
-
# @return [String]
|
359
|
-
attr_accessor :num_macros
|
360
|
-
|
361
|
-
# Number of rules in the container version.
|
362
|
-
# Corresponds to the JSON property `numRules`
|
363
|
-
# @return [String]
|
364
|
-
attr_accessor :num_rules
|
365
|
-
|
366
344
|
# Number of tags in the container version.
|
367
345
|
# Corresponds to the JSON property `numTags`
|
368
346
|
# @return [String]
|
@@ -389,8 +367,6 @@ module Google
|
|
389
367
|
@container_version_id = args[:container_version_id] if args.key?(:container_version_id)
|
390
368
|
@deleted = args[:deleted] if args.key?(:deleted)
|
391
369
|
@name = args[:name] if args.key?(:name)
|
392
|
-
@num_macros = args[:num_macros] if args.key?(:num_macros)
|
393
|
-
@num_rules = args[:num_rules] if args.key?(:num_rules)
|
394
370
|
@num_tags = args[:num_tags] if args.key?(:num_tags)
|
395
371
|
@num_triggers = args[:num_triggers] if args.key?(:num_triggers)
|
396
372
|
@num_variables = args[:num_variables] if args.key?(:num_variables)
|
@@ -798,102 +774,6 @@ module Google
|
|
798
774
|
end
|
799
775
|
end
|
800
776
|
|
801
|
-
# Represents a Google Tag Manager Macro.
|
802
|
-
class Macro
|
803
|
-
include Google::Apis::Core::Hashable
|
804
|
-
|
805
|
-
# GTM Account ID.
|
806
|
-
# Corresponds to the JSON property `accountId`
|
807
|
-
# @return [String]
|
808
|
-
attr_accessor :account_id
|
809
|
-
|
810
|
-
# GTM Container ID.
|
811
|
-
# Corresponds to the JSON property `containerId`
|
812
|
-
# @return [String]
|
813
|
-
attr_accessor :container_id
|
814
|
-
|
815
|
-
# For mobile containers only: A list of rule IDs for disabling conditional
|
816
|
-
# macros; the macro is enabled if one of the enabling rules is true while all
|
817
|
-
# the disabling rules are false. Treated as an unordered set.
|
818
|
-
# Corresponds to the JSON property `disablingRuleId`
|
819
|
-
# @return [Array<String>]
|
820
|
-
attr_accessor :disabling_rule_id
|
821
|
-
|
822
|
-
# For mobile containers only: A list of rule IDs for enabling conditional macros;
|
823
|
-
# the macro is enabled if one of the enabling rules is true while all the
|
824
|
-
# disabling rules are false. Treated as an unordered set.
|
825
|
-
# Corresponds to the JSON property `enablingRuleId`
|
826
|
-
# @return [Array<String>]
|
827
|
-
attr_accessor :enabling_rule_id
|
828
|
-
|
829
|
-
# The fingerprint of the GTM Macro as computed at storage time. This value is
|
830
|
-
# recomputed whenever the macro is modified.
|
831
|
-
# Corresponds to the JSON property `fingerprint`
|
832
|
-
# @return [String]
|
833
|
-
attr_accessor :fingerprint
|
834
|
-
|
835
|
-
# The Macro ID uniquely identifies the GTM Macro.
|
836
|
-
# Corresponds to the JSON property `macroId`
|
837
|
-
# @return [String]
|
838
|
-
attr_accessor :macro_id
|
839
|
-
|
840
|
-
# Macro display name.
|
841
|
-
# Corresponds to the JSON property `name`
|
842
|
-
# @return [String]
|
843
|
-
attr_accessor :name
|
844
|
-
|
845
|
-
# User notes on how to apply this macro in the container.
|
846
|
-
# Corresponds to the JSON property `notes`
|
847
|
-
# @return [String]
|
848
|
-
attr_accessor :notes
|
849
|
-
|
850
|
-
# The macro's parameters.
|
851
|
-
# Corresponds to the JSON property `parameter`
|
852
|
-
# @return [Array<Google::Apis::TagmanagerV1::Parameter>]
|
853
|
-
attr_accessor :parameter
|
854
|
-
|
855
|
-
# Parent folder id.
|
856
|
-
# Corresponds to the JSON property `parentFolderId`
|
857
|
-
# @return [String]
|
858
|
-
attr_accessor :parent_folder_id
|
859
|
-
|
860
|
-
# The end timestamp in milliseconds to schedule a macro.
|
861
|
-
# Corresponds to the JSON property `scheduleEndMs`
|
862
|
-
# @return [Fixnum]
|
863
|
-
attr_accessor :schedule_end_ms
|
864
|
-
|
865
|
-
# The start timestamp in milliseconds to schedule a macro.
|
866
|
-
# Corresponds to the JSON property `scheduleStartMs`
|
867
|
-
# @return [Fixnum]
|
868
|
-
attr_accessor :schedule_start_ms
|
869
|
-
|
870
|
-
# GTM Macro Type.
|
871
|
-
# Corresponds to the JSON property `type`
|
872
|
-
# @return [String]
|
873
|
-
attr_accessor :type
|
874
|
-
|
875
|
-
def initialize(**args)
|
876
|
-
update!(**args)
|
877
|
-
end
|
878
|
-
|
879
|
-
# Update properties of this object
|
880
|
-
def update!(**args)
|
881
|
-
@account_id = args[:account_id] if args.key?(:account_id)
|
882
|
-
@container_id = args[:container_id] if args.key?(:container_id)
|
883
|
-
@disabling_rule_id = args[:disabling_rule_id] if args.key?(:disabling_rule_id)
|
884
|
-
@enabling_rule_id = args[:enabling_rule_id] if args.key?(:enabling_rule_id)
|
885
|
-
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
886
|
-
@macro_id = args[:macro_id] if args.key?(:macro_id)
|
887
|
-
@name = args[:name] if args.key?(:name)
|
888
|
-
@notes = args[:notes] if args.key?(:notes)
|
889
|
-
@parameter = args[:parameter] if args.key?(:parameter)
|
890
|
-
@parent_folder_id = args[:parent_folder_id] if args.key?(:parent_folder_id)
|
891
|
-
@schedule_end_ms = args[:schedule_end_ms] if args.key?(:schedule_end_ms)
|
892
|
-
@schedule_start_ms = args[:schedule_start_ms] if args.key?(:schedule_start_ms)
|
893
|
-
@type = args[:type] if args.key?(:type)
|
894
|
-
end
|
895
|
-
end
|
896
|
-
|
897
777
|
# Represents a Google Tag Manager Parameter.
|
898
778
|
class Parameter
|
899
779
|
include Google::Apis::Core::Hashable
|
@@ -972,62 +852,6 @@ module Google
|
|
972
852
|
end
|
973
853
|
end
|
974
854
|
|
975
|
-
# Represents a Google Tag Manager Rule.
|
976
|
-
class Rule
|
977
|
-
include Google::Apis::Core::Hashable
|
978
|
-
|
979
|
-
# GTM Account ID.
|
980
|
-
# Corresponds to the JSON property `accountId`
|
981
|
-
# @return [String]
|
982
|
-
attr_accessor :account_id
|
983
|
-
|
984
|
-
# The list of conditions that make up this rule (implicit AND between them).
|
985
|
-
# Corresponds to the JSON property `condition`
|
986
|
-
# @return [Array<Google::Apis::TagmanagerV1::Condition>]
|
987
|
-
attr_accessor :condition
|
988
|
-
|
989
|
-
# GTM Container ID.
|
990
|
-
# Corresponds to the JSON property `containerId`
|
991
|
-
# @return [String]
|
992
|
-
attr_accessor :container_id
|
993
|
-
|
994
|
-
# The fingerprint of the GTM Rule as computed at storage time. This value is
|
995
|
-
# recomputed whenever the rule is modified.
|
996
|
-
# Corresponds to the JSON property `fingerprint`
|
997
|
-
# @return [String]
|
998
|
-
attr_accessor :fingerprint
|
999
|
-
|
1000
|
-
# Rule display name.
|
1001
|
-
# Corresponds to the JSON property `name`
|
1002
|
-
# @return [String]
|
1003
|
-
attr_accessor :name
|
1004
|
-
|
1005
|
-
# User notes on how to apply this rule in the container.
|
1006
|
-
# Corresponds to the JSON property `notes`
|
1007
|
-
# @return [String]
|
1008
|
-
attr_accessor :notes
|
1009
|
-
|
1010
|
-
# The Rule ID uniquely identifies the GTM Rule.
|
1011
|
-
# Corresponds to the JSON property `ruleId`
|
1012
|
-
# @return [String]
|
1013
|
-
attr_accessor :rule_id
|
1014
|
-
|
1015
|
-
def initialize(**args)
|
1016
|
-
update!(**args)
|
1017
|
-
end
|
1018
|
-
|
1019
|
-
# Update properties of this object
|
1020
|
-
def update!(**args)
|
1021
|
-
@account_id = args[:account_id] if args.key?(:account_id)
|
1022
|
-
@condition = args[:condition] if args.key?(:condition)
|
1023
|
-
@container_id = args[:container_id] if args.key?(:container_id)
|
1024
|
-
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
1025
|
-
@name = args[:name] if args.key?(:name)
|
1026
|
-
@notes = args[:notes] if args.key?(:notes)
|
1027
|
-
@rule_id = args[:rule_id] if args.key?(:rule_id)
|
1028
|
-
end
|
1029
|
-
end
|
1030
|
-
|
1031
855
|
#
|
1032
856
|
class SetupTag
|
1033
857
|
include Google::Apis::Core::Hashable
|
@@ -1064,12 +888,6 @@ module Google
|
|
1064
888
|
# @return [String]
|
1065
889
|
attr_accessor :account_id
|
1066
890
|
|
1067
|
-
# Blocking rule IDs. If any of the listed rules evaluate to true, the tag will
|
1068
|
-
# not fire.
|
1069
|
-
# Corresponds to the JSON property `blockingRuleId`
|
1070
|
-
# @return [Array<String>]
|
1071
|
-
attr_accessor :blocking_rule_id
|
1072
|
-
|
1073
891
|
# Blocking trigger IDs. If any of the listed triggers evaluate to true, the tag
|
1074
892
|
# will not fire.
|
1075
893
|
# Corresponds to the JSON property `blockingTriggerId`
|
@@ -1087,12 +905,6 @@ module Google
|
|
1087
905
|
# @return [String]
|
1088
906
|
attr_accessor :fingerprint
|
1089
907
|
|
1090
|
-
# Firing rule IDs. A tag will fire when any of the listed rules are true and all
|
1091
|
-
# of its blockingRuleIds (if any specified) are false.
|
1092
|
-
# Corresponds to the JSON property `firingRuleId`
|
1093
|
-
# @return [Array<String>]
|
1094
|
-
attr_accessor :firing_rule_id
|
1095
|
-
|
1096
908
|
# Firing trigger IDs. A tag will fire when any of the listed triggers are true
|
1097
909
|
# and all of its blockingTriggerIds (if any specified) are false.
|
1098
910
|
# Corresponds to the JSON property `firingTriggerId`
|
@@ -1179,11 +991,9 @@ module Google
|
|
1179
991
|
# Update properties of this object
|
1180
992
|
def update!(**args)
|
1181
993
|
@account_id = args[:account_id] if args.key?(:account_id)
|
1182
|
-
@blocking_rule_id = args[:blocking_rule_id] if args.key?(:blocking_rule_id)
|
1183
994
|
@blocking_trigger_id = args[:blocking_trigger_id] if args.key?(:blocking_trigger_id)
|
1184
995
|
@container_id = args[:container_id] if args.key?(:container_id)
|
1185
996
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
1186
|
-
@firing_rule_id = args[:firing_rule_id] if args.key?(:firing_rule_id)
|
1187
997
|
@firing_trigger_id = args[:firing_trigger_id] if args.key?(:firing_trigger_id)
|
1188
998
|
@live_only = args[:live_only] if args.key?(:live_only)
|
1189
999
|
@name = args[:name] if args.key?(:name)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module TagmanagerV1
|
18
18
|
# Version of the google-apis-tagmanager_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.19.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
|
@@ -148,12 +148,6 @@ module Google
|
|
148
148
|
include Google::Apis::Core::JsonObjectSupport
|
149
149
|
end
|
150
150
|
|
151
|
-
class Macro
|
152
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
-
|
154
|
-
include Google::Apis::Core::JsonObjectSupport
|
155
|
-
end
|
156
|
-
|
157
151
|
class Parameter
|
158
152
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
153
|
|
@@ -166,12 +160,6 @@ module Google
|
|
166
160
|
include Google::Apis::Core::JsonObjectSupport
|
167
161
|
end
|
168
162
|
|
169
|
-
class Rule
|
170
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
171
|
-
|
172
|
-
include Google::Apis::Core::JsonObjectSupport
|
173
|
-
end
|
174
|
-
|
175
163
|
class SetupTag
|
176
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
177
165
|
|
@@ -271,12 +259,8 @@ module Google
|
|
271
259
|
property :fingerprint, as: 'fingerprint'
|
272
260
|
collection :folder, as: 'folder', class: Google::Apis::TagmanagerV1::Folder, decorator: Google::Apis::TagmanagerV1::Folder::Representation
|
273
261
|
|
274
|
-
collection :macro, as: 'macro', class: Google::Apis::TagmanagerV1::Macro, decorator: Google::Apis::TagmanagerV1::Macro::Representation
|
275
|
-
|
276
262
|
property :name, as: 'name'
|
277
263
|
property :notes, as: 'notes'
|
278
|
-
collection :rule, as: 'rule', class: Google::Apis::TagmanagerV1::Rule, decorator: Google::Apis::TagmanagerV1::Rule::Representation
|
279
|
-
|
280
264
|
collection :tag, as: 'tag', class: Google::Apis::TagmanagerV1::Tag, decorator: Google::Apis::TagmanagerV1::Tag::Representation
|
281
265
|
|
282
266
|
collection :trigger, as: 'trigger', class: Google::Apis::TagmanagerV1::Trigger, decorator: Google::Apis::TagmanagerV1::Trigger::Representation
|
@@ -294,8 +278,6 @@ module Google
|
|
294
278
|
property :container_version_id, as: 'containerVersionId'
|
295
279
|
property :deleted, as: 'deleted'
|
296
280
|
property :name, as: 'name'
|
297
|
-
property :num_macros, as: 'numMacros'
|
298
|
-
property :num_rules, as: 'numRules'
|
299
281
|
property :num_tags, as: 'numTags'
|
300
282
|
property :num_triggers, as: 'numTriggers'
|
301
283
|
property :num_variables, as: 'numVariables'
|
@@ -435,26 +417,6 @@ module Google
|
|
435
417
|
end
|
436
418
|
end
|
437
419
|
|
438
|
-
class Macro
|
439
|
-
# @private
|
440
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
441
|
-
property :account_id, as: 'accountId'
|
442
|
-
property :container_id, as: 'containerId'
|
443
|
-
collection :disabling_rule_id, as: 'disablingRuleId'
|
444
|
-
collection :enabling_rule_id, as: 'enablingRuleId'
|
445
|
-
property :fingerprint, as: 'fingerprint'
|
446
|
-
property :macro_id, as: 'macroId'
|
447
|
-
property :name, as: 'name'
|
448
|
-
property :notes, as: 'notes'
|
449
|
-
collection :parameter, as: 'parameter', class: Google::Apis::TagmanagerV1::Parameter, decorator: Google::Apis::TagmanagerV1::Parameter::Representation
|
450
|
-
|
451
|
-
property :parent_folder_id, as: 'parentFolderId'
|
452
|
-
property :schedule_end_ms, :numeric_string => true, as: 'scheduleEndMs'
|
453
|
-
property :schedule_start_ms, :numeric_string => true, as: 'scheduleStartMs'
|
454
|
-
property :type, as: 'type'
|
455
|
-
end
|
456
|
-
end
|
457
|
-
|
458
420
|
class Parameter
|
459
421
|
# @private
|
460
422
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -477,20 +439,6 @@ module Google
|
|
477
439
|
end
|
478
440
|
end
|
479
441
|
|
480
|
-
class Rule
|
481
|
-
# @private
|
482
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
483
|
-
property :account_id, as: 'accountId'
|
484
|
-
collection :condition, as: 'condition', class: Google::Apis::TagmanagerV1::Condition, decorator: Google::Apis::TagmanagerV1::Condition::Representation
|
485
|
-
|
486
|
-
property :container_id, as: 'containerId'
|
487
|
-
property :fingerprint, as: 'fingerprint'
|
488
|
-
property :name, as: 'name'
|
489
|
-
property :notes, as: 'notes'
|
490
|
-
property :rule_id, as: 'ruleId'
|
491
|
-
end
|
492
|
-
end
|
493
|
-
|
494
442
|
class SetupTag
|
495
443
|
# @private
|
496
444
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -503,11 +451,9 @@ module Google
|
|
503
451
|
# @private
|
504
452
|
class Representation < Google::Apis::Core::JsonRepresentation
|
505
453
|
property :account_id, as: 'accountId'
|
506
|
-
collection :blocking_rule_id, as: 'blockingRuleId'
|
507
454
|
collection :blocking_trigger_id, as: 'blockingTriggerId'
|
508
455
|
property :container_id, as: 'containerId'
|
509
456
|
property :fingerprint, as: 'fingerprint'
|
510
|
-
collection :firing_rule_id, as: 'firingRuleId'
|
511
457
|
collection :firing_trigger_id, as: 'firingTriggerId'
|
512
458
|
property :live_only, as: 'liveOnly'
|
513
459
|
property :name, as: 'name'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-tagmanager_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.19.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-tagmanager_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-tagmanager_v1/v0.19.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-tagmanager_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|