@googleapis/tagmanager 5.4.0 → 7.0.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.
- package/CHANGELOG.md +23 -0
- package/build/v1.d.ts +84 -84
- package/build/v2.d.ts +239 -195
- package/build/v2.js +33 -0
- package/build/v2.js.map +1 -1
- package/package.json +1 -1
- package/v1.ts +84 -84
- package/v2.ts +316 -195
package/v2.ts
CHANGED
|
@@ -141,7 +141,7 @@ export namespace tagmanager_v2 {
|
|
|
141
141
|
*/
|
|
142
142
|
fingerprint?: string | null;
|
|
143
143
|
/**
|
|
144
|
-
* Account display name.
|
|
144
|
+
* Account display name.
|
|
145
145
|
*/
|
|
146
146
|
name?: string | null;
|
|
147
147
|
/**
|
|
@@ -149,7 +149,7 @@ export namespace tagmanager_v2 {
|
|
|
149
149
|
*/
|
|
150
150
|
path?: string | null;
|
|
151
151
|
/**
|
|
152
|
-
* Whether the account shares data anonymously with Google and others. This flag enables benchmarking by sharing your data in an anonymous form. Google will remove all identifiable information about your website, combine the data with hundreds of other anonymous sites and report aggregate trends in the benchmarking service.
|
|
152
|
+
* Whether the account shares data anonymously with Google and others. This flag enables benchmarking by sharing your data in an anonymous form. Google will remove all identifiable information about your website, combine the data with hundreds of other anonymous sites and report aggregate trends in the benchmarking service.
|
|
153
153
|
*/
|
|
154
154
|
shareData?: boolean | null;
|
|
155
155
|
/**
|
|
@@ -162,7 +162,7 @@ export namespace tagmanager_v2 {
|
|
|
162
162
|
*/
|
|
163
163
|
export interface Schema$AccountAccess {
|
|
164
164
|
/**
|
|
165
|
-
* Whether the user has no access, user access, or admin access to an account.
|
|
165
|
+
* Whether the user has no access, user access, or admin access to an account.
|
|
166
166
|
*/
|
|
167
167
|
permission?: string | null;
|
|
168
168
|
}
|
|
@@ -197,7 +197,7 @@ export namespace tagmanager_v2 {
|
|
|
197
197
|
*/
|
|
198
198
|
path?: string | null;
|
|
199
199
|
/**
|
|
200
|
-
* Type of built-in variable.
|
|
200
|
+
* Type of built-in variable.
|
|
201
201
|
*/
|
|
202
202
|
type?: string | null;
|
|
203
203
|
/**
|
|
@@ -223,15 +223,15 @@ export namespace tagmanager_v2 {
|
|
|
223
223
|
*/
|
|
224
224
|
fingerprint?: string | null;
|
|
225
225
|
/**
|
|
226
|
-
* Client display name.
|
|
226
|
+
* Client display name.
|
|
227
227
|
*/
|
|
228
228
|
name?: string | null;
|
|
229
229
|
/**
|
|
230
|
-
* User notes on how to apply this tag in the container.
|
|
230
|
+
* User notes on how to apply this tag in the container.
|
|
231
231
|
*/
|
|
232
232
|
notes?: string | null;
|
|
233
233
|
/**
|
|
234
|
-
* The client's parameters.
|
|
234
|
+
* The client's parameters.
|
|
235
235
|
*/
|
|
236
236
|
parameter?: Schema$Parameter[];
|
|
237
237
|
/**
|
|
@@ -243,7 +243,7 @@ export namespace tagmanager_v2 {
|
|
|
243
243
|
*/
|
|
244
244
|
path?: string | null;
|
|
245
245
|
/**
|
|
246
|
-
* Priority determines relative firing order.
|
|
246
|
+
* Priority determines relative firing order.
|
|
247
247
|
*/
|
|
248
248
|
priority?: number | null;
|
|
249
249
|
/**
|
|
@@ -251,7 +251,7 @@ export namespace tagmanager_v2 {
|
|
|
251
251
|
*/
|
|
252
252
|
tagManagerUrl?: string | null;
|
|
253
253
|
/**
|
|
254
|
-
* Client type.
|
|
254
|
+
* Client type.
|
|
255
255
|
*/
|
|
256
256
|
type?: string | null;
|
|
257
257
|
/**
|
|
@@ -264,11 +264,11 @@ export namespace tagmanager_v2 {
|
|
|
264
264
|
*/
|
|
265
265
|
export interface Schema$Condition {
|
|
266
266
|
/**
|
|
267
|
-
* A list of named parameters (key/value), depending on the condition's type. Notes: - For binary operators, include parameters named arg0 and arg1 for specifying the left and right operands, respectively. - At this time, the left operand (arg0) must be a reference to a variable. - For case-insensitive Regex matching, include a boolean parameter named ignore_case that is set to true. If not specified or set to any other value, the matching will be case sensitive. - To negate an operator, include a boolean parameter named negate boolean parameter that is set to true.
|
|
267
|
+
* A list of named parameters (key/value), depending on the condition's type. Notes: - For binary operators, include parameters named arg0 and arg1 for specifying the left and right operands, respectively. - At this time, the left operand (arg0) must be a reference to a variable. - For case-insensitive Regex matching, include a boolean parameter named ignore_case that is set to true. If not specified or set to any other value, the matching will be case sensitive. - To negate an operator, include a boolean parameter named negate boolean parameter that is set to true.
|
|
268
268
|
*/
|
|
269
269
|
parameter?: Schema$Parameter[];
|
|
270
270
|
/**
|
|
271
|
-
* The type of operator for this condition.
|
|
271
|
+
* The type of operator for this condition.
|
|
272
272
|
*/
|
|
273
273
|
type?: string | null;
|
|
274
274
|
}
|
|
@@ -285,7 +285,7 @@ export namespace tagmanager_v2 {
|
|
|
285
285
|
*/
|
|
286
286
|
containerId?: string | null;
|
|
287
287
|
/**
|
|
288
|
-
* List of domain names associated with the Container.
|
|
288
|
+
* List of domain names associated with the Container.
|
|
289
289
|
*/
|
|
290
290
|
domainName?: string[] | null;
|
|
291
291
|
/**
|
|
@@ -297,11 +297,11 @@ export namespace tagmanager_v2 {
|
|
|
297
297
|
*/
|
|
298
298
|
fingerprint?: string | null;
|
|
299
299
|
/**
|
|
300
|
-
* Container display name.
|
|
300
|
+
* Container display name.
|
|
301
301
|
*/
|
|
302
302
|
name?: string | null;
|
|
303
303
|
/**
|
|
304
|
-
* Container Notes.
|
|
304
|
+
* Container Notes.
|
|
305
305
|
*/
|
|
306
306
|
notes?: string | null;
|
|
307
307
|
/**
|
|
@@ -313,7 +313,7 @@ export namespace tagmanager_v2 {
|
|
|
313
313
|
*/
|
|
314
314
|
publicId?: string | null;
|
|
315
315
|
/**
|
|
316
|
-
* List of server-side container URLs for the Container. If multiple URLs are provided, all URL paths must match.
|
|
316
|
+
* List of server-side container URLs for the Container. If multiple URLs are provided, all URL paths must match.
|
|
317
317
|
*/
|
|
318
318
|
taggingServerUrls?: string[] | null;
|
|
319
319
|
/**
|
|
@@ -325,7 +325,7 @@ export namespace tagmanager_v2 {
|
|
|
325
325
|
*/
|
|
326
326
|
tagManagerUrl?: string | null;
|
|
327
327
|
/**
|
|
328
|
-
* List of Usage Contexts for the Container. Valid values include: web, android, or ios.
|
|
328
|
+
* List of Usage Contexts for the Container. Valid values include: web, android, or ios.
|
|
329
329
|
*/
|
|
330
330
|
usageContext?: string[] | null;
|
|
331
331
|
}
|
|
@@ -334,11 +334,11 @@ export namespace tagmanager_v2 {
|
|
|
334
334
|
*/
|
|
335
335
|
export interface Schema$ContainerAccess {
|
|
336
336
|
/**
|
|
337
|
-
* GTM Container ID.
|
|
337
|
+
* GTM Container ID.
|
|
338
338
|
*/
|
|
339
339
|
containerId?: string | null;
|
|
340
340
|
/**
|
|
341
|
-
* List of Container permissions.
|
|
341
|
+
* List of Container permissions.
|
|
342
342
|
*/
|
|
343
343
|
permission?: string | null;
|
|
344
344
|
}
|
|
@@ -437,7 +437,7 @@ export namespace tagmanager_v2 {
|
|
|
437
437
|
*/
|
|
438
438
|
deleted?: boolean | null;
|
|
439
439
|
/**
|
|
440
|
-
* Container version description.
|
|
440
|
+
* Container version description.
|
|
441
441
|
*/
|
|
442
442
|
description?: string | null;
|
|
443
443
|
/**
|
|
@@ -453,7 +453,7 @@ export namespace tagmanager_v2 {
|
|
|
453
453
|
*/
|
|
454
454
|
gtagConfig?: Schema$GtagConfig[];
|
|
455
455
|
/**
|
|
456
|
-
* Container version display name.
|
|
456
|
+
* Container version display name.
|
|
457
457
|
*/
|
|
458
458
|
name?: string | null;
|
|
459
459
|
/**
|
|
@@ -750,11 +750,11 @@ export namespace tagmanager_v2 {
|
|
|
750
750
|
*/
|
|
751
751
|
containerVersionId?: string | null;
|
|
752
752
|
/**
|
|
753
|
-
* The environment description. Can be set or changed only on USER type environments.
|
|
753
|
+
* The environment description. Can be set or changed only on USER type environments.
|
|
754
754
|
*/
|
|
755
755
|
description?: string | null;
|
|
756
756
|
/**
|
|
757
|
-
* Whether or not to enable debug by default for the environment.
|
|
757
|
+
* Whether or not to enable debug by default for the environment.
|
|
758
758
|
*/
|
|
759
759
|
enableDebug?: boolean | null;
|
|
760
760
|
/**
|
|
@@ -766,7 +766,7 @@ export namespace tagmanager_v2 {
|
|
|
766
766
|
*/
|
|
767
767
|
fingerprint?: string | null;
|
|
768
768
|
/**
|
|
769
|
-
* The environment display name. Can be set or changed only on USER type environments.
|
|
769
|
+
* The environment display name. Can be set or changed only on USER type environments.
|
|
770
770
|
*/
|
|
771
771
|
name?: string | null;
|
|
772
772
|
/**
|
|
@@ -782,7 +782,7 @@ export namespace tagmanager_v2 {
|
|
|
782
782
|
*/
|
|
783
783
|
type?: string | null;
|
|
784
784
|
/**
|
|
785
|
-
* Default preview page url for the environment.
|
|
785
|
+
* Default preview page url for the environment.
|
|
786
786
|
*/
|
|
787
787
|
url?: string | null;
|
|
788
788
|
/**
|
|
@@ -811,11 +811,11 @@ export namespace tagmanager_v2 {
|
|
|
811
811
|
*/
|
|
812
812
|
folderId?: string | null;
|
|
813
813
|
/**
|
|
814
|
-
* Folder display name.
|
|
814
|
+
* Folder display name.
|
|
815
815
|
*/
|
|
816
816
|
name?: string | null;
|
|
817
817
|
/**
|
|
818
|
-
* User notes on how to apply this folder in the container.
|
|
818
|
+
* User notes on how to apply this folder in the container.
|
|
819
819
|
*/
|
|
820
820
|
notes?: string | null;
|
|
821
821
|
/**
|
|
@@ -856,6 +856,10 @@ export namespace tagmanager_v2 {
|
|
|
856
856
|
* Represents the link between a custom template and an entry on the Community Template Gallery site.
|
|
857
857
|
*/
|
|
858
858
|
export interface Schema$GalleryReference {
|
|
859
|
+
/**
|
|
860
|
+
* ID for the gallery template that is generated once during first sync and travels with the template redirects.
|
|
861
|
+
*/
|
|
862
|
+
galleryTemplateId?: string | null;
|
|
859
863
|
/**
|
|
860
864
|
* The name of the host for the community gallery template.
|
|
861
865
|
*/
|
|
@@ -886,6 +890,10 @@ export namespace tagmanager_v2 {
|
|
|
886
890
|
version?: string | null;
|
|
887
891
|
}
|
|
888
892
|
export interface Schema$GetContainerSnippetResponse {
|
|
893
|
+
/**
|
|
894
|
+
* Server container config param for manually provisioning a tagging server.
|
|
895
|
+
*/
|
|
896
|
+
containerConfig?: string | null;
|
|
889
897
|
/**
|
|
890
898
|
* Tagging snippet for a Container.
|
|
891
899
|
*/
|
|
@@ -925,7 +933,7 @@ export namespace tagmanager_v2 {
|
|
|
925
933
|
*/
|
|
926
934
|
gtagConfigId?: string | null;
|
|
927
935
|
/**
|
|
928
|
-
* The Google tag config's parameters.
|
|
936
|
+
* The Google tag config's parameters.
|
|
929
937
|
*/
|
|
930
938
|
parameter?: Schema$Parameter[];
|
|
931
939
|
/**
|
|
@@ -937,7 +945,7 @@ export namespace tagmanager_v2 {
|
|
|
937
945
|
*/
|
|
938
946
|
tagManagerUrl?: string | null;
|
|
939
947
|
/**
|
|
940
|
-
* Google tag config type.
|
|
948
|
+
* Google tag config type.
|
|
941
949
|
*/
|
|
942
950
|
type?: string | null;
|
|
943
951
|
/**
|
|
@@ -1166,27 +1174,27 @@ export namespace tagmanager_v2 {
|
|
|
1166
1174
|
*/
|
|
1167
1175
|
export interface Schema$Parameter {
|
|
1168
1176
|
/**
|
|
1169
|
-
* Whether or not a reference type parameter is strongly or weakly referenced. Only used by Transformations.
|
|
1177
|
+
* Whether or not a reference type parameter is strongly or weakly referenced. Only used by Transformations.
|
|
1170
1178
|
*/
|
|
1171
1179
|
isWeakReference?: boolean | null;
|
|
1172
1180
|
/**
|
|
1173
|
-
* The named key that uniquely identifies a parameter. Required for top-level parameters, as well as map values. Ignored for list values.
|
|
1181
|
+
* The named key that uniquely identifies a parameter. Required for top-level parameters, as well as map values. Ignored for list values.
|
|
1174
1182
|
*/
|
|
1175
1183
|
key?: string | null;
|
|
1176
1184
|
/**
|
|
1177
|
-
* This list parameter's parameters (keys will be ignored).
|
|
1185
|
+
* This list parameter's parameters (keys will be ignored).
|
|
1178
1186
|
*/
|
|
1179
1187
|
list?: Schema$Parameter[];
|
|
1180
1188
|
/**
|
|
1181
|
-
* This map parameter's parameters (must have keys; keys must be unique).
|
|
1189
|
+
* This map parameter's parameters (must have keys; keys must be unique).
|
|
1182
1190
|
*/
|
|
1183
1191
|
map?: Schema$Parameter[];
|
|
1184
1192
|
/**
|
|
1185
|
-
* The parameter type. Valid values are: - boolean: The value represents a boolean, represented as 'true' or 'false' - integer: The value represents a 64-bit signed integer value, in base 10 - list: A list of parameters should be specified - map: A map of parameters should be specified - template: The value represents any text; this can include variable references (even variable references that might return non-string types) - trigger_reference: The value represents a trigger, represented as the trigger id - tag_reference: The value represents a tag, represented as the tag name
|
|
1193
|
+
* The parameter type. Valid values are: - boolean: The value represents a boolean, represented as 'true' or 'false' - integer: The value represents a 64-bit signed integer value, in base 10 - list: A list of parameters should be specified - map: A map of parameters should be specified - template: The value represents any text; this can include variable references (even variable references that might return non-string types) - trigger_reference: The value represents a trigger, represented as the trigger id - tag_reference: The value represents a tag, represented as the tag name
|
|
1186
1194
|
*/
|
|
1187
1195
|
type?: string | null;
|
|
1188
1196
|
/**
|
|
1189
|
-
* A parameter's value (may contain variable references
|
|
1197
|
+
* A parameter's value (may contain variable references). as appropriate to the specified type.
|
|
1190
1198
|
*/
|
|
1191
1199
|
value?: string | null;
|
|
1192
1200
|
}
|
|
@@ -1349,15 +1357,15 @@ export namespace tagmanager_v2 {
|
|
|
1349
1357
|
*/
|
|
1350
1358
|
accountId?: string | null;
|
|
1351
1359
|
/**
|
|
1352
|
-
* Blocking rule IDs. If any of the listed rules evaluate to true, the tag will not fire.
|
|
1360
|
+
* Blocking rule IDs. If any of the listed rules evaluate to true, the tag will not fire.
|
|
1353
1361
|
*/
|
|
1354
1362
|
blockingRuleId?: string[] | null;
|
|
1355
1363
|
/**
|
|
1356
|
-
* Blocking trigger IDs. If any of the listed triggers evaluate to true, the tag will not fire.
|
|
1364
|
+
* Blocking trigger IDs. If any of the listed triggers evaluate to true, the tag will not fire.
|
|
1357
1365
|
*/
|
|
1358
1366
|
blockingTriggerId?: string[] | null;
|
|
1359
1367
|
/**
|
|
1360
|
-
* Consent settings of a tag.
|
|
1368
|
+
* Consent settings of a tag.
|
|
1361
1369
|
*/
|
|
1362
1370
|
consentSettings?: Schema$TagConsentSetting;
|
|
1363
1371
|
/**
|
|
@@ -1369,35 +1377,35 @@ export namespace tagmanager_v2 {
|
|
|
1369
1377
|
*/
|
|
1370
1378
|
fingerprint?: string | null;
|
|
1371
1379
|
/**
|
|
1372
|
-
* Firing rule IDs. A tag will fire when any of the listed rules are true and all of its blockingRuleIds (if any specified) are false.
|
|
1380
|
+
* Firing rule IDs. A tag will fire when any of the listed rules are true and all of its blockingRuleIds (if any specified) are false.
|
|
1373
1381
|
*/
|
|
1374
1382
|
firingRuleId?: string[] | null;
|
|
1375
1383
|
/**
|
|
1376
|
-
* Firing trigger IDs. A tag will fire when any of the listed triggers are true and all of its blockingTriggerIds (if any specified) are false.
|
|
1384
|
+
* Firing trigger IDs. A tag will fire when any of the listed triggers are true and all of its blockingTriggerIds (if any specified) are false.
|
|
1377
1385
|
*/
|
|
1378
1386
|
firingTriggerId?: string[] | null;
|
|
1379
1387
|
/**
|
|
1380
|
-
* If set to true, this tag will only fire in the live environment (e.g. not in preview or debug mode).
|
|
1388
|
+
* If set to true, this tag will only fire in the live environment (e.g. not in preview or debug mode).
|
|
1381
1389
|
*/
|
|
1382
1390
|
liveOnly?: boolean | null;
|
|
1383
1391
|
/**
|
|
1384
|
-
* A map of key-value pairs of tag metadata to be included in the event data for tag monitoring. Notes: - This parameter must be type MAP. - Each parameter in the map are type TEMPLATE, however cannot contain variable references.
|
|
1392
|
+
* A map of key-value pairs of tag metadata to be included in the event data for tag monitoring. Notes: - This parameter must be type MAP. - Each parameter in the map are type TEMPLATE, however cannot contain variable references.
|
|
1385
1393
|
*/
|
|
1386
1394
|
monitoringMetadata?: Schema$Parameter;
|
|
1387
1395
|
/**
|
|
1388
|
-
* If non-empty, then the tag display name will be included in the monitoring metadata map using the key specified.
|
|
1396
|
+
* If non-empty, then the tag display name will be included in the monitoring metadata map using the key specified.
|
|
1389
1397
|
*/
|
|
1390
1398
|
monitoringMetadataTagNameKey?: string | null;
|
|
1391
1399
|
/**
|
|
1392
|
-
* Tag display name.
|
|
1400
|
+
* Tag display name.
|
|
1393
1401
|
*/
|
|
1394
1402
|
name?: string | null;
|
|
1395
1403
|
/**
|
|
1396
|
-
* User notes on how to apply this tag in the container.
|
|
1404
|
+
* User notes on how to apply this tag in the container.
|
|
1397
1405
|
*/
|
|
1398
1406
|
notes?: string | null;
|
|
1399
1407
|
/**
|
|
1400
|
-
* The tag's parameters.
|
|
1408
|
+
* The tag's parameters.
|
|
1401
1409
|
*/
|
|
1402
1410
|
parameter?: Schema$Parameter[];
|
|
1403
1411
|
/**
|
|
@@ -1409,19 +1417,19 @@ export namespace tagmanager_v2 {
|
|
|
1409
1417
|
*/
|
|
1410
1418
|
path?: string | null;
|
|
1411
1419
|
/**
|
|
1412
|
-
* Indicates whether the tag is paused, which prevents the tag from firing.
|
|
1420
|
+
* Indicates whether the tag is paused, which prevents the tag from firing.
|
|
1413
1421
|
*/
|
|
1414
1422
|
paused?: boolean | null;
|
|
1415
1423
|
/**
|
|
1416
|
-
* User defined numeric priority of the tag. Tags are fired asynchronously in order of priority. Tags with higher numeric value fire first. A tag's priority can be a positive or negative value. The default value is 0.
|
|
1424
|
+
* User defined numeric priority of the tag. Tags are fired asynchronously in order of priority. Tags with higher numeric value fire first. A tag's priority can be a positive or negative value. The default value is 0.
|
|
1417
1425
|
*/
|
|
1418
1426
|
priority?: Schema$Parameter;
|
|
1419
1427
|
/**
|
|
1420
|
-
* The end timestamp in milliseconds to schedule a tag.
|
|
1428
|
+
* The end timestamp in milliseconds to schedule a tag.
|
|
1421
1429
|
*/
|
|
1422
1430
|
scheduleEndMs?: string | null;
|
|
1423
1431
|
/**
|
|
1424
|
-
* The start timestamp in milliseconds to schedule a tag.
|
|
1432
|
+
* The start timestamp in milliseconds to schedule a tag.
|
|
1425
1433
|
*/
|
|
1426
1434
|
scheduleStartMs?: string | null;
|
|
1427
1435
|
/**
|
|
@@ -1445,7 +1453,7 @@ export namespace tagmanager_v2 {
|
|
|
1445
1453
|
*/
|
|
1446
1454
|
teardownTag?: Schema$TeardownTag[];
|
|
1447
1455
|
/**
|
|
1448
|
-
* GTM Tag Type.
|
|
1456
|
+
* GTM Tag Type.
|
|
1449
1457
|
*/
|
|
1450
1458
|
type?: string | null;
|
|
1451
1459
|
/**
|
|
@@ -1493,15 +1501,15 @@ export namespace tagmanager_v2 {
|
|
|
1493
1501
|
*/
|
|
1494
1502
|
fingerprint?: string | null;
|
|
1495
1503
|
/**
|
|
1496
|
-
* Transformation display name.
|
|
1504
|
+
* Transformation display name.
|
|
1497
1505
|
*/
|
|
1498
1506
|
name?: string | null;
|
|
1499
1507
|
/**
|
|
1500
|
-
* User notes on how to apply this transformation in the container.
|
|
1508
|
+
* User notes on how to apply this transformation in the container.
|
|
1501
1509
|
*/
|
|
1502
1510
|
notes?: string | null;
|
|
1503
1511
|
/**
|
|
1504
|
-
* The transformation's parameters.
|
|
1512
|
+
* The transformation's parameters.
|
|
1505
1513
|
*/
|
|
1506
1514
|
parameter?: Schema$Parameter[];
|
|
1507
1515
|
/**
|
|
@@ -1521,7 +1529,7 @@ export namespace tagmanager_v2 {
|
|
|
1521
1529
|
*/
|
|
1522
1530
|
transformationId?: string | null;
|
|
1523
1531
|
/**
|
|
1524
|
-
* Transformation type.
|
|
1532
|
+
* Transformation type.
|
|
1525
1533
|
*/
|
|
1526
1534
|
type?: string | null;
|
|
1527
1535
|
/**
|
|
@@ -1538,11 +1546,11 @@ export namespace tagmanager_v2 {
|
|
|
1538
1546
|
*/
|
|
1539
1547
|
accountId?: string | null;
|
|
1540
1548
|
/**
|
|
1541
|
-
* Used in the case of auto event tracking.
|
|
1549
|
+
* Used in the case of auto event tracking.
|
|
1542
1550
|
*/
|
|
1543
1551
|
autoEventFilter?: Schema$Condition[];
|
|
1544
1552
|
/**
|
|
1545
|
-
* Whether or not we should only fire tags if the form submit or link click event is not cancelled by some other event handler (e.g. because of validation). Only valid for Form Submission and Link Click triggers.
|
|
1553
|
+
* Whether or not we should only fire tags if the form submit or link click event is not cancelled by some other event handler (e.g. because of validation). Only valid for Form Submission and Link Click triggers.
|
|
1546
1554
|
*/
|
|
1547
1555
|
checkValidation?: Schema$Parameter;
|
|
1548
1556
|
/**
|
|
@@ -1550,19 +1558,19 @@ export namespace tagmanager_v2 {
|
|
|
1550
1558
|
*/
|
|
1551
1559
|
containerId?: string | null;
|
|
1552
1560
|
/**
|
|
1553
|
-
* A visibility trigger minimum continuous visible time (in milliseconds). Only valid for AMP Visibility trigger.
|
|
1561
|
+
* A visibility trigger minimum continuous visible time (in milliseconds). Only valid for AMP Visibility trigger.
|
|
1554
1562
|
*/
|
|
1555
1563
|
continuousTimeMinMilliseconds?: Schema$Parameter;
|
|
1556
1564
|
/**
|
|
1557
|
-
* Used in the case of custom event, which is fired iff all Conditions are true.
|
|
1565
|
+
* Used in the case of custom event, which is fired iff all Conditions are true.
|
|
1558
1566
|
*/
|
|
1559
1567
|
customEventFilter?: Schema$Condition[];
|
|
1560
1568
|
/**
|
|
1561
|
-
* Name of the GTM event that is fired. Only valid for Timer triggers.
|
|
1569
|
+
* Name of the GTM event that is fired. Only valid for Timer triggers.
|
|
1562
1570
|
*/
|
|
1563
1571
|
eventName?: Schema$Parameter;
|
|
1564
1572
|
/**
|
|
1565
|
-
* The trigger will only fire iff all Conditions are true.
|
|
1573
|
+
* The trigger will only fire iff all Conditions are true.
|
|
1566
1574
|
*/
|
|
1567
1575
|
filter?: Schema$Condition[];
|
|
1568
1576
|
/**
|
|
@@ -1570,35 +1578,35 @@ export namespace tagmanager_v2 {
|
|
|
1570
1578
|
*/
|
|
1571
1579
|
fingerprint?: string | null;
|
|
1572
1580
|
/**
|
|
1573
|
-
* List of integer percentage values for scroll triggers. The trigger will fire when each percentage is reached when the view is scrolled horizontally. Only valid for AMP scroll triggers.
|
|
1581
|
+
* List of integer percentage values for scroll triggers. The trigger will fire when each percentage is reached when the view is scrolled horizontally. Only valid for AMP scroll triggers.
|
|
1574
1582
|
*/
|
|
1575
1583
|
horizontalScrollPercentageList?: Schema$Parameter;
|
|
1576
1584
|
/**
|
|
1577
|
-
* Time between triggering recurring Timer Events (in milliseconds). Only valid for Timer triggers.
|
|
1585
|
+
* Time between triggering recurring Timer Events (in milliseconds). Only valid for Timer triggers.
|
|
1578
1586
|
*/
|
|
1579
1587
|
interval?: Schema$Parameter;
|
|
1580
1588
|
/**
|
|
1581
|
-
* Time between Timer Events to fire (in seconds). Only valid for AMP Timer trigger.
|
|
1589
|
+
* Time between Timer Events to fire (in seconds). Only valid for AMP Timer trigger.
|
|
1582
1590
|
*/
|
|
1583
1591
|
intervalSeconds?: Schema$Parameter;
|
|
1584
1592
|
/**
|
|
1585
|
-
* Limit of the number of GTM events this Timer Trigger will fire. If no limit is set, we will continue to fire GTM events until the user leaves the page. Only valid for Timer triggers.
|
|
1593
|
+
* Limit of the number of GTM events this Timer Trigger will fire. If no limit is set, we will continue to fire GTM events until the user leaves the page. Only valid for Timer triggers.
|
|
1586
1594
|
*/
|
|
1587
1595
|
limit?: Schema$Parameter;
|
|
1588
1596
|
/**
|
|
1589
|
-
* Max time to fire Timer Events (in seconds). Only valid for AMP Timer trigger.
|
|
1597
|
+
* Max time to fire Timer Events (in seconds). Only valid for AMP Timer trigger.
|
|
1590
1598
|
*/
|
|
1591
1599
|
maxTimerLengthSeconds?: Schema$Parameter;
|
|
1592
1600
|
/**
|
|
1593
|
-
* Trigger display name.
|
|
1601
|
+
* Trigger display name.
|
|
1594
1602
|
*/
|
|
1595
1603
|
name?: string | null;
|
|
1596
1604
|
/**
|
|
1597
|
-
* User notes on how to apply this trigger in the container.
|
|
1605
|
+
* User notes on how to apply this trigger in the container.
|
|
1598
1606
|
*/
|
|
1599
1607
|
notes?: string | null;
|
|
1600
1608
|
/**
|
|
1601
|
-
* Additional parameters.
|
|
1609
|
+
* Additional parameters.
|
|
1602
1610
|
*/
|
|
1603
1611
|
parameter?: Schema$Parameter[];
|
|
1604
1612
|
/**
|
|
@@ -1610,7 +1618,7 @@ export namespace tagmanager_v2 {
|
|
|
1610
1618
|
*/
|
|
1611
1619
|
path?: string | null;
|
|
1612
1620
|
/**
|
|
1613
|
-
* A click trigger CSS selector (i.e. "a", "button" etc.). Only valid for AMP Click trigger.
|
|
1621
|
+
* A click trigger CSS selector (i.e. "a", "button" etc.). Only valid for AMP Click trigger.
|
|
1614
1622
|
*/
|
|
1615
1623
|
selector?: Schema$Parameter;
|
|
1616
1624
|
/**
|
|
@@ -1618,7 +1626,7 @@ export namespace tagmanager_v2 {
|
|
|
1618
1626
|
*/
|
|
1619
1627
|
tagManagerUrl?: string | null;
|
|
1620
1628
|
/**
|
|
1621
|
-
* A visibility trigger minimum total visible time (in milliseconds). Only valid for AMP Visibility trigger.
|
|
1629
|
+
* A visibility trigger minimum total visible time (in milliseconds). Only valid for AMP Visibility trigger.
|
|
1622
1630
|
*/
|
|
1623
1631
|
totalTimeMinMilliseconds?: Schema$Parameter;
|
|
1624
1632
|
/**
|
|
@@ -1626,35 +1634,35 @@ export namespace tagmanager_v2 {
|
|
|
1626
1634
|
*/
|
|
1627
1635
|
triggerId?: string | null;
|
|
1628
1636
|
/**
|
|
1629
|
-
* Defines the data layer event that causes this trigger.
|
|
1637
|
+
* Defines the data layer event that causes this trigger.
|
|
1630
1638
|
*/
|
|
1631
1639
|
type?: string | null;
|
|
1632
1640
|
/**
|
|
1633
|
-
* Globally unique id of the trigger that auto-generates this (a Form Submit, Link Click or Timer listener) if any. Used to make incompatible auto-events work together with trigger filtering based on trigger ids. This value is populated during output generation since the tags implied by triggers don't exist until then. Only valid for Form Submit, Link Click and Timer triggers.
|
|
1641
|
+
* Globally unique id of the trigger that auto-generates this (a Form Submit, Link Click or Timer listener) if any. Used to make incompatible auto-events work together with trigger filtering based on trigger ids. This value is populated during output generation since the tags implied by triggers don't exist until then. Only valid for Form Submit, Link Click and Timer triggers.
|
|
1634
1642
|
*/
|
|
1635
1643
|
uniqueTriggerId?: Schema$Parameter;
|
|
1636
1644
|
/**
|
|
1637
|
-
* List of integer percentage values for scroll triggers. The trigger will fire when each percentage is reached when the view is scrolled vertically. Only valid for AMP scroll triggers.
|
|
1645
|
+
* List of integer percentage values for scroll triggers. The trigger will fire when each percentage is reached when the view is scrolled vertically. Only valid for AMP scroll triggers.
|
|
1638
1646
|
*/
|
|
1639
1647
|
verticalScrollPercentageList?: Schema$Parameter;
|
|
1640
1648
|
/**
|
|
1641
|
-
* A visibility trigger CSS selector (i.e. "#id"). Only valid for AMP Visibility trigger.
|
|
1649
|
+
* A visibility trigger CSS selector (i.e. "#id"). Only valid for AMP Visibility trigger.
|
|
1642
1650
|
*/
|
|
1643
1651
|
visibilitySelector?: Schema$Parameter;
|
|
1644
1652
|
/**
|
|
1645
|
-
* A visibility trigger maximum percent visibility. Only valid for AMP Visibility trigger.
|
|
1653
|
+
* A visibility trigger maximum percent visibility. Only valid for AMP Visibility trigger.
|
|
1646
1654
|
*/
|
|
1647
1655
|
visiblePercentageMax?: Schema$Parameter;
|
|
1648
1656
|
/**
|
|
1649
|
-
* A visibility trigger minimum percent visibility. Only valid for AMP Visibility trigger.
|
|
1657
|
+
* A visibility trigger minimum percent visibility. Only valid for AMP Visibility trigger.
|
|
1650
1658
|
*/
|
|
1651
1659
|
visiblePercentageMin?: Schema$Parameter;
|
|
1652
1660
|
/**
|
|
1653
|
-
* Whether or not we should delay the form submissions or link opening until all of the tags have fired (by preventing the default action and later simulating the default action). Only valid for Form Submission and Link Click triggers.
|
|
1661
|
+
* Whether or not we should delay the form submissions or link opening until all of the tags have fired (by preventing the default action and later simulating the default action). Only valid for Form Submission and Link Click triggers.
|
|
1654
1662
|
*/
|
|
1655
1663
|
waitForTags?: Schema$Parameter;
|
|
1656
1664
|
/**
|
|
1657
|
-
* How long to wait (in milliseconds) for tags to fire when 'waits_for_tags' above evaluates to true. Only valid for Form Submission and Link Click triggers.
|
|
1665
|
+
* How long to wait (in milliseconds) for tags to fire when 'waits_for_tags' above evaluates to true. Only valid for Form Submission and Link Click triggers.
|
|
1658
1666
|
*/
|
|
1659
1667
|
waitForTagsTimeout?: Schema$Parameter;
|
|
1660
1668
|
/**
|
|
@@ -1667,7 +1675,7 @@ export namespace tagmanager_v2 {
|
|
|
1667
1675
|
*/
|
|
1668
1676
|
export interface Schema$UserPermission {
|
|
1669
1677
|
/**
|
|
1670
|
-
* GTM Account access permissions.
|
|
1678
|
+
* GTM Account access permissions.
|
|
1671
1679
|
*/
|
|
1672
1680
|
accountAccess?: Schema$AccountAccess;
|
|
1673
1681
|
/**
|
|
@@ -1675,11 +1683,11 @@ export namespace tagmanager_v2 {
|
|
|
1675
1683
|
*/
|
|
1676
1684
|
accountId?: string | null;
|
|
1677
1685
|
/**
|
|
1678
|
-
* GTM Container access permissions.
|
|
1686
|
+
* GTM Container access permissions.
|
|
1679
1687
|
*/
|
|
1680
1688
|
containerAccess?: Schema$ContainerAccess[];
|
|
1681
1689
|
/**
|
|
1682
|
-
* User's email address.
|
|
1690
|
+
* User's email address.
|
|
1683
1691
|
*/
|
|
1684
1692
|
emailAddress?: string | null;
|
|
1685
1693
|
/**
|
|
@@ -1700,11 +1708,11 @@ export namespace tagmanager_v2 {
|
|
|
1700
1708
|
*/
|
|
1701
1709
|
containerId?: string | null;
|
|
1702
1710
|
/**
|
|
1703
|
-
* For mobile containers only: A list of trigger IDs for disabling conditional variables; the variable is enabled if one of the enabling trigger is true while all the disabling trigger are false. Treated as an unordered set.
|
|
1711
|
+
* For mobile containers only: A list of trigger IDs for disabling conditional variables; the variable is enabled if one of the enabling trigger is true while all the disabling trigger are false. Treated as an unordered set.
|
|
1704
1712
|
*/
|
|
1705
1713
|
disablingTriggerId?: string[] | null;
|
|
1706
1714
|
/**
|
|
1707
|
-
* For mobile containers only: A list of trigger IDs for enabling conditional variables; the variable is enabled if one of the enabling triggers is true while all the disabling triggers are false. Treated as an unordered set.
|
|
1715
|
+
* For mobile containers only: A list of trigger IDs for enabling conditional variables; the variable is enabled if one of the enabling triggers is true while all the disabling triggers are false. Treated as an unordered set.
|
|
1708
1716
|
*/
|
|
1709
1717
|
enablingTriggerId?: string[] | null;
|
|
1710
1718
|
/**
|
|
@@ -1716,15 +1724,15 @@ export namespace tagmanager_v2 {
|
|
|
1716
1724
|
*/
|
|
1717
1725
|
formatValue?: Schema$VariableFormatValue;
|
|
1718
1726
|
/**
|
|
1719
|
-
* Variable display name.
|
|
1727
|
+
* Variable display name.
|
|
1720
1728
|
*/
|
|
1721
1729
|
name?: string | null;
|
|
1722
1730
|
/**
|
|
1723
|
-
* User notes on how to apply this variable in the container.
|
|
1731
|
+
* User notes on how to apply this variable in the container.
|
|
1724
1732
|
*/
|
|
1725
1733
|
notes?: string | null;
|
|
1726
1734
|
/**
|
|
1727
|
-
* The variable's parameters.
|
|
1735
|
+
* The variable's parameters.
|
|
1728
1736
|
*/
|
|
1729
1737
|
parameter?: Schema$Parameter[];
|
|
1730
1738
|
/**
|
|
@@ -1736,11 +1744,11 @@ export namespace tagmanager_v2 {
|
|
|
1736
1744
|
*/
|
|
1737
1745
|
path?: string | null;
|
|
1738
1746
|
/**
|
|
1739
|
-
* The end timestamp in milliseconds to schedule a variable.
|
|
1747
|
+
* The end timestamp in milliseconds to schedule a variable.
|
|
1740
1748
|
*/
|
|
1741
1749
|
scheduleEndMs?: string | null;
|
|
1742
1750
|
/**
|
|
1743
|
-
* The start timestamp in milliseconds to schedule a variable.
|
|
1751
|
+
* The start timestamp in milliseconds to schedule a variable.
|
|
1744
1752
|
*/
|
|
1745
1753
|
scheduleStartMs?: string | null;
|
|
1746
1754
|
/**
|
|
@@ -1748,7 +1756,7 @@ export namespace tagmanager_v2 {
|
|
|
1748
1756
|
*/
|
|
1749
1757
|
tagManagerUrl?: string | null;
|
|
1750
1758
|
/**
|
|
1751
|
-
* GTM Variable Type.
|
|
1759
|
+
* GTM Variable Type.
|
|
1752
1760
|
*/
|
|
1753
1761
|
type?: string | null;
|
|
1754
1762
|
/**
|
|
@@ -1795,7 +1803,7 @@ export namespace tagmanager_v2 {
|
|
|
1795
1803
|
*/
|
|
1796
1804
|
containerId?: string | null;
|
|
1797
1805
|
/**
|
|
1798
|
-
* Workspace description.
|
|
1806
|
+
* Workspace description.
|
|
1799
1807
|
*/
|
|
1800
1808
|
description?: string | null;
|
|
1801
1809
|
/**
|
|
@@ -1803,7 +1811,7 @@ export namespace tagmanager_v2 {
|
|
|
1803
1811
|
*/
|
|
1804
1812
|
fingerprint?: string | null;
|
|
1805
1813
|
/**
|
|
1806
|
-
* Workspace display name.
|
|
1814
|
+
* Workspace display name.
|
|
1807
1815
|
*/
|
|
1808
1816
|
name?: string | null;
|
|
1809
1817
|
/**
|
|
@@ -2193,7 +2201,7 @@ export namespace tagmanager_v2 {
|
|
|
2193
2201
|
|
|
2194
2202
|
export interface Params$Resource$Accounts$Get extends StandardParameters {
|
|
2195
2203
|
/**
|
|
2196
|
-
* GTM Account's API relative path.
|
|
2204
|
+
* GTM Account's API relative path.
|
|
2197
2205
|
*/
|
|
2198
2206
|
path?: string;
|
|
2199
2207
|
}
|
|
@@ -2213,7 +2221,7 @@ export namespace tagmanager_v2 {
|
|
|
2213
2221
|
*/
|
|
2214
2222
|
fingerprint?: string;
|
|
2215
2223
|
/**
|
|
2216
|
-
* GTM Account's API relative path.
|
|
2224
|
+
* GTM Account's API relative path.
|
|
2217
2225
|
*/
|
|
2218
2226
|
path?: string;
|
|
2219
2227
|
|
|
@@ -3060,7 +3068,7 @@ export namespace tagmanager_v2 {
|
|
|
3060
3068
|
*/
|
|
3061
3069
|
containerId?: string;
|
|
3062
3070
|
/**
|
|
3063
|
-
* GTM Container's API relative path.
|
|
3071
|
+
* GTM Container's API relative path.
|
|
3064
3072
|
*/
|
|
3065
3073
|
path?: string;
|
|
3066
3074
|
/**
|
|
@@ -3071,7 +3079,7 @@ export namespace tagmanager_v2 {
|
|
|
3071
3079
|
export interface Params$Resource$Accounts$Containers$Create
|
|
3072
3080
|
extends StandardParameters {
|
|
3073
3081
|
/**
|
|
3074
|
-
* GTM Account's API relative path.
|
|
3082
|
+
* GTM Account's API relative path.
|
|
3075
3083
|
*/
|
|
3076
3084
|
parent?: string;
|
|
3077
3085
|
|
|
@@ -3083,14 +3091,14 @@ export namespace tagmanager_v2 {
|
|
|
3083
3091
|
export interface Params$Resource$Accounts$Containers$Delete
|
|
3084
3092
|
extends StandardParameters {
|
|
3085
3093
|
/**
|
|
3086
|
-
* GTM Container's API relative path.
|
|
3094
|
+
* GTM Container's API relative path.
|
|
3087
3095
|
*/
|
|
3088
3096
|
path?: string;
|
|
3089
3097
|
}
|
|
3090
3098
|
export interface Params$Resource$Accounts$Containers$Get
|
|
3091
3099
|
extends StandardParameters {
|
|
3092
3100
|
/**
|
|
3093
|
-
* GTM Container's API relative path.
|
|
3101
|
+
* GTM Container's API relative path.
|
|
3094
3102
|
*/
|
|
3095
3103
|
path?: string;
|
|
3096
3104
|
}
|
|
@@ -3101,18 +3109,18 @@ export namespace tagmanager_v2 {
|
|
|
3101
3109
|
*/
|
|
3102
3110
|
pageToken?: string;
|
|
3103
3111
|
/**
|
|
3104
|
-
* GTM Account's API relative path.
|
|
3112
|
+
* GTM Account's API relative path.
|
|
3105
3113
|
*/
|
|
3106
3114
|
parent?: string;
|
|
3107
3115
|
}
|
|
3108
3116
|
export interface Params$Resource$Accounts$Containers$Lookup
|
|
3109
3117
|
extends StandardParameters {
|
|
3110
3118
|
/**
|
|
3111
|
-
* Destination ID linked to a GTM Container, e.g. AW-123456789.
|
|
3119
|
+
* Destination ID linked to a GTM Container, e.g. AW-123456789. Only one of destination_id or tag_id should be set.
|
|
3112
3120
|
*/
|
|
3113
3121
|
destinationId?: string;
|
|
3114
3122
|
/**
|
|
3115
|
-
* Tag ID for a GTM Container, e.g. GTM-123456789.
|
|
3123
|
+
* Tag ID for a GTM Container, e.g. GTM-123456789. Only one of destination_id or tag_id should be set.
|
|
3116
3124
|
*/
|
|
3117
3125
|
tagId?: string;
|
|
3118
3126
|
}
|
|
@@ -3135,7 +3143,7 @@ export namespace tagmanager_v2 {
|
|
|
3135
3143
|
*/
|
|
3136
3144
|
copyUsers?: boolean;
|
|
3137
3145
|
/**
|
|
3138
|
-
* GTM Container's API relative path.
|
|
3146
|
+
* GTM Container's API relative path.
|
|
3139
3147
|
*/
|
|
3140
3148
|
path?: string;
|
|
3141
3149
|
/**
|
|
@@ -3150,7 +3158,7 @@ export namespace tagmanager_v2 {
|
|
|
3150
3158
|
export interface Params$Resource$Accounts$Containers$Snippet
|
|
3151
3159
|
extends StandardParameters {
|
|
3152
3160
|
/**
|
|
3153
|
-
* Container snippet's API relative path.
|
|
3161
|
+
* Container snippet's API relative path.
|
|
3154
3162
|
*/
|
|
3155
3163
|
path?: string;
|
|
3156
3164
|
}
|
|
@@ -3161,7 +3169,7 @@ export namespace tagmanager_v2 {
|
|
|
3161
3169
|
*/
|
|
3162
3170
|
fingerprint?: string;
|
|
3163
3171
|
/**
|
|
3164
|
-
* GTM Container's API relative path.
|
|
3172
|
+
* GTM Container's API relative path.
|
|
3165
3173
|
*/
|
|
3166
3174
|
path?: string;
|
|
3167
3175
|
|
|
@@ -3449,7 +3457,7 @@ export namespace tagmanager_v2 {
|
|
|
3449
3457
|
export interface Params$Resource$Accounts$Containers$Destinations$Get
|
|
3450
3458
|
extends StandardParameters {
|
|
3451
3459
|
/**
|
|
3452
|
-
* Google Tag Destination's API relative path.
|
|
3460
|
+
* Google Tag Destination's API relative path.
|
|
3453
3461
|
*/
|
|
3454
3462
|
path?: string;
|
|
3455
3463
|
}
|
|
@@ -3464,14 +3472,14 @@ export namespace tagmanager_v2 {
|
|
|
3464
3472
|
*/
|
|
3465
3473
|
destinationId?: string;
|
|
3466
3474
|
/**
|
|
3467
|
-
* GTM parent Container's API relative path.
|
|
3475
|
+
* GTM parent Container's API relative path.
|
|
3468
3476
|
*/
|
|
3469
3477
|
parent?: string;
|
|
3470
3478
|
}
|
|
3471
3479
|
export interface Params$Resource$Accounts$Containers$Destinations$List
|
|
3472
3480
|
extends StandardParameters {
|
|
3473
3481
|
/**
|
|
3474
|
-
* GTM parent Container's API relative path.
|
|
3482
|
+
* GTM parent Container's API relative path.
|
|
3475
3483
|
*/
|
|
3476
3484
|
parent?: string;
|
|
3477
3485
|
}
|
|
@@ -4018,7 +4026,7 @@ export namespace tagmanager_v2 {
|
|
|
4018
4026
|
export interface Params$Resource$Accounts$Containers$Environments$Create
|
|
4019
4027
|
extends StandardParameters {
|
|
4020
4028
|
/**
|
|
4021
|
-
* GTM Container's API relative path.
|
|
4029
|
+
* GTM Container's API relative path.
|
|
4022
4030
|
*/
|
|
4023
4031
|
parent?: string;
|
|
4024
4032
|
|
|
@@ -4030,14 +4038,14 @@ export namespace tagmanager_v2 {
|
|
|
4030
4038
|
export interface Params$Resource$Accounts$Containers$Environments$Delete
|
|
4031
4039
|
extends StandardParameters {
|
|
4032
4040
|
/**
|
|
4033
|
-
* GTM Environment's API relative path.
|
|
4041
|
+
* GTM Environment's API relative path.
|
|
4034
4042
|
*/
|
|
4035
4043
|
path?: string;
|
|
4036
4044
|
}
|
|
4037
4045
|
export interface Params$Resource$Accounts$Containers$Environments$Get
|
|
4038
4046
|
extends StandardParameters {
|
|
4039
4047
|
/**
|
|
4040
|
-
* GTM Environment's API relative path.
|
|
4048
|
+
* GTM Environment's API relative path.
|
|
4041
4049
|
*/
|
|
4042
4050
|
path?: string;
|
|
4043
4051
|
}
|
|
@@ -4048,14 +4056,14 @@ export namespace tagmanager_v2 {
|
|
|
4048
4056
|
*/
|
|
4049
4057
|
pageToken?: string;
|
|
4050
4058
|
/**
|
|
4051
|
-
* GTM Container's API relative path.
|
|
4059
|
+
* GTM Container's API relative path.
|
|
4052
4060
|
*/
|
|
4053
4061
|
parent?: string;
|
|
4054
4062
|
}
|
|
4055
4063
|
export interface Params$Resource$Accounts$Containers$Environments$Reauthorize
|
|
4056
4064
|
extends StandardParameters {
|
|
4057
4065
|
/**
|
|
4058
|
-
* GTM Environment's API relative path.
|
|
4066
|
+
* GTM Environment's API relative path.
|
|
4059
4067
|
*/
|
|
4060
4068
|
path?: string;
|
|
4061
4069
|
|
|
@@ -4071,7 +4079,7 @@ export namespace tagmanager_v2 {
|
|
|
4071
4079
|
*/
|
|
4072
4080
|
fingerprint?: string;
|
|
4073
4081
|
/**
|
|
4074
|
-
* GTM Environment's API relative path.
|
|
4082
|
+
* GTM Environment's API relative path.
|
|
4075
4083
|
*/
|
|
4076
4084
|
path?: string;
|
|
4077
4085
|
|
|
@@ -4714,7 +4722,7 @@ export namespace tagmanager_v2 {
|
|
|
4714
4722
|
export interface Params$Resource$Accounts$Containers$Versions$Delete
|
|
4715
4723
|
extends StandardParameters {
|
|
4716
4724
|
/**
|
|
4717
|
-
* GTM ContainerVersion's API relative path.
|
|
4725
|
+
* GTM ContainerVersion's API relative path.
|
|
4718
4726
|
*/
|
|
4719
4727
|
path?: string;
|
|
4720
4728
|
}
|
|
@@ -4725,14 +4733,14 @@ export namespace tagmanager_v2 {
|
|
|
4725
4733
|
*/
|
|
4726
4734
|
containerVersionId?: string;
|
|
4727
4735
|
/**
|
|
4728
|
-
* GTM ContainerVersion's API relative path.
|
|
4736
|
+
* GTM ContainerVersion's API relative path.
|
|
4729
4737
|
*/
|
|
4730
4738
|
path?: string;
|
|
4731
4739
|
}
|
|
4732
4740
|
export interface Params$Resource$Accounts$Containers$Versions$Live
|
|
4733
4741
|
extends StandardParameters {
|
|
4734
4742
|
/**
|
|
4735
|
-
* GTM Container's API relative path.
|
|
4743
|
+
* GTM Container's API relative path.
|
|
4736
4744
|
*/
|
|
4737
4745
|
parent?: string;
|
|
4738
4746
|
}
|
|
@@ -4743,21 +4751,21 @@ export namespace tagmanager_v2 {
|
|
|
4743
4751
|
*/
|
|
4744
4752
|
fingerprint?: string;
|
|
4745
4753
|
/**
|
|
4746
|
-
* GTM ContainerVersion's API relative path.
|
|
4754
|
+
* GTM ContainerVersion's API relative path.
|
|
4747
4755
|
*/
|
|
4748
4756
|
path?: string;
|
|
4749
4757
|
}
|
|
4750
4758
|
export interface Params$Resource$Accounts$Containers$Versions$Set_latest
|
|
4751
4759
|
extends StandardParameters {
|
|
4752
4760
|
/**
|
|
4753
|
-
* GTM ContainerVersion's API relative path.
|
|
4761
|
+
* GTM ContainerVersion's API relative path.
|
|
4754
4762
|
*/
|
|
4755
4763
|
path?: string;
|
|
4756
4764
|
}
|
|
4757
4765
|
export interface Params$Resource$Accounts$Containers$Versions$Undelete
|
|
4758
4766
|
extends StandardParameters {
|
|
4759
4767
|
/**
|
|
4760
|
-
* GTM ContainerVersion's API relative path.
|
|
4768
|
+
* GTM ContainerVersion's API relative path.
|
|
4761
4769
|
*/
|
|
4762
4770
|
path?: string;
|
|
4763
4771
|
}
|
|
@@ -4768,7 +4776,7 @@ export namespace tagmanager_v2 {
|
|
|
4768
4776
|
*/
|
|
4769
4777
|
fingerprint?: string;
|
|
4770
4778
|
/**
|
|
4771
|
-
* GTM ContainerVersion's API relative path.
|
|
4779
|
+
* GTM ContainerVersion's API relative path.
|
|
4772
4780
|
*/
|
|
4773
4781
|
path?: string;
|
|
4774
4782
|
|
|
@@ -4978,7 +4986,7 @@ export namespace tagmanager_v2 {
|
|
|
4978
4986
|
export interface Params$Resource$Accounts$Containers$Version_headers$Latest
|
|
4979
4987
|
extends StandardParameters {
|
|
4980
4988
|
/**
|
|
4981
|
-
* GTM Container's API relative path.
|
|
4989
|
+
* GTM Container's API relative path.
|
|
4982
4990
|
*/
|
|
4983
4991
|
parent?: string;
|
|
4984
4992
|
}
|
|
@@ -4993,7 +5001,7 @@ export namespace tagmanager_v2 {
|
|
|
4993
5001
|
*/
|
|
4994
5002
|
pageToken?: string;
|
|
4995
5003
|
/**
|
|
4996
|
-
* GTM Container's API relative path.
|
|
5004
|
+
* GTM Container's API relative path.
|
|
4997
5005
|
*/
|
|
4998
5006
|
parent?: string;
|
|
4999
5007
|
}
|
|
@@ -5961,7 +5969,7 @@ export namespace tagmanager_v2 {
|
|
|
5961
5969
|
export interface Params$Resource$Accounts$Containers$Workspaces$Create
|
|
5962
5970
|
extends StandardParameters {
|
|
5963
5971
|
/**
|
|
5964
|
-
* GTM parent Container's API relative path.
|
|
5972
|
+
* GTM parent Container's API relative path.
|
|
5965
5973
|
*/
|
|
5966
5974
|
parent?: string;
|
|
5967
5975
|
|
|
@@ -5973,7 +5981,7 @@ export namespace tagmanager_v2 {
|
|
|
5973
5981
|
export interface Params$Resource$Accounts$Containers$Workspaces$Create_version
|
|
5974
5982
|
extends StandardParameters {
|
|
5975
5983
|
/**
|
|
5976
|
-
* GTM Workspace's API relative path.
|
|
5984
|
+
* GTM Workspace's API relative path.
|
|
5977
5985
|
*/
|
|
5978
5986
|
path?: string;
|
|
5979
5987
|
|
|
@@ -5985,21 +5993,21 @@ export namespace tagmanager_v2 {
|
|
|
5985
5993
|
export interface Params$Resource$Accounts$Containers$Workspaces$Delete
|
|
5986
5994
|
extends StandardParameters {
|
|
5987
5995
|
/**
|
|
5988
|
-
* GTM Workspace's API relative path.
|
|
5996
|
+
* GTM Workspace's API relative path.
|
|
5989
5997
|
*/
|
|
5990
5998
|
path?: string;
|
|
5991
5999
|
}
|
|
5992
6000
|
export interface Params$Resource$Accounts$Containers$Workspaces$Get
|
|
5993
6001
|
extends StandardParameters {
|
|
5994
6002
|
/**
|
|
5995
|
-
* GTM Workspace's API relative path.
|
|
6003
|
+
* GTM Workspace's API relative path.
|
|
5996
6004
|
*/
|
|
5997
6005
|
path?: string;
|
|
5998
6006
|
}
|
|
5999
6007
|
export interface Params$Resource$Accounts$Containers$Workspaces$Getstatus
|
|
6000
6008
|
extends StandardParameters {
|
|
6001
6009
|
/**
|
|
6002
|
-
* GTM Workspace's API relative path.
|
|
6010
|
+
* GTM Workspace's API relative path.
|
|
6003
6011
|
*/
|
|
6004
6012
|
path?: string;
|
|
6005
6013
|
}
|
|
@@ -6010,14 +6018,14 @@ export namespace tagmanager_v2 {
|
|
|
6010
6018
|
*/
|
|
6011
6019
|
pageToken?: string;
|
|
6012
6020
|
/**
|
|
6013
|
-
* GTM parent Container's API relative path.
|
|
6021
|
+
* GTM parent Container's API relative path.
|
|
6014
6022
|
*/
|
|
6015
6023
|
parent?: string;
|
|
6016
6024
|
}
|
|
6017
6025
|
export interface Params$Resource$Accounts$Containers$Workspaces$Quick_preview
|
|
6018
6026
|
extends StandardParameters {
|
|
6019
6027
|
/**
|
|
6020
|
-
* GTM Workspace's API relative path.
|
|
6028
|
+
* GTM Workspace's API relative path.
|
|
6021
6029
|
*/
|
|
6022
6030
|
path?: string;
|
|
6023
6031
|
}
|
|
@@ -6028,7 +6036,7 @@ export namespace tagmanager_v2 {
|
|
|
6028
6036
|
*/
|
|
6029
6037
|
fingerprint?: string;
|
|
6030
6038
|
/**
|
|
6031
|
-
* GTM Workspace's API relative path.
|
|
6039
|
+
* GTM Workspace's API relative path.
|
|
6032
6040
|
*/
|
|
6033
6041
|
path?: string;
|
|
6034
6042
|
|
|
@@ -6040,7 +6048,7 @@ export namespace tagmanager_v2 {
|
|
|
6040
6048
|
export interface Params$Resource$Accounts$Containers$Workspaces$Sync
|
|
6041
6049
|
extends StandardParameters {
|
|
6042
6050
|
/**
|
|
6043
|
-
* GTM Workspace's API relative path.
|
|
6051
|
+
* GTM Workspace's API relative path.
|
|
6044
6052
|
*/
|
|
6045
6053
|
path?: string;
|
|
6046
6054
|
}
|
|
@@ -6051,7 +6059,7 @@ export namespace tagmanager_v2 {
|
|
|
6051
6059
|
*/
|
|
6052
6060
|
fingerprint?: string;
|
|
6053
6061
|
/**
|
|
6054
|
-
* GTM Workspace's API relative path.
|
|
6062
|
+
* GTM Workspace's API relative path.
|
|
6055
6063
|
*/
|
|
6056
6064
|
path?: string;
|
|
6057
6065
|
|
|
@@ -6449,7 +6457,7 @@ export namespace tagmanager_v2 {
|
|
|
6449
6457
|
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create
|
|
6450
6458
|
extends StandardParameters {
|
|
6451
6459
|
/**
|
|
6452
|
-
* GTM Workspace's API relative path.
|
|
6460
|
+
* GTM Workspace's API relative path.
|
|
6453
6461
|
*/
|
|
6454
6462
|
parent?: string;
|
|
6455
6463
|
/**
|
|
@@ -6460,7 +6468,7 @@ export namespace tagmanager_v2 {
|
|
|
6460
6468
|
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete
|
|
6461
6469
|
extends StandardParameters {
|
|
6462
6470
|
/**
|
|
6463
|
-
* GTM BuiltInVariable's API relative path.
|
|
6471
|
+
* GTM BuiltInVariable's API relative path.
|
|
6464
6472
|
*/
|
|
6465
6473
|
path?: string;
|
|
6466
6474
|
/**
|
|
@@ -6475,14 +6483,14 @@ export namespace tagmanager_v2 {
|
|
|
6475
6483
|
*/
|
|
6476
6484
|
pageToken?: string;
|
|
6477
6485
|
/**
|
|
6478
|
-
* GTM Workspace's API relative path.
|
|
6486
|
+
* GTM Workspace's API relative path.
|
|
6479
6487
|
*/
|
|
6480
6488
|
parent?: string;
|
|
6481
6489
|
}
|
|
6482
6490
|
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert
|
|
6483
6491
|
extends StandardParameters {
|
|
6484
6492
|
/**
|
|
6485
|
-
* GTM BuiltInVariable's API relative path.
|
|
6493
|
+
* GTM BuiltInVariable's API relative path.
|
|
6486
6494
|
*/
|
|
6487
6495
|
path?: string;
|
|
6488
6496
|
/**
|
|
@@ -7041,7 +7049,7 @@ export namespace tagmanager_v2 {
|
|
|
7041
7049
|
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Create
|
|
7042
7050
|
extends StandardParameters {
|
|
7043
7051
|
/**
|
|
7044
|
-
* GTM Workspace's API relative path.
|
|
7052
|
+
* GTM Workspace's API relative path.
|
|
7045
7053
|
*/
|
|
7046
7054
|
parent?: string;
|
|
7047
7055
|
|
|
@@ -7053,14 +7061,14 @@ export namespace tagmanager_v2 {
|
|
|
7053
7061
|
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Delete
|
|
7054
7062
|
extends StandardParameters {
|
|
7055
7063
|
/**
|
|
7056
|
-
* GTM Client's API relative path.
|
|
7064
|
+
* GTM Client's API relative path.
|
|
7057
7065
|
*/
|
|
7058
7066
|
path?: string;
|
|
7059
7067
|
}
|
|
7060
7068
|
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Get
|
|
7061
7069
|
extends StandardParameters {
|
|
7062
7070
|
/**
|
|
7063
|
-
* GTM Client's API relative path.
|
|
7071
|
+
* GTM Client's API relative path.
|
|
7064
7072
|
*/
|
|
7065
7073
|
path?: string;
|
|
7066
7074
|
}
|
|
@@ -7071,7 +7079,7 @@ export namespace tagmanager_v2 {
|
|
|
7071
7079
|
*/
|
|
7072
7080
|
pageToken?: string;
|
|
7073
7081
|
/**
|
|
7074
|
-
* GTM Workspace's API relative path.
|
|
7082
|
+
* GTM Workspace's API relative path.
|
|
7075
7083
|
*/
|
|
7076
7084
|
parent?: string;
|
|
7077
7085
|
}
|
|
@@ -7082,7 +7090,7 @@ export namespace tagmanager_v2 {
|
|
|
7082
7090
|
*/
|
|
7083
7091
|
fingerprint?: string;
|
|
7084
7092
|
/**
|
|
7085
|
-
* GTM Client's API relative path.
|
|
7093
|
+
* GTM Client's API relative path.
|
|
7086
7094
|
*/
|
|
7087
7095
|
path?: string;
|
|
7088
7096
|
}
|
|
@@ -7093,7 +7101,7 @@ export namespace tagmanager_v2 {
|
|
|
7093
7101
|
*/
|
|
7094
7102
|
fingerprint?: string;
|
|
7095
7103
|
/**
|
|
7096
|
-
* GTM Client's API relative path.
|
|
7104
|
+
* GTM Client's API relative path.
|
|
7097
7105
|
*/
|
|
7098
7106
|
path?: string;
|
|
7099
7107
|
|
|
@@ -7828,7 +7836,7 @@ export namespace tagmanager_v2 {
|
|
|
7828
7836
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Create
|
|
7829
7837
|
extends StandardParameters {
|
|
7830
7838
|
/**
|
|
7831
|
-
* GTM Workspace's API relative path.
|
|
7839
|
+
* GTM Workspace's API relative path.
|
|
7832
7840
|
*/
|
|
7833
7841
|
parent?: string;
|
|
7834
7842
|
|
|
@@ -7840,7 +7848,7 @@ export namespace tagmanager_v2 {
|
|
|
7840
7848
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Delete
|
|
7841
7849
|
extends StandardParameters {
|
|
7842
7850
|
/**
|
|
7843
|
-
* GTM Folder's API relative path.
|
|
7851
|
+
* GTM Folder's API relative path.
|
|
7844
7852
|
*/
|
|
7845
7853
|
path?: string;
|
|
7846
7854
|
}
|
|
@@ -7851,14 +7859,14 @@ export namespace tagmanager_v2 {
|
|
|
7851
7859
|
*/
|
|
7852
7860
|
pageToken?: string;
|
|
7853
7861
|
/**
|
|
7854
|
-
* GTM Folder's API relative path.
|
|
7862
|
+
* GTM Folder's API relative path.
|
|
7855
7863
|
*/
|
|
7856
7864
|
path?: string;
|
|
7857
7865
|
}
|
|
7858
7866
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Get
|
|
7859
7867
|
extends StandardParameters {
|
|
7860
7868
|
/**
|
|
7861
|
-
* GTM Folder's API relative path.
|
|
7869
|
+
* GTM Folder's API relative path.
|
|
7862
7870
|
*/
|
|
7863
7871
|
path?: string;
|
|
7864
7872
|
}
|
|
@@ -7869,14 +7877,14 @@ export namespace tagmanager_v2 {
|
|
|
7869
7877
|
*/
|
|
7870
7878
|
pageToken?: string;
|
|
7871
7879
|
/**
|
|
7872
|
-
* GTM Workspace's API relative path.
|
|
7880
|
+
* GTM Workspace's API relative path.
|
|
7873
7881
|
*/
|
|
7874
7882
|
parent?: string;
|
|
7875
7883
|
}
|
|
7876
7884
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder
|
|
7877
7885
|
extends StandardParameters {
|
|
7878
7886
|
/**
|
|
7879
|
-
* GTM Folder's API relative path.
|
|
7887
|
+
* GTM Folder's API relative path.
|
|
7880
7888
|
*/
|
|
7881
7889
|
path?: string;
|
|
7882
7890
|
/**
|
|
@@ -7904,7 +7912,7 @@ export namespace tagmanager_v2 {
|
|
|
7904
7912
|
*/
|
|
7905
7913
|
fingerprint?: string;
|
|
7906
7914
|
/**
|
|
7907
|
-
* GTM Folder's API relative path.
|
|
7915
|
+
* GTM Folder's API relative path.
|
|
7908
7916
|
*/
|
|
7909
7917
|
path?: string;
|
|
7910
7918
|
}
|
|
@@ -7915,7 +7923,7 @@ export namespace tagmanager_v2 {
|
|
|
7915
7923
|
*/
|
|
7916
7924
|
fingerprint?: string;
|
|
7917
7925
|
/**
|
|
7918
|
-
* GTM Folder's API relative path.
|
|
7926
|
+
* GTM Folder's API relative path.
|
|
7919
7927
|
*/
|
|
7920
7928
|
path?: string;
|
|
7921
7929
|
|
|
@@ -8383,7 +8391,7 @@ export namespace tagmanager_v2 {
|
|
|
8383
8391
|
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create
|
|
8384
8392
|
extends StandardParameters {
|
|
8385
8393
|
/**
|
|
8386
|
-
* Workspace's API relative path.
|
|
8394
|
+
* Workspace's API relative path.
|
|
8387
8395
|
*/
|
|
8388
8396
|
parent?: string;
|
|
8389
8397
|
|
|
@@ -8395,14 +8403,14 @@ export namespace tagmanager_v2 {
|
|
|
8395
8403
|
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete
|
|
8396
8404
|
extends StandardParameters {
|
|
8397
8405
|
/**
|
|
8398
|
-
* Google tag config's API relative path.
|
|
8406
|
+
* Google tag config's API relative path.
|
|
8399
8407
|
*/
|
|
8400
8408
|
path?: string;
|
|
8401
8409
|
}
|
|
8402
8410
|
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get
|
|
8403
8411
|
extends StandardParameters {
|
|
8404
8412
|
/**
|
|
8405
|
-
* Google tag config's API relative path.
|
|
8413
|
+
* Google tag config's API relative path.
|
|
8406
8414
|
*/
|
|
8407
8415
|
path?: string;
|
|
8408
8416
|
}
|
|
@@ -8413,7 +8421,7 @@ export namespace tagmanager_v2 {
|
|
|
8413
8421
|
*/
|
|
8414
8422
|
pageToken?: string;
|
|
8415
8423
|
/**
|
|
8416
|
-
* Workspace's API relative path.
|
|
8424
|
+
* Workspace's API relative path.
|
|
8417
8425
|
*/
|
|
8418
8426
|
parent?: string;
|
|
8419
8427
|
}
|
|
@@ -8424,7 +8432,7 @@ export namespace tagmanager_v2 {
|
|
|
8424
8432
|
*/
|
|
8425
8433
|
fingerprint?: string;
|
|
8426
8434
|
/**
|
|
8427
|
-
* Google tag config's API relative path.
|
|
8435
|
+
* Google tag config's API relative path.
|
|
8428
8436
|
*/
|
|
8429
8437
|
path?: string;
|
|
8430
8438
|
|
|
@@ -8977,7 +8985,7 @@ export namespace tagmanager_v2 {
|
|
|
8977
8985
|
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Create
|
|
8978
8986
|
extends StandardParameters {
|
|
8979
8987
|
/**
|
|
8980
|
-
* GTM Workspace's API relative path.
|
|
8988
|
+
* GTM Workspace's API relative path.
|
|
8981
8989
|
*/
|
|
8982
8990
|
parent?: string;
|
|
8983
8991
|
|
|
@@ -8989,14 +8997,14 @@ export namespace tagmanager_v2 {
|
|
|
8989
8997
|
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Delete
|
|
8990
8998
|
extends StandardParameters {
|
|
8991
8999
|
/**
|
|
8992
|
-
* GTM Tag's API relative path.
|
|
9000
|
+
* GTM Tag's API relative path.
|
|
8993
9001
|
*/
|
|
8994
9002
|
path?: string;
|
|
8995
9003
|
}
|
|
8996
9004
|
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Get
|
|
8997
9005
|
extends StandardParameters {
|
|
8998
9006
|
/**
|
|
8999
|
-
* GTM Tag's API relative path.
|
|
9007
|
+
* GTM Tag's API relative path.
|
|
9000
9008
|
*/
|
|
9001
9009
|
path?: string;
|
|
9002
9010
|
}
|
|
@@ -9007,7 +9015,7 @@ export namespace tagmanager_v2 {
|
|
|
9007
9015
|
*/
|
|
9008
9016
|
pageToken?: string;
|
|
9009
9017
|
/**
|
|
9010
|
-
* GTM Workspace's API relative path.
|
|
9018
|
+
* GTM Workspace's API relative path.
|
|
9011
9019
|
*/
|
|
9012
9020
|
parent?: string;
|
|
9013
9021
|
}
|
|
@@ -9018,7 +9026,7 @@ export namespace tagmanager_v2 {
|
|
|
9018
9026
|
*/
|
|
9019
9027
|
fingerprint?: string;
|
|
9020
9028
|
/**
|
|
9021
|
-
* GTM Tag's API relative path.
|
|
9029
|
+
* GTM Tag's API relative path.
|
|
9022
9030
|
*/
|
|
9023
9031
|
path?: string;
|
|
9024
9032
|
}
|
|
@@ -9029,7 +9037,7 @@ export namespace tagmanager_v2 {
|
|
|
9029
9037
|
*/
|
|
9030
9038
|
fingerprint?: string;
|
|
9031
9039
|
/**
|
|
9032
|
-
* GTM Tag's API relative path.
|
|
9040
|
+
* GTM Tag's API relative path.
|
|
9033
9041
|
*/
|
|
9034
9042
|
path?: string;
|
|
9035
9043
|
|
|
@@ -9310,6 +9318,96 @@ export namespace tagmanager_v2 {
|
|
|
9310
9318
|
}
|
|
9311
9319
|
}
|
|
9312
9320
|
|
|
9321
|
+
/**
|
|
9322
|
+
* Imports a GTM Custom Template from Gallery.
|
|
9323
|
+
*
|
|
9324
|
+
* @param params - Parameters for request
|
|
9325
|
+
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
|
|
9326
|
+
* @param callback - Optional callback that handles the response.
|
|
9327
|
+
* @returns A promise if used with async/await, or void if used with a callback.
|
|
9328
|
+
*/
|
|
9329
|
+
import_from_gallery(
|
|
9330
|
+
params: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery,
|
|
9331
|
+
options: StreamMethodOptions
|
|
9332
|
+
): GaxiosPromise<Readable>;
|
|
9333
|
+
import_from_gallery(
|
|
9334
|
+
params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery,
|
|
9335
|
+
options?: MethodOptions
|
|
9336
|
+
): GaxiosPromise<Schema$CustomTemplate>;
|
|
9337
|
+
import_from_gallery(
|
|
9338
|
+
params: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery,
|
|
9339
|
+
options: StreamMethodOptions | BodyResponseCallback<Readable>,
|
|
9340
|
+
callback: BodyResponseCallback<Readable>
|
|
9341
|
+
): void;
|
|
9342
|
+
import_from_gallery(
|
|
9343
|
+
params: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery,
|
|
9344
|
+
options: MethodOptions | BodyResponseCallback<Schema$CustomTemplate>,
|
|
9345
|
+
callback: BodyResponseCallback<Schema$CustomTemplate>
|
|
9346
|
+
): void;
|
|
9347
|
+
import_from_gallery(
|
|
9348
|
+
params: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery,
|
|
9349
|
+
callback: BodyResponseCallback<Schema$CustomTemplate>
|
|
9350
|
+
): void;
|
|
9351
|
+
import_from_gallery(
|
|
9352
|
+
callback: BodyResponseCallback<Schema$CustomTemplate>
|
|
9353
|
+
): void;
|
|
9354
|
+
import_from_gallery(
|
|
9355
|
+
paramsOrCallback?:
|
|
9356
|
+
| Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery
|
|
9357
|
+
| BodyResponseCallback<Schema$CustomTemplate>
|
|
9358
|
+
| BodyResponseCallback<Readable>,
|
|
9359
|
+
optionsOrCallback?:
|
|
9360
|
+
| MethodOptions
|
|
9361
|
+
| StreamMethodOptions
|
|
9362
|
+
| BodyResponseCallback<Schema$CustomTemplate>
|
|
9363
|
+
| BodyResponseCallback<Readable>,
|
|
9364
|
+
callback?:
|
|
9365
|
+
| BodyResponseCallback<Schema$CustomTemplate>
|
|
9366
|
+
| BodyResponseCallback<Readable>
|
|
9367
|
+
): void | GaxiosPromise<Schema$CustomTemplate> | GaxiosPromise<Readable> {
|
|
9368
|
+
let params = (paramsOrCallback ||
|
|
9369
|
+
{}) as Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery;
|
|
9370
|
+
let options = (optionsOrCallback || {}) as MethodOptions;
|
|
9371
|
+
|
|
9372
|
+
if (typeof paramsOrCallback === 'function') {
|
|
9373
|
+
callback = paramsOrCallback;
|
|
9374
|
+
params =
|
|
9375
|
+
{} as Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery;
|
|
9376
|
+
options = {};
|
|
9377
|
+
}
|
|
9378
|
+
|
|
9379
|
+
if (typeof optionsOrCallback === 'function') {
|
|
9380
|
+
callback = optionsOrCallback;
|
|
9381
|
+
options = {};
|
|
9382
|
+
}
|
|
9383
|
+
|
|
9384
|
+
const rootUrl = options.rootUrl || 'https://tagmanager.googleapis.com/';
|
|
9385
|
+
const parameters = {
|
|
9386
|
+
options: Object.assign(
|
|
9387
|
+
{
|
|
9388
|
+
url: (
|
|
9389
|
+
rootUrl + '/tagmanager/v2/{+parent}/templates:import_from_gallery'
|
|
9390
|
+
).replace(/([^:]\/)\/+/g, '$1'),
|
|
9391
|
+
method: 'POST',
|
|
9392
|
+
apiVersion: '',
|
|
9393
|
+
},
|
|
9394
|
+
options
|
|
9395
|
+
),
|
|
9396
|
+
params,
|
|
9397
|
+
requiredParams: ['parent'],
|
|
9398
|
+
pathParams: ['parent'],
|
|
9399
|
+
context: this.context,
|
|
9400
|
+
};
|
|
9401
|
+
if (callback) {
|
|
9402
|
+
createAPIRequest<Schema$CustomTemplate>(
|
|
9403
|
+
parameters,
|
|
9404
|
+
callback as BodyResponseCallback<unknown>
|
|
9405
|
+
);
|
|
9406
|
+
} else {
|
|
9407
|
+
return createAPIRequest<Schema$CustomTemplate>(parameters);
|
|
9408
|
+
}
|
|
9409
|
+
}
|
|
9410
|
+
|
|
9313
9411
|
/**
|
|
9314
9412
|
* Lists all GTM Templates of a GTM container workspace.
|
|
9315
9413
|
*
|
|
@@ -9591,7 +9689,7 @@ export namespace tagmanager_v2 {
|
|
|
9591
9689
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Create
|
|
9592
9690
|
extends StandardParameters {
|
|
9593
9691
|
/**
|
|
9594
|
-
* GTM Workspace's API relative path.
|
|
9692
|
+
* GTM Workspace's API relative path.
|
|
9595
9693
|
*/
|
|
9596
9694
|
parent?: string;
|
|
9597
9695
|
|
|
@@ -9603,17 +9701,40 @@ export namespace tagmanager_v2 {
|
|
|
9603
9701
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Delete
|
|
9604
9702
|
extends StandardParameters {
|
|
9605
9703
|
/**
|
|
9606
|
-
* GTM Custom Template's API relative path.
|
|
9704
|
+
* GTM Custom Template's API relative path.
|
|
9607
9705
|
*/
|
|
9608
9706
|
path?: string;
|
|
9609
9707
|
}
|
|
9610
9708
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Get
|
|
9611
9709
|
extends StandardParameters {
|
|
9612
9710
|
/**
|
|
9613
|
-
* GTM Custom Template's API relative path.
|
|
9711
|
+
* GTM Custom Template's API relative path.
|
|
9614
9712
|
*/
|
|
9615
9713
|
path?: string;
|
|
9616
9714
|
}
|
|
9715
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery
|
|
9716
|
+
extends StandardParameters {
|
|
9717
|
+
/**
|
|
9718
|
+
* Must be set to true to allow Gallery template to be imported into the workspace. If this bit is false, the import operation will fail.
|
|
9719
|
+
*/
|
|
9720
|
+
acknowledgePermissions?: boolean;
|
|
9721
|
+
/**
|
|
9722
|
+
* Owner of the Gallery template to import
|
|
9723
|
+
*/
|
|
9724
|
+
galleryOwner?: string;
|
|
9725
|
+
/**
|
|
9726
|
+
* Repository of the Gallery template to import
|
|
9727
|
+
*/
|
|
9728
|
+
galleryRepository?: string;
|
|
9729
|
+
/**
|
|
9730
|
+
* SHA version of the Gallery template to import. Defaulted to the latest SHA version if not provided.
|
|
9731
|
+
*/
|
|
9732
|
+
gallerySha?: string;
|
|
9733
|
+
/**
|
|
9734
|
+
* GTM Workspace's API relative path.
|
|
9735
|
+
*/
|
|
9736
|
+
parent?: string;
|
|
9737
|
+
}
|
|
9617
9738
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$List
|
|
9618
9739
|
extends StandardParameters {
|
|
9619
9740
|
/**
|
|
@@ -9621,7 +9742,7 @@ export namespace tagmanager_v2 {
|
|
|
9621
9742
|
*/
|
|
9622
9743
|
pageToken?: string;
|
|
9623
9744
|
/**
|
|
9624
|
-
* GTM Workspace's API relative path.
|
|
9745
|
+
* GTM Workspace's API relative path.
|
|
9625
9746
|
*/
|
|
9626
9747
|
parent?: string;
|
|
9627
9748
|
}
|
|
@@ -9632,7 +9753,7 @@ export namespace tagmanager_v2 {
|
|
|
9632
9753
|
*/
|
|
9633
9754
|
fingerprint?: string;
|
|
9634
9755
|
/**
|
|
9635
|
-
* GTM Custom Template's API relative path.
|
|
9756
|
+
* GTM Custom Template's API relative path.
|
|
9636
9757
|
*/
|
|
9637
9758
|
path?: string;
|
|
9638
9759
|
}
|
|
@@ -9643,7 +9764,7 @@ export namespace tagmanager_v2 {
|
|
|
9643
9764
|
*/
|
|
9644
9765
|
fingerprint?: string;
|
|
9645
9766
|
/**
|
|
9646
|
-
* GTM Custom Template's API relative path.
|
|
9767
|
+
* GTM Custom Template's API relative path.
|
|
9647
9768
|
*/
|
|
9648
9769
|
path?: string;
|
|
9649
9770
|
|
|
@@ -10211,7 +10332,7 @@ export namespace tagmanager_v2 {
|
|
|
10211
10332
|
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Create
|
|
10212
10333
|
extends StandardParameters {
|
|
10213
10334
|
/**
|
|
10214
|
-
* GTM Workspace's API relative path.
|
|
10335
|
+
* GTM Workspace's API relative path.
|
|
10215
10336
|
*/
|
|
10216
10337
|
parent?: string;
|
|
10217
10338
|
|
|
@@ -10223,14 +10344,14 @@ export namespace tagmanager_v2 {
|
|
|
10223
10344
|
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete
|
|
10224
10345
|
extends StandardParameters {
|
|
10225
10346
|
/**
|
|
10226
|
-
* GTM Transformation's API relative path.
|
|
10347
|
+
* GTM Transformation's API relative path.
|
|
10227
10348
|
*/
|
|
10228
10349
|
path?: string;
|
|
10229
10350
|
}
|
|
10230
10351
|
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Get
|
|
10231
10352
|
extends StandardParameters {
|
|
10232
10353
|
/**
|
|
10233
|
-
* GTM Transformation's API relative path.
|
|
10354
|
+
* GTM Transformation's API relative path.
|
|
10234
10355
|
*/
|
|
10235
10356
|
path?: string;
|
|
10236
10357
|
}
|
|
@@ -10241,7 +10362,7 @@ export namespace tagmanager_v2 {
|
|
|
10241
10362
|
*/
|
|
10242
10363
|
pageToken?: string;
|
|
10243
10364
|
/**
|
|
10244
|
-
* GTM Workspace's API relative path.
|
|
10365
|
+
* GTM Workspace's API relative path.
|
|
10245
10366
|
*/
|
|
10246
10367
|
parent?: string;
|
|
10247
10368
|
}
|
|
@@ -10252,7 +10373,7 @@ export namespace tagmanager_v2 {
|
|
|
10252
10373
|
*/
|
|
10253
10374
|
fingerprint?: string;
|
|
10254
10375
|
/**
|
|
10255
|
-
* GTM Transformation's API relative path.
|
|
10376
|
+
* GTM Transformation's API relative path.
|
|
10256
10377
|
*/
|
|
10257
10378
|
path?: string;
|
|
10258
10379
|
}
|
|
@@ -10263,7 +10384,7 @@ export namespace tagmanager_v2 {
|
|
|
10263
10384
|
*/
|
|
10264
10385
|
fingerprint?: string;
|
|
10265
10386
|
/**
|
|
10266
|
-
* GTM Transformation's API relative path.
|
|
10387
|
+
* GTM Transformation's API relative path.
|
|
10267
10388
|
*/
|
|
10268
10389
|
path?: string;
|
|
10269
10390
|
|
|
@@ -10825,7 +10946,7 @@ export namespace tagmanager_v2 {
|
|
|
10825
10946
|
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Create
|
|
10826
10947
|
extends StandardParameters {
|
|
10827
10948
|
/**
|
|
10828
|
-
* GTM Workspace's API relative path.
|
|
10949
|
+
* GTM Workspace's API relative path.
|
|
10829
10950
|
*/
|
|
10830
10951
|
parent?: string;
|
|
10831
10952
|
|
|
@@ -10837,14 +10958,14 @@ export namespace tagmanager_v2 {
|
|
|
10837
10958
|
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete
|
|
10838
10959
|
extends StandardParameters {
|
|
10839
10960
|
/**
|
|
10840
|
-
* GTM Trigger's API relative path.
|
|
10961
|
+
* GTM Trigger's API relative path.
|
|
10841
10962
|
*/
|
|
10842
10963
|
path?: string;
|
|
10843
10964
|
}
|
|
10844
10965
|
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Get
|
|
10845
10966
|
extends StandardParameters {
|
|
10846
10967
|
/**
|
|
10847
|
-
* GTM Trigger's API relative path.
|
|
10968
|
+
* GTM Trigger's API relative path.
|
|
10848
10969
|
*/
|
|
10849
10970
|
path?: string;
|
|
10850
10971
|
}
|
|
@@ -10855,7 +10976,7 @@ export namespace tagmanager_v2 {
|
|
|
10855
10976
|
*/
|
|
10856
10977
|
pageToken?: string;
|
|
10857
10978
|
/**
|
|
10858
|
-
* GTM Workspace's API relative path.
|
|
10979
|
+
* GTM Workspace's API relative path.
|
|
10859
10980
|
*/
|
|
10860
10981
|
parent?: string;
|
|
10861
10982
|
}
|
|
@@ -10866,7 +10987,7 @@ export namespace tagmanager_v2 {
|
|
|
10866
10987
|
*/
|
|
10867
10988
|
fingerprint?: string;
|
|
10868
10989
|
/**
|
|
10869
|
-
* GTM Trigger's API relative path.
|
|
10990
|
+
* GTM Trigger's API relative path.
|
|
10870
10991
|
*/
|
|
10871
10992
|
path?: string;
|
|
10872
10993
|
}
|
|
@@ -10877,7 +10998,7 @@ export namespace tagmanager_v2 {
|
|
|
10877
10998
|
*/
|
|
10878
10999
|
fingerprint?: string;
|
|
10879
11000
|
/**
|
|
10880
|
-
* GTM Trigger's API relative path.
|
|
11001
|
+
* GTM Trigger's API relative path.
|
|
10881
11002
|
*/
|
|
10882
11003
|
path?: string;
|
|
10883
11004
|
|
|
@@ -11439,7 +11560,7 @@ export namespace tagmanager_v2 {
|
|
|
11439
11560
|
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Create
|
|
11440
11561
|
extends StandardParameters {
|
|
11441
11562
|
/**
|
|
11442
|
-
* GTM Workspace's API relative path.
|
|
11563
|
+
* GTM Workspace's API relative path.
|
|
11443
11564
|
*/
|
|
11444
11565
|
parent?: string;
|
|
11445
11566
|
|
|
@@ -11451,14 +11572,14 @@ export namespace tagmanager_v2 {
|
|
|
11451
11572
|
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Delete
|
|
11452
11573
|
extends StandardParameters {
|
|
11453
11574
|
/**
|
|
11454
|
-
* GTM Variable's API relative path.
|
|
11575
|
+
* GTM Variable's API relative path.
|
|
11455
11576
|
*/
|
|
11456
11577
|
path?: string;
|
|
11457
11578
|
}
|
|
11458
11579
|
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Get
|
|
11459
11580
|
extends StandardParameters {
|
|
11460
11581
|
/**
|
|
11461
|
-
* GTM Variable's API relative path.
|
|
11582
|
+
* GTM Variable's API relative path.
|
|
11462
11583
|
*/
|
|
11463
11584
|
path?: string;
|
|
11464
11585
|
}
|
|
@@ -11469,7 +11590,7 @@ export namespace tagmanager_v2 {
|
|
|
11469
11590
|
*/
|
|
11470
11591
|
pageToken?: string;
|
|
11471
11592
|
/**
|
|
11472
|
-
* GTM Workspace's API relative path.
|
|
11593
|
+
* GTM Workspace's API relative path.
|
|
11473
11594
|
*/
|
|
11474
11595
|
parent?: string;
|
|
11475
11596
|
}
|
|
@@ -11480,7 +11601,7 @@ export namespace tagmanager_v2 {
|
|
|
11480
11601
|
*/
|
|
11481
11602
|
fingerprint?: string;
|
|
11482
11603
|
/**
|
|
11483
|
-
* GTM Variable's API relative path.
|
|
11604
|
+
* GTM Variable's API relative path.
|
|
11484
11605
|
*/
|
|
11485
11606
|
path?: string;
|
|
11486
11607
|
}
|
|
@@ -11491,7 +11612,7 @@ export namespace tagmanager_v2 {
|
|
|
11491
11612
|
*/
|
|
11492
11613
|
fingerprint?: string;
|
|
11493
11614
|
/**
|
|
11494
|
-
* GTM Variable's API relative path.
|
|
11615
|
+
* GTM Variable's API relative path.
|
|
11495
11616
|
*/
|
|
11496
11617
|
path?: string;
|
|
11497
11618
|
|
|
@@ -12048,7 +12169,7 @@ export namespace tagmanager_v2 {
|
|
|
12048
12169
|
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Create
|
|
12049
12170
|
extends StandardParameters {
|
|
12050
12171
|
/**
|
|
12051
|
-
* GTM Workspace's API relative path.
|
|
12172
|
+
* GTM Workspace's API relative path.
|
|
12052
12173
|
*/
|
|
12053
12174
|
parent?: string;
|
|
12054
12175
|
|
|
@@ -12060,14 +12181,14 @@ export namespace tagmanager_v2 {
|
|
|
12060
12181
|
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Delete
|
|
12061
12182
|
extends StandardParameters {
|
|
12062
12183
|
/**
|
|
12063
|
-
* GTM Zone's API relative path.
|
|
12184
|
+
* GTM Zone's API relative path.
|
|
12064
12185
|
*/
|
|
12065
12186
|
path?: string;
|
|
12066
12187
|
}
|
|
12067
12188
|
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Get
|
|
12068
12189
|
extends StandardParameters {
|
|
12069
12190
|
/**
|
|
12070
|
-
* GTM Zone's API relative path.
|
|
12191
|
+
* GTM Zone's API relative path.
|
|
12071
12192
|
*/
|
|
12072
12193
|
path?: string;
|
|
12073
12194
|
}
|
|
@@ -12078,7 +12199,7 @@ export namespace tagmanager_v2 {
|
|
|
12078
12199
|
*/
|
|
12079
12200
|
pageToken?: string;
|
|
12080
12201
|
/**
|
|
12081
|
-
* GTM Workspace's API relative path.
|
|
12202
|
+
* GTM Workspace's API relative path.
|
|
12082
12203
|
*/
|
|
12083
12204
|
parent?: string;
|
|
12084
12205
|
}
|
|
@@ -12089,7 +12210,7 @@ export namespace tagmanager_v2 {
|
|
|
12089
12210
|
*/
|
|
12090
12211
|
fingerprint?: string;
|
|
12091
12212
|
/**
|
|
12092
|
-
* GTM Zone's API relative path.
|
|
12213
|
+
* GTM Zone's API relative path.
|
|
12093
12214
|
*/
|
|
12094
12215
|
path?: string;
|
|
12095
12216
|
}
|
|
@@ -12100,7 +12221,7 @@ export namespace tagmanager_v2 {
|
|
|
12100
12221
|
*/
|
|
12101
12222
|
fingerprint?: string;
|
|
12102
12223
|
/**
|
|
12103
|
-
* GTM Zone's API relative path.
|
|
12224
|
+
* GTM Zone's API relative path.
|
|
12104
12225
|
*/
|
|
12105
12226
|
path?: string;
|
|
12106
12227
|
|
|
@@ -12563,7 +12684,7 @@ export namespace tagmanager_v2 {
|
|
|
12563
12684
|
export interface Params$Resource$Accounts$User_permissions$Create
|
|
12564
12685
|
extends StandardParameters {
|
|
12565
12686
|
/**
|
|
12566
|
-
* GTM Account's API relative path.
|
|
12687
|
+
* GTM Account's API relative path.
|
|
12567
12688
|
*/
|
|
12568
12689
|
parent?: string;
|
|
12569
12690
|
|
|
@@ -12575,14 +12696,14 @@ export namespace tagmanager_v2 {
|
|
|
12575
12696
|
export interface Params$Resource$Accounts$User_permissions$Delete
|
|
12576
12697
|
extends StandardParameters {
|
|
12577
12698
|
/**
|
|
12578
|
-
* GTM UserPermission's API relative path.
|
|
12699
|
+
* GTM UserPermission's API relative path.
|
|
12579
12700
|
*/
|
|
12580
12701
|
path?: string;
|
|
12581
12702
|
}
|
|
12582
12703
|
export interface Params$Resource$Accounts$User_permissions$Get
|
|
12583
12704
|
extends StandardParameters {
|
|
12584
12705
|
/**
|
|
12585
|
-
* GTM UserPermission's API relative path.
|
|
12706
|
+
* GTM UserPermission's API relative path.
|
|
12586
12707
|
*/
|
|
12587
12708
|
path?: string;
|
|
12588
12709
|
}
|
|
@@ -12593,14 +12714,14 @@ export namespace tagmanager_v2 {
|
|
|
12593
12714
|
*/
|
|
12594
12715
|
pageToken?: string;
|
|
12595
12716
|
/**
|
|
12596
|
-
* GTM Account's API relative path.
|
|
12717
|
+
* GTM Account's API relative path.
|
|
12597
12718
|
*/
|
|
12598
12719
|
parent?: string;
|
|
12599
12720
|
}
|
|
12600
12721
|
export interface Params$Resource$Accounts$User_permissions$Update
|
|
12601
12722
|
extends StandardParameters {
|
|
12602
12723
|
/**
|
|
12603
|
-
* GTM UserPermission's API relative path.
|
|
12724
|
+
* GTM UserPermission's API relative path.
|
|
12604
12725
|
*/
|
|
12605
12726
|
path?: string;
|
|
12606
12727
|
|