@googleapis/tagmanager 5.3.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 +30 -0
- package/build/v1.d.ts +84 -84
- package/build/v2.d.ts +243 -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 +320 -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
|
*/
|
|
@@ -876,12 +880,20 @@ export namespace tagmanager_v2 {
|
|
|
876
880
|
* The signature of the community gallery template as computed at import time. This value is recomputed whenever the template is updated from the gallery.
|
|
877
881
|
*/
|
|
878
882
|
signature?: string | null;
|
|
883
|
+
/**
|
|
884
|
+
* The developer id of the community gallery template. This value is set whenever the template is created from the gallery.
|
|
885
|
+
*/
|
|
886
|
+
templateDeveloperId?: string | null;
|
|
879
887
|
/**
|
|
880
888
|
* The version of the community gallery template.
|
|
881
889
|
*/
|
|
882
890
|
version?: string | null;
|
|
883
891
|
}
|
|
884
892
|
export interface Schema$GetContainerSnippetResponse {
|
|
893
|
+
/**
|
|
894
|
+
* Server container config param for manually provisioning a tagging server.
|
|
895
|
+
*/
|
|
896
|
+
containerConfig?: string | null;
|
|
885
897
|
/**
|
|
886
898
|
* Tagging snippet for a Container.
|
|
887
899
|
*/
|
|
@@ -921,7 +933,7 @@ export namespace tagmanager_v2 {
|
|
|
921
933
|
*/
|
|
922
934
|
gtagConfigId?: string | null;
|
|
923
935
|
/**
|
|
924
|
-
* The Google tag config's parameters.
|
|
936
|
+
* The Google tag config's parameters.
|
|
925
937
|
*/
|
|
926
938
|
parameter?: Schema$Parameter[];
|
|
927
939
|
/**
|
|
@@ -933,7 +945,7 @@ export namespace tagmanager_v2 {
|
|
|
933
945
|
*/
|
|
934
946
|
tagManagerUrl?: string | null;
|
|
935
947
|
/**
|
|
936
|
-
* Google tag config type.
|
|
948
|
+
* Google tag config type.
|
|
937
949
|
*/
|
|
938
950
|
type?: string | null;
|
|
939
951
|
/**
|
|
@@ -1162,27 +1174,27 @@ export namespace tagmanager_v2 {
|
|
|
1162
1174
|
*/
|
|
1163
1175
|
export interface Schema$Parameter {
|
|
1164
1176
|
/**
|
|
1165
|
-
* 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.
|
|
1166
1178
|
*/
|
|
1167
1179
|
isWeakReference?: boolean | null;
|
|
1168
1180
|
/**
|
|
1169
|
-
* 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.
|
|
1170
1182
|
*/
|
|
1171
1183
|
key?: string | null;
|
|
1172
1184
|
/**
|
|
1173
|
-
* This list parameter's parameters (keys will be ignored).
|
|
1185
|
+
* This list parameter's parameters (keys will be ignored).
|
|
1174
1186
|
*/
|
|
1175
1187
|
list?: Schema$Parameter[];
|
|
1176
1188
|
/**
|
|
1177
|
-
* 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).
|
|
1178
1190
|
*/
|
|
1179
1191
|
map?: Schema$Parameter[];
|
|
1180
1192
|
/**
|
|
1181
|
-
* 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
|
|
1182
1194
|
*/
|
|
1183
1195
|
type?: string | null;
|
|
1184
1196
|
/**
|
|
1185
|
-
* A parameter's value (may contain variable references
|
|
1197
|
+
* A parameter's value (may contain variable references). as appropriate to the specified type.
|
|
1186
1198
|
*/
|
|
1187
1199
|
value?: string | null;
|
|
1188
1200
|
}
|
|
@@ -1345,15 +1357,15 @@ export namespace tagmanager_v2 {
|
|
|
1345
1357
|
*/
|
|
1346
1358
|
accountId?: string | null;
|
|
1347
1359
|
/**
|
|
1348
|
-
* 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.
|
|
1349
1361
|
*/
|
|
1350
1362
|
blockingRuleId?: string[] | null;
|
|
1351
1363
|
/**
|
|
1352
|
-
* 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.
|
|
1353
1365
|
*/
|
|
1354
1366
|
blockingTriggerId?: string[] | null;
|
|
1355
1367
|
/**
|
|
1356
|
-
* Consent settings of a tag.
|
|
1368
|
+
* Consent settings of a tag.
|
|
1357
1369
|
*/
|
|
1358
1370
|
consentSettings?: Schema$TagConsentSetting;
|
|
1359
1371
|
/**
|
|
@@ -1365,35 +1377,35 @@ export namespace tagmanager_v2 {
|
|
|
1365
1377
|
*/
|
|
1366
1378
|
fingerprint?: string | null;
|
|
1367
1379
|
/**
|
|
1368
|
-
* 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.
|
|
1369
1381
|
*/
|
|
1370
1382
|
firingRuleId?: string[] | null;
|
|
1371
1383
|
/**
|
|
1372
|
-
* 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.
|
|
1373
1385
|
*/
|
|
1374
1386
|
firingTriggerId?: string[] | null;
|
|
1375
1387
|
/**
|
|
1376
|
-
* 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).
|
|
1377
1389
|
*/
|
|
1378
1390
|
liveOnly?: boolean | null;
|
|
1379
1391
|
/**
|
|
1380
|
-
* 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.
|
|
1381
1393
|
*/
|
|
1382
1394
|
monitoringMetadata?: Schema$Parameter;
|
|
1383
1395
|
/**
|
|
1384
|
-
* 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.
|
|
1385
1397
|
*/
|
|
1386
1398
|
monitoringMetadataTagNameKey?: string | null;
|
|
1387
1399
|
/**
|
|
1388
|
-
* Tag display name.
|
|
1400
|
+
* Tag display name.
|
|
1389
1401
|
*/
|
|
1390
1402
|
name?: string | null;
|
|
1391
1403
|
/**
|
|
1392
|
-
* User notes on how to apply this tag in the container.
|
|
1404
|
+
* User notes on how to apply this tag in the container.
|
|
1393
1405
|
*/
|
|
1394
1406
|
notes?: string | null;
|
|
1395
1407
|
/**
|
|
1396
|
-
* The tag's parameters.
|
|
1408
|
+
* The tag's parameters.
|
|
1397
1409
|
*/
|
|
1398
1410
|
parameter?: Schema$Parameter[];
|
|
1399
1411
|
/**
|
|
@@ -1405,19 +1417,19 @@ export namespace tagmanager_v2 {
|
|
|
1405
1417
|
*/
|
|
1406
1418
|
path?: string | null;
|
|
1407
1419
|
/**
|
|
1408
|
-
* 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.
|
|
1409
1421
|
*/
|
|
1410
1422
|
paused?: boolean | null;
|
|
1411
1423
|
/**
|
|
1412
|
-
* 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.
|
|
1413
1425
|
*/
|
|
1414
1426
|
priority?: Schema$Parameter;
|
|
1415
1427
|
/**
|
|
1416
|
-
* The end timestamp in milliseconds to schedule a tag.
|
|
1428
|
+
* The end timestamp in milliseconds to schedule a tag.
|
|
1417
1429
|
*/
|
|
1418
1430
|
scheduleEndMs?: string | null;
|
|
1419
1431
|
/**
|
|
1420
|
-
* The start timestamp in milliseconds to schedule a tag.
|
|
1432
|
+
* The start timestamp in milliseconds to schedule a tag.
|
|
1421
1433
|
*/
|
|
1422
1434
|
scheduleStartMs?: string | null;
|
|
1423
1435
|
/**
|
|
@@ -1441,7 +1453,7 @@ export namespace tagmanager_v2 {
|
|
|
1441
1453
|
*/
|
|
1442
1454
|
teardownTag?: Schema$TeardownTag[];
|
|
1443
1455
|
/**
|
|
1444
|
-
* GTM Tag Type.
|
|
1456
|
+
* GTM Tag Type.
|
|
1445
1457
|
*/
|
|
1446
1458
|
type?: string | null;
|
|
1447
1459
|
/**
|
|
@@ -1489,15 +1501,15 @@ export namespace tagmanager_v2 {
|
|
|
1489
1501
|
*/
|
|
1490
1502
|
fingerprint?: string | null;
|
|
1491
1503
|
/**
|
|
1492
|
-
* Transformation display name.
|
|
1504
|
+
* Transformation display name.
|
|
1493
1505
|
*/
|
|
1494
1506
|
name?: string | null;
|
|
1495
1507
|
/**
|
|
1496
|
-
* User notes on how to apply this transformation in the container.
|
|
1508
|
+
* User notes on how to apply this transformation in the container.
|
|
1497
1509
|
*/
|
|
1498
1510
|
notes?: string | null;
|
|
1499
1511
|
/**
|
|
1500
|
-
* The transformation's parameters.
|
|
1512
|
+
* The transformation's parameters.
|
|
1501
1513
|
*/
|
|
1502
1514
|
parameter?: Schema$Parameter[];
|
|
1503
1515
|
/**
|
|
@@ -1517,7 +1529,7 @@ export namespace tagmanager_v2 {
|
|
|
1517
1529
|
*/
|
|
1518
1530
|
transformationId?: string | null;
|
|
1519
1531
|
/**
|
|
1520
|
-
* Transformation type.
|
|
1532
|
+
* Transformation type.
|
|
1521
1533
|
*/
|
|
1522
1534
|
type?: string | null;
|
|
1523
1535
|
/**
|
|
@@ -1534,11 +1546,11 @@ export namespace tagmanager_v2 {
|
|
|
1534
1546
|
*/
|
|
1535
1547
|
accountId?: string | null;
|
|
1536
1548
|
/**
|
|
1537
|
-
* Used in the case of auto event tracking.
|
|
1549
|
+
* Used in the case of auto event tracking.
|
|
1538
1550
|
*/
|
|
1539
1551
|
autoEventFilter?: Schema$Condition[];
|
|
1540
1552
|
/**
|
|
1541
|
-
* 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.
|
|
1542
1554
|
*/
|
|
1543
1555
|
checkValidation?: Schema$Parameter;
|
|
1544
1556
|
/**
|
|
@@ -1546,19 +1558,19 @@ export namespace tagmanager_v2 {
|
|
|
1546
1558
|
*/
|
|
1547
1559
|
containerId?: string | null;
|
|
1548
1560
|
/**
|
|
1549
|
-
* 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.
|
|
1550
1562
|
*/
|
|
1551
1563
|
continuousTimeMinMilliseconds?: Schema$Parameter;
|
|
1552
1564
|
/**
|
|
1553
|
-
* 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.
|
|
1554
1566
|
*/
|
|
1555
1567
|
customEventFilter?: Schema$Condition[];
|
|
1556
1568
|
/**
|
|
1557
|
-
* 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.
|
|
1558
1570
|
*/
|
|
1559
1571
|
eventName?: Schema$Parameter;
|
|
1560
1572
|
/**
|
|
1561
|
-
* The trigger will only fire iff all Conditions are true.
|
|
1573
|
+
* The trigger will only fire iff all Conditions are true.
|
|
1562
1574
|
*/
|
|
1563
1575
|
filter?: Schema$Condition[];
|
|
1564
1576
|
/**
|
|
@@ -1566,35 +1578,35 @@ export namespace tagmanager_v2 {
|
|
|
1566
1578
|
*/
|
|
1567
1579
|
fingerprint?: string | null;
|
|
1568
1580
|
/**
|
|
1569
|
-
* 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.
|
|
1570
1582
|
*/
|
|
1571
1583
|
horizontalScrollPercentageList?: Schema$Parameter;
|
|
1572
1584
|
/**
|
|
1573
|
-
* 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.
|
|
1574
1586
|
*/
|
|
1575
1587
|
interval?: Schema$Parameter;
|
|
1576
1588
|
/**
|
|
1577
|
-
* 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.
|
|
1578
1590
|
*/
|
|
1579
1591
|
intervalSeconds?: Schema$Parameter;
|
|
1580
1592
|
/**
|
|
1581
|
-
* 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.
|
|
1582
1594
|
*/
|
|
1583
1595
|
limit?: Schema$Parameter;
|
|
1584
1596
|
/**
|
|
1585
|
-
* 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.
|
|
1586
1598
|
*/
|
|
1587
1599
|
maxTimerLengthSeconds?: Schema$Parameter;
|
|
1588
1600
|
/**
|
|
1589
|
-
* Trigger display name.
|
|
1601
|
+
* Trigger display name.
|
|
1590
1602
|
*/
|
|
1591
1603
|
name?: string | null;
|
|
1592
1604
|
/**
|
|
1593
|
-
* User notes on how to apply this trigger in the container.
|
|
1605
|
+
* User notes on how to apply this trigger in the container.
|
|
1594
1606
|
*/
|
|
1595
1607
|
notes?: string | null;
|
|
1596
1608
|
/**
|
|
1597
|
-
* Additional parameters.
|
|
1609
|
+
* Additional parameters.
|
|
1598
1610
|
*/
|
|
1599
1611
|
parameter?: Schema$Parameter[];
|
|
1600
1612
|
/**
|
|
@@ -1606,7 +1618,7 @@ export namespace tagmanager_v2 {
|
|
|
1606
1618
|
*/
|
|
1607
1619
|
path?: string | null;
|
|
1608
1620
|
/**
|
|
1609
|
-
* 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.
|
|
1610
1622
|
*/
|
|
1611
1623
|
selector?: Schema$Parameter;
|
|
1612
1624
|
/**
|
|
@@ -1614,7 +1626,7 @@ export namespace tagmanager_v2 {
|
|
|
1614
1626
|
*/
|
|
1615
1627
|
tagManagerUrl?: string | null;
|
|
1616
1628
|
/**
|
|
1617
|
-
* 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.
|
|
1618
1630
|
*/
|
|
1619
1631
|
totalTimeMinMilliseconds?: Schema$Parameter;
|
|
1620
1632
|
/**
|
|
@@ -1622,35 +1634,35 @@ export namespace tagmanager_v2 {
|
|
|
1622
1634
|
*/
|
|
1623
1635
|
triggerId?: string | null;
|
|
1624
1636
|
/**
|
|
1625
|
-
* Defines the data layer event that causes this trigger.
|
|
1637
|
+
* Defines the data layer event that causes this trigger.
|
|
1626
1638
|
*/
|
|
1627
1639
|
type?: string | null;
|
|
1628
1640
|
/**
|
|
1629
|
-
* 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.
|
|
1630
1642
|
*/
|
|
1631
1643
|
uniqueTriggerId?: Schema$Parameter;
|
|
1632
1644
|
/**
|
|
1633
|
-
* 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.
|
|
1634
1646
|
*/
|
|
1635
1647
|
verticalScrollPercentageList?: Schema$Parameter;
|
|
1636
1648
|
/**
|
|
1637
|
-
* 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.
|
|
1638
1650
|
*/
|
|
1639
1651
|
visibilitySelector?: Schema$Parameter;
|
|
1640
1652
|
/**
|
|
1641
|
-
* 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.
|
|
1642
1654
|
*/
|
|
1643
1655
|
visiblePercentageMax?: Schema$Parameter;
|
|
1644
1656
|
/**
|
|
1645
|
-
* 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.
|
|
1646
1658
|
*/
|
|
1647
1659
|
visiblePercentageMin?: Schema$Parameter;
|
|
1648
1660
|
/**
|
|
1649
|
-
* 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.
|
|
1650
1662
|
*/
|
|
1651
1663
|
waitForTags?: Schema$Parameter;
|
|
1652
1664
|
/**
|
|
1653
|
-
* 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.
|
|
1654
1666
|
*/
|
|
1655
1667
|
waitForTagsTimeout?: Schema$Parameter;
|
|
1656
1668
|
/**
|
|
@@ -1663,7 +1675,7 @@ export namespace tagmanager_v2 {
|
|
|
1663
1675
|
*/
|
|
1664
1676
|
export interface Schema$UserPermission {
|
|
1665
1677
|
/**
|
|
1666
|
-
* GTM Account access permissions.
|
|
1678
|
+
* GTM Account access permissions.
|
|
1667
1679
|
*/
|
|
1668
1680
|
accountAccess?: Schema$AccountAccess;
|
|
1669
1681
|
/**
|
|
@@ -1671,11 +1683,11 @@ export namespace tagmanager_v2 {
|
|
|
1671
1683
|
*/
|
|
1672
1684
|
accountId?: string | null;
|
|
1673
1685
|
/**
|
|
1674
|
-
* GTM Container access permissions.
|
|
1686
|
+
* GTM Container access permissions.
|
|
1675
1687
|
*/
|
|
1676
1688
|
containerAccess?: Schema$ContainerAccess[];
|
|
1677
1689
|
/**
|
|
1678
|
-
* User's email address.
|
|
1690
|
+
* User's email address.
|
|
1679
1691
|
*/
|
|
1680
1692
|
emailAddress?: string | null;
|
|
1681
1693
|
/**
|
|
@@ -1696,11 +1708,11 @@ export namespace tagmanager_v2 {
|
|
|
1696
1708
|
*/
|
|
1697
1709
|
containerId?: string | null;
|
|
1698
1710
|
/**
|
|
1699
|
-
* 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.
|
|
1700
1712
|
*/
|
|
1701
1713
|
disablingTriggerId?: string[] | null;
|
|
1702
1714
|
/**
|
|
1703
|
-
* 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.
|
|
1704
1716
|
*/
|
|
1705
1717
|
enablingTriggerId?: string[] | null;
|
|
1706
1718
|
/**
|
|
@@ -1712,15 +1724,15 @@ export namespace tagmanager_v2 {
|
|
|
1712
1724
|
*/
|
|
1713
1725
|
formatValue?: Schema$VariableFormatValue;
|
|
1714
1726
|
/**
|
|
1715
|
-
* Variable display name.
|
|
1727
|
+
* Variable display name.
|
|
1716
1728
|
*/
|
|
1717
1729
|
name?: string | null;
|
|
1718
1730
|
/**
|
|
1719
|
-
* User notes on how to apply this variable in the container.
|
|
1731
|
+
* User notes on how to apply this variable in the container.
|
|
1720
1732
|
*/
|
|
1721
1733
|
notes?: string | null;
|
|
1722
1734
|
/**
|
|
1723
|
-
* The variable's parameters.
|
|
1735
|
+
* The variable's parameters.
|
|
1724
1736
|
*/
|
|
1725
1737
|
parameter?: Schema$Parameter[];
|
|
1726
1738
|
/**
|
|
@@ -1732,11 +1744,11 @@ export namespace tagmanager_v2 {
|
|
|
1732
1744
|
*/
|
|
1733
1745
|
path?: string | null;
|
|
1734
1746
|
/**
|
|
1735
|
-
* The end timestamp in milliseconds to schedule a variable.
|
|
1747
|
+
* The end timestamp in milliseconds to schedule a variable.
|
|
1736
1748
|
*/
|
|
1737
1749
|
scheduleEndMs?: string | null;
|
|
1738
1750
|
/**
|
|
1739
|
-
* The start timestamp in milliseconds to schedule a variable.
|
|
1751
|
+
* The start timestamp in milliseconds to schedule a variable.
|
|
1740
1752
|
*/
|
|
1741
1753
|
scheduleStartMs?: string | null;
|
|
1742
1754
|
/**
|
|
@@ -1744,7 +1756,7 @@ export namespace tagmanager_v2 {
|
|
|
1744
1756
|
*/
|
|
1745
1757
|
tagManagerUrl?: string | null;
|
|
1746
1758
|
/**
|
|
1747
|
-
* GTM Variable Type.
|
|
1759
|
+
* GTM Variable Type.
|
|
1748
1760
|
*/
|
|
1749
1761
|
type?: string | null;
|
|
1750
1762
|
/**
|
|
@@ -1791,7 +1803,7 @@ export namespace tagmanager_v2 {
|
|
|
1791
1803
|
*/
|
|
1792
1804
|
containerId?: string | null;
|
|
1793
1805
|
/**
|
|
1794
|
-
* Workspace description.
|
|
1806
|
+
* Workspace description.
|
|
1795
1807
|
*/
|
|
1796
1808
|
description?: string | null;
|
|
1797
1809
|
/**
|
|
@@ -1799,7 +1811,7 @@ export namespace tagmanager_v2 {
|
|
|
1799
1811
|
*/
|
|
1800
1812
|
fingerprint?: string | null;
|
|
1801
1813
|
/**
|
|
1802
|
-
* Workspace display name.
|
|
1814
|
+
* Workspace display name.
|
|
1803
1815
|
*/
|
|
1804
1816
|
name?: string | null;
|
|
1805
1817
|
/**
|
|
@@ -2189,7 +2201,7 @@ export namespace tagmanager_v2 {
|
|
|
2189
2201
|
|
|
2190
2202
|
export interface Params$Resource$Accounts$Get extends StandardParameters {
|
|
2191
2203
|
/**
|
|
2192
|
-
* GTM Account's API relative path.
|
|
2204
|
+
* GTM Account's API relative path.
|
|
2193
2205
|
*/
|
|
2194
2206
|
path?: string;
|
|
2195
2207
|
}
|
|
@@ -2209,7 +2221,7 @@ export namespace tagmanager_v2 {
|
|
|
2209
2221
|
*/
|
|
2210
2222
|
fingerprint?: string;
|
|
2211
2223
|
/**
|
|
2212
|
-
* GTM Account's API relative path.
|
|
2224
|
+
* GTM Account's API relative path.
|
|
2213
2225
|
*/
|
|
2214
2226
|
path?: string;
|
|
2215
2227
|
|
|
@@ -3056,7 +3068,7 @@ export namespace tagmanager_v2 {
|
|
|
3056
3068
|
*/
|
|
3057
3069
|
containerId?: string;
|
|
3058
3070
|
/**
|
|
3059
|
-
* GTM Container's API relative path.
|
|
3071
|
+
* GTM Container's API relative path.
|
|
3060
3072
|
*/
|
|
3061
3073
|
path?: string;
|
|
3062
3074
|
/**
|
|
@@ -3067,7 +3079,7 @@ export namespace tagmanager_v2 {
|
|
|
3067
3079
|
export interface Params$Resource$Accounts$Containers$Create
|
|
3068
3080
|
extends StandardParameters {
|
|
3069
3081
|
/**
|
|
3070
|
-
* GTM Account's API relative path.
|
|
3082
|
+
* GTM Account's API relative path.
|
|
3071
3083
|
*/
|
|
3072
3084
|
parent?: string;
|
|
3073
3085
|
|
|
@@ -3079,14 +3091,14 @@ export namespace tagmanager_v2 {
|
|
|
3079
3091
|
export interface Params$Resource$Accounts$Containers$Delete
|
|
3080
3092
|
extends StandardParameters {
|
|
3081
3093
|
/**
|
|
3082
|
-
* GTM Container's API relative path.
|
|
3094
|
+
* GTM Container's API relative path.
|
|
3083
3095
|
*/
|
|
3084
3096
|
path?: string;
|
|
3085
3097
|
}
|
|
3086
3098
|
export interface Params$Resource$Accounts$Containers$Get
|
|
3087
3099
|
extends StandardParameters {
|
|
3088
3100
|
/**
|
|
3089
|
-
* GTM Container's API relative path.
|
|
3101
|
+
* GTM Container's API relative path.
|
|
3090
3102
|
*/
|
|
3091
3103
|
path?: string;
|
|
3092
3104
|
}
|
|
@@ -3097,18 +3109,18 @@ export namespace tagmanager_v2 {
|
|
|
3097
3109
|
*/
|
|
3098
3110
|
pageToken?: string;
|
|
3099
3111
|
/**
|
|
3100
|
-
* GTM Account's API relative path.
|
|
3112
|
+
* GTM Account's API relative path.
|
|
3101
3113
|
*/
|
|
3102
3114
|
parent?: string;
|
|
3103
3115
|
}
|
|
3104
3116
|
export interface Params$Resource$Accounts$Containers$Lookup
|
|
3105
3117
|
extends StandardParameters {
|
|
3106
3118
|
/**
|
|
3107
|
-
* 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.
|
|
3108
3120
|
*/
|
|
3109
3121
|
destinationId?: string;
|
|
3110
3122
|
/**
|
|
3111
|
-
* 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.
|
|
3112
3124
|
*/
|
|
3113
3125
|
tagId?: string;
|
|
3114
3126
|
}
|
|
@@ -3131,7 +3143,7 @@ export namespace tagmanager_v2 {
|
|
|
3131
3143
|
*/
|
|
3132
3144
|
copyUsers?: boolean;
|
|
3133
3145
|
/**
|
|
3134
|
-
* GTM Container's API relative path.
|
|
3146
|
+
* GTM Container's API relative path.
|
|
3135
3147
|
*/
|
|
3136
3148
|
path?: string;
|
|
3137
3149
|
/**
|
|
@@ -3146,7 +3158,7 @@ export namespace tagmanager_v2 {
|
|
|
3146
3158
|
export interface Params$Resource$Accounts$Containers$Snippet
|
|
3147
3159
|
extends StandardParameters {
|
|
3148
3160
|
/**
|
|
3149
|
-
* Container snippet's API relative path.
|
|
3161
|
+
* Container snippet's API relative path.
|
|
3150
3162
|
*/
|
|
3151
3163
|
path?: string;
|
|
3152
3164
|
}
|
|
@@ -3157,7 +3169,7 @@ export namespace tagmanager_v2 {
|
|
|
3157
3169
|
*/
|
|
3158
3170
|
fingerprint?: string;
|
|
3159
3171
|
/**
|
|
3160
|
-
* GTM Container's API relative path.
|
|
3172
|
+
* GTM Container's API relative path.
|
|
3161
3173
|
*/
|
|
3162
3174
|
path?: string;
|
|
3163
3175
|
|
|
@@ -3445,7 +3457,7 @@ export namespace tagmanager_v2 {
|
|
|
3445
3457
|
export interface Params$Resource$Accounts$Containers$Destinations$Get
|
|
3446
3458
|
extends StandardParameters {
|
|
3447
3459
|
/**
|
|
3448
|
-
* Google Tag Destination's API relative path.
|
|
3460
|
+
* Google Tag Destination's API relative path.
|
|
3449
3461
|
*/
|
|
3450
3462
|
path?: string;
|
|
3451
3463
|
}
|
|
@@ -3460,14 +3472,14 @@ export namespace tagmanager_v2 {
|
|
|
3460
3472
|
*/
|
|
3461
3473
|
destinationId?: string;
|
|
3462
3474
|
/**
|
|
3463
|
-
* GTM parent Container's API relative path.
|
|
3475
|
+
* GTM parent Container's API relative path.
|
|
3464
3476
|
*/
|
|
3465
3477
|
parent?: string;
|
|
3466
3478
|
}
|
|
3467
3479
|
export interface Params$Resource$Accounts$Containers$Destinations$List
|
|
3468
3480
|
extends StandardParameters {
|
|
3469
3481
|
/**
|
|
3470
|
-
* GTM parent Container's API relative path.
|
|
3482
|
+
* GTM parent Container's API relative path.
|
|
3471
3483
|
*/
|
|
3472
3484
|
parent?: string;
|
|
3473
3485
|
}
|
|
@@ -4014,7 +4026,7 @@ export namespace tagmanager_v2 {
|
|
|
4014
4026
|
export interface Params$Resource$Accounts$Containers$Environments$Create
|
|
4015
4027
|
extends StandardParameters {
|
|
4016
4028
|
/**
|
|
4017
|
-
* GTM Container's API relative path.
|
|
4029
|
+
* GTM Container's API relative path.
|
|
4018
4030
|
*/
|
|
4019
4031
|
parent?: string;
|
|
4020
4032
|
|
|
@@ -4026,14 +4038,14 @@ export namespace tagmanager_v2 {
|
|
|
4026
4038
|
export interface Params$Resource$Accounts$Containers$Environments$Delete
|
|
4027
4039
|
extends StandardParameters {
|
|
4028
4040
|
/**
|
|
4029
|
-
* GTM Environment's API relative path.
|
|
4041
|
+
* GTM Environment's API relative path.
|
|
4030
4042
|
*/
|
|
4031
4043
|
path?: string;
|
|
4032
4044
|
}
|
|
4033
4045
|
export interface Params$Resource$Accounts$Containers$Environments$Get
|
|
4034
4046
|
extends StandardParameters {
|
|
4035
4047
|
/**
|
|
4036
|
-
* GTM Environment's API relative path.
|
|
4048
|
+
* GTM Environment's API relative path.
|
|
4037
4049
|
*/
|
|
4038
4050
|
path?: string;
|
|
4039
4051
|
}
|
|
@@ -4044,14 +4056,14 @@ export namespace tagmanager_v2 {
|
|
|
4044
4056
|
*/
|
|
4045
4057
|
pageToken?: string;
|
|
4046
4058
|
/**
|
|
4047
|
-
* GTM Container's API relative path.
|
|
4059
|
+
* GTM Container's API relative path.
|
|
4048
4060
|
*/
|
|
4049
4061
|
parent?: string;
|
|
4050
4062
|
}
|
|
4051
4063
|
export interface Params$Resource$Accounts$Containers$Environments$Reauthorize
|
|
4052
4064
|
extends StandardParameters {
|
|
4053
4065
|
/**
|
|
4054
|
-
* GTM Environment's API relative path.
|
|
4066
|
+
* GTM Environment's API relative path.
|
|
4055
4067
|
*/
|
|
4056
4068
|
path?: string;
|
|
4057
4069
|
|
|
@@ -4067,7 +4079,7 @@ export namespace tagmanager_v2 {
|
|
|
4067
4079
|
*/
|
|
4068
4080
|
fingerprint?: string;
|
|
4069
4081
|
/**
|
|
4070
|
-
* GTM Environment's API relative path.
|
|
4082
|
+
* GTM Environment's API relative path.
|
|
4071
4083
|
*/
|
|
4072
4084
|
path?: string;
|
|
4073
4085
|
|
|
@@ -4710,7 +4722,7 @@ export namespace tagmanager_v2 {
|
|
|
4710
4722
|
export interface Params$Resource$Accounts$Containers$Versions$Delete
|
|
4711
4723
|
extends StandardParameters {
|
|
4712
4724
|
/**
|
|
4713
|
-
* GTM ContainerVersion's API relative path.
|
|
4725
|
+
* GTM ContainerVersion's API relative path.
|
|
4714
4726
|
*/
|
|
4715
4727
|
path?: string;
|
|
4716
4728
|
}
|
|
@@ -4721,14 +4733,14 @@ export namespace tagmanager_v2 {
|
|
|
4721
4733
|
*/
|
|
4722
4734
|
containerVersionId?: string;
|
|
4723
4735
|
/**
|
|
4724
|
-
* GTM ContainerVersion's API relative path.
|
|
4736
|
+
* GTM ContainerVersion's API relative path.
|
|
4725
4737
|
*/
|
|
4726
4738
|
path?: string;
|
|
4727
4739
|
}
|
|
4728
4740
|
export interface Params$Resource$Accounts$Containers$Versions$Live
|
|
4729
4741
|
extends StandardParameters {
|
|
4730
4742
|
/**
|
|
4731
|
-
* GTM Container's API relative path.
|
|
4743
|
+
* GTM Container's API relative path.
|
|
4732
4744
|
*/
|
|
4733
4745
|
parent?: string;
|
|
4734
4746
|
}
|
|
@@ -4739,21 +4751,21 @@ export namespace tagmanager_v2 {
|
|
|
4739
4751
|
*/
|
|
4740
4752
|
fingerprint?: string;
|
|
4741
4753
|
/**
|
|
4742
|
-
* GTM ContainerVersion's API relative path.
|
|
4754
|
+
* GTM ContainerVersion's API relative path.
|
|
4743
4755
|
*/
|
|
4744
4756
|
path?: string;
|
|
4745
4757
|
}
|
|
4746
4758
|
export interface Params$Resource$Accounts$Containers$Versions$Set_latest
|
|
4747
4759
|
extends StandardParameters {
|
|
4748
4760
|
/**
|
|
4749
|
-
* GTM ContainerVersion's API relative path.
|
|
4761
|
+
* GTM ContainerVersion's API relative path.
|
|
4750
4762
|
*/
|
|
4751
4763
|
path?: string;
|
|
4752
4764
|
}
|
|
4753
4765
|
export interface Params$Resource$Accounts$Containers$Versions$Undelete
|
|
4754
4766
|
extends StandardParameters {
|
|
4755
4767
|
/**
|
|
4756
|
-
* GTM ContainerVersion's API relative path.
|
|
4768
|
+
* GTM ContainerVersion's API relative path.
|
|
4757
4769
|
*/
|
|
4758
4770
|
path?: string;
|
|
4759
4771
|
}
|
|
@@ -4764,7 +4776,7 @@ export namespace tagmanager_v2 {
|
|
|
4764
4776
|
*/
|
|
4765
4777
|
fingerprint?: string;
|
|
4766
4778
|
/**
|
|
4767
|
-
* GTM ContainerVersion's API relative path.
|
|
4779
|
+
* GTM ContainerVersion's API relative path.
|
|
4768
4780
|
*/
|
|
4769
4781
|
path?: string;
|
|
4770
4782
|
|
|
@@ -4974,7 +4986,7 @@ export namespace tagmanager_v2 {
|
|
|
4974
4986
|
export interface Params$Resource$Accounts$Containers$Version_headers$Latest
|
|
4975
4987
|
extends StandardParameters {
|
|
4976
4988
|
/**
|
|
4977
|
-
* GTM Container's API relative path.
|
|
4989
|
+
* GTM Container's API relative path.
|
|
4978
4990
|
*/
|
|
4979
4991
|
parent?: string;
|
|
4980
4992
|
}
|
|
@@ -4989,7 +5001,7 @@ export namespace tagmanager_v2 {
|
|
|
4989
5001
|
*/
|
|
4990
5002
|
pageToken?: string;
|
|
4991
5003
|
/**
|
|
4992
|
-
* GTM Container's API relative path.
|
|
5004
|
+
* GTM Container's API relative path.
|
|
4993
5005
|
*/
|
|
4994
5006
|
parent?: string;
|
|
4995
5007
|
}
|
|
@@ -5957,7 +5969,7 @@ export namespace tagmanager_v2 {
|
|
|
5957
5969
|
export interface Params$Resource$Accounts$Containers$Workspaces$Create
|
|
5958
5970
|
extends StandardParameters {
|
|
5959
5971
|
/**
|
|
5960
|
-
* GTM parent Container's API relative path.
|
|
5972
|
+
* GTM parent Container's API relative path.
|
|
5961
5973
|
*/
|
|
5962
5974
|
parent?: string;
|
|
5963
5975
|
|
|
@@ -5969,7 +5981,7 @@ export namespace tagmanager_v2 {
|
|
|
5969
5981
|
export interface Params$Resource$Accounts$Containers$Workspaces$Create_version
|
|
5970
5982
|
extends StandardParameters {
|
|
5971
5983
|
/**
|
|
5972
|
-
* GTM Workspace's API relative path.
|
|
5984
|
+
* GTM Workspace's API relative path.
|
|
5973
5985
|
*/
|
|
5974
5986
|
path?: string;
|
|
5975
5987
|
|
|
@@ -5981,21 +5993,21 @@ export namespace tagmanager_v2 {
|
|
|
5981
5993
|
export interface Params$Resource$Accounts$Containers$Workspaces$Delete
|
|
5982
5994
|
extends StandardParameters {
|
|
5983
5995
|
/**
|
|
5984
|
-
* GTM Workspace's API relative path.
|
|
5996
|
+
* GTM Workspace's API relative path.
|
|
5985
5997
|
*/
|
|
5986
5998
|
path?: string;
|
|
5987
5999
|
}
|
|
5988
6000
|
export interface Params$Resource$Accounts$Containers$Workspaces$Get
|
|
5989
6001
|
extends StandardParameters {
|
|
5990
6002
|
/**
|
|
5991
|
-
* GTM Workspace's API relative path.
|
|
6003
|
+
* GTM Workspace's API relative path.
|
|
5992
6004
|
*/
|
|
5993
6005
|
path?: string;
|
|
5994
6006
|
}
|
|
5995
6007
|
export interface Params$Resource$Accounts$Containers$Workspaces$Getstatus
|
|
5996
6008
|
extends StandardParameters {
|
|
5997
6009
|
/**
|
|
5998
|
-
* GTM Workspace's API relative path.
|
|
6010
|
+
* GTM Workspace's API relative path.
|
|
5999
6011
|
*/
|
|
6000
6012
|
path?: string;
|
|
6001
6013
|
}
|
|
@@ -6006,14 +6018,14 @@ export namespace tagmanager_v2 {
|
|
|
6006
6018
|
*/
|
|
6007
6019
|
pageToken?: string;
|
|
6008
6020
|
/**
|
|
6009
|
-
* GTM parent Container's API relative path.
|
|
6021
|
+
* GTM parent Container's API relative path.
|
|
6010
6022
|
*/
|
|
6011
6023
|
parent?: string;
|
|
6012
6024
|
}
|
|
6013
6025
|
export interface Params$Resource$Accounts$Containers$Workspaces$Quick_preview
|
|
6014
6026
|
extends StandardParameters {
|
|
6015
6027
|
/**
|
|
6016
|
-
* GTM Workspace's API relative path.
|
|
6028
|
+
* GTM Workspace's API relative path.
|
|
6017
6029
|
*/
|
|
6018
6030
|
path?: string;
|
|
6019
6031
|
}
|
|
@@ -6024,7 +6036,7 @@ export namespace tagmanager_v2 {
|
|
|
6024
6036
|
*/
|
|
6025
6037
|
fingerprint?: string;
|
|
6026
6038
|
/**
|
|
6027
|
-
* GTM Workspace's API relative path.
|
|
6039
|
+
* GTM Workspace's API relative path.
|
|
6028
6040
|
*/
|
|
6029
6041
|
path?: string;
|
|
6030
6042
|
|
|
@@ -6036,7 +6048,7 @@ export namespace tagmanager_v2 {
|
|
|
6036
6048
|
export interface Params$Resource$Accounts$Containers$Workspaces$Sync
|
|
6037
6049
|
extends StandardParameters {
|
|
6038
6050
|
/**
|
|
6039
|
-
* GTM Workspace's API relative path.
|
|
6051
|
+
* GTM Workspace's API relative path.
|
|
6040
6052
|
*/
|
|
6041
6053
|
path?: string;
|
|
6042
6054
|
}
|
|
@@ -6047,7 +6059,7 @@ export namespace tagmanager_v2 {
|
|
|
6047
6059
|
*/
|
|
6048
6060
|
fingerprint?: string;
|
|
6049
6061
|
/**
|
|
6050
|
-
* GTM Workspace's API relative path.
|
|
6062
|
+
* GTM Workspace's API relative path.
|
|
6051
6063
|
*/
|
|
6052
6064
|
path?: string;
|
|
6053
6065
|
|
|
@@ -6445,7 +6457,7 @@ export namespace tagmanager_v2 {
|
|
|
6445
6457
|
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create
|
|
6446
6458
|
extends StandardParameters {
|
|
6447
6459
|
/**
|
|
6448
|
-
* GTM Workspace's API relative path.
|
|
6460
|
+
* GTM Workspace's API relative path.
|
|
6449
6461
|
*/
|
|
6450
6462
|
parent?: string;
|
|
6451
6463
|
/**
|
|
@@ -6456,7 +6468,7 @@ export namespace tagmanager_v2 {
|
|
|
6456
6468
|
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete
|
|
6457
6469
|
extends StandardParameters {
|
|
6458
6470
|
/**
|
|
6459
|
-
* GTM BuiltInVariable's API relative path.
|
|
6471
|
+
* GTM BuiltInVariable's API relative path.
|
|
6460
6472
|
*/
|
|
6461
6473
|
path?: string;
|
|
6462
6474
|
/**
|
|
@@ -6471,14 +6483,14 @@ export namespace tagmanager_v2 {
|
|
|
6471
6483
|
*/
|
|
6472
6484
|
pageToken?: string;
|
|
6473
6485
|
/**
|
|
6474
|
-
* GTM Workspace's API relative path.
|
|
6486
|
+
* GTM Workspace's API relative path.
|
|
6475
6487
|
*/
|
|
6476
6488
|
parent?: string;
|
|
6477
6489
|
}
|
|
6478
6490
|
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert
|
|
6479
6491
|
extends StandardParameters {
|
|
6480
6492
|
/**
|
|
6481
|
-
* GTM BuiltInVariable's API relative path.
|
|
6493
|
+
* GTM BuiltInVariable's API relative path.
|
|
6482
6494
|
*/
|
|
6483
6495
|
path?: string;
|
|
6484
6496
|
/**
|
|
@@ -7037,7 +7049,7 @@ export namespace tagmanager_v2 {
|
|
|
7037
7049
|
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Create
|
|
7038
7050
|
extends StandardParameters {
|
|
7039
7051
|
/**
|
|
7040
|
-
* GTM Workspace's API relative path.
|
|
7052
|
+
* GTM Workspace's API relative path.
|
|
7041
7053
|
*/
|
|
7042
7054
|
parent?: string;
|
|
7043
7055
|
|
|
@@ -7049,14 +7061,14 @@ export namespace tagmanager_v2 {
|
|
|
7049
7061
|
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Delete
|
|
7050
7062
|
extends StandardParameters {
|
|
7051
7063
|
/**
|
|
7052
|
-
* GTM Client's API relative path.
|
|
7064
|
+
* GTM Client's API relative path.
|
|
7053
7065
|
*/
|
|
7054
7066
|
path?: string;
|
|
7055
7067
|
}
|
|
7056
7068
|
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Get
|
|
7057
7069
|
extends StandardParameters {
|
|
7058
7070
|
/**
|
|
7059
|
-
* GTM Client's API relative path.
|
|
7071
|
+
* GTM Client's API relative path.
|
|
7060
7072
|
*/
|
|
7061
7073
|
path?: string;
|
|
7062
7074
|
}
|
|
@@ -7067,7 +7079,7 @@ export namespace tagmanager_v2 {
|
|
|
7067
7079
|
*/
|
|
7068
7080
|
pageToken?: string;
|
|
7069
7081
|
/**
|
|
7070
|
-
* GTM Workspace's API relative path.
|
|
7082
|
+
* GTM Workspace's API relative path.
|
|
7071
7083
|
*/
|
|
7072
7084
|
parent?: string;
|
|
7073
7085
|
}
|
|
@@ -7078,7 +7090,7 @@ export namespace tagmanager_v2 {
|
|
|
7078
7090
|
*/
|
|
7079
7091
|
fingerprint?: string;
|
|
7080
7092
|
/**
|
|
7081
|
-
* GTM Client's API relative path.
|
|
7093
|
+
* GTM Client's API relative path.
|
|
7082
7094
|
*/
|
|
7083
7095
|
path?: string;
|
|
7084
7096
|
}
|
|
@@ -7089,7 +7101,7 @@ export namespace tagmanager_v2 {
|
|
|
7089
7101
|
*/
|
|
7090
7102
|
fingerprint?: string;
|
|
7091
7103
|
/**
|
|
7092
|
-
* GTM Client's API relative path.
|
|
7104
|
+
* GTM Client's API relative path.
|
|
7093
7105
|
*/
|
|
7094
7106
|
path?: string;
|
|
7095
7107
|
|
|
@@ -7824,7 +7836,7 @@ export namespace tagmanager_v2 {
|
|
|
7824
7836
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Create
|
|
7825
7837
|
extends StandardParameters {
|
|
7826
7838
|
/**
|
|
7827
|
-
* GTM Workspace's API relative path.
|
|
7839
|
+
* GTM Workspace's API relative path.
|
|
7828
7840
|
*/
|
|
7829
7841
|
parent?: string;
|
|
7830
7842
|
|
|
@@ -7836,7 +7848,7 @@ export namespace tagmanager_v2 {
|
|
|
7836
7848
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Delete
|
|
7837
7849
|
extends StandardParameters {
|
|
7838
7850
|
/**
|
|
7839
|
-
* GTM Folder's API relative path.
|
|
7851
|
+
* GTM Folder's API relative path.
|
|
7840
7852
|
*/
|
|
7841
7853
|
path?: string;
|
|
7842
7854
|
}
|
|
@@ -7847,14 +7859,14 @@ export namespace tagmanager_v2 {
|
|
|
7847
7859
|
*/
|
|
7848
7860
|
pageToken?: string;
|
|
7849
7861
|
/**
|
|
7850
|
-
* GTM Folder's API relative path.
|
|
7862
|
+
* GTM Folder's API relative path.
|
|
7851
7863
|
*/
|
|
7852
7864
|
path?: string;
|
|
7853
7865
|
}
|
|
7854
7866
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Get
|
|
7855
7867
|
extends StandardParameters {
|
|
7856
7868
|
/**
|
|
7857
|
-
* GTM Folder's API relative path.
|
|
7869
|
+
* GTM Folder's API relative path.
|
|
7858
7870
|
*/
|
|
7859
7871
|
path?: string;
|
|
7860
7872
|
}
|
|
@@ -7865,14 +7877,14 @@ export namespace tagmanager_v2 {
|
|
|
7865
7877
|
*/
|
|
7866
7878
|
pageToken?: string;
|
|
7867
7879
|
/**
|
|
7868
|
-
* GTM Workspace's API relative path.
|
|
7880
|
+
* GTM Workspace's API relative path.
|
|
7869
7881
|
*/
|
|
7870
7882
|
parent?: string;
|
|
7871
7883
|
}
|
|
7872
7884
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder
|
|
7873
7885
|
extends StandardParameters {
|
|
7874
7886
|
/**
|
|
7875
|
-
* GTM Folder's API relative path.
|
|
7887
|
+
* GTM Folder's API relative path.
|
|
7876
7888
|
*/
|
|
7877
7889
|
path?: string;
|
|
7878
7890
|
/**
|
|
@@ -7900,7 +7912,7 @@ export namespace tagmanager_v2 {
|
|
|
7900
7912
|
*/
|
|
7901
7913
|
fingerprint?: string;
|
|
7902
7914
|
/**
|
|
7903
|
-
* GTM Folder's API relative path.
|
|
7915
|
+
* GTM Folder's API relative path.
|
|
7904
7916
|
*/
|
|
7905
7917
|
path?: string;
|
|
7906
7918
|
}
|
|
@@ -7911,7 +7923,7 @@ export namespace tagmanager_v2 {
|
|
|
7911
7923
|
*/
|
|
7912
7924
|
fingerprint?: string;
|
|
7913
7925
|
/**
|
|
7914
|
-
* GTM Folder's API relative path.
|
|
7926
|
+
* GTM Folder's API relative path.
|
|
7915
7927
|
*/
|
|
7916
7928
|
path?: string;
|
|
7917
7929
|
|
|
@@ -8379,7 +8391,7 @@ export namespace tagmanager_v2 {
|
|
|
8379
8391
|
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create
|
|
8380
8392
|
extends StandardParameters {
|
|
8381
8393
|
/**
|
|
8382
|
-
* Workspace's API relative path.
|
|
8394
|
+
* Workspace's API relative path.
|
|
8383
8395
|
*/
|
|
8384
8396
|
parent?: string;
|
|
8385
8397
|
|
|
@@ -8391,14 +8403,14 @@ export namespace tagmanager_v2 {
|
|
|
8391
8403
|
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete
|
|
8392
8404
|
extends StandardParameters {
|
|
8393
8405
|
/**
|
|
8394
|
-
* Google tag config's API relative path.
|
|
8406
|
+
* Google tag config's API relative path.
|
|
8395
8407
|
*/
|
|
8396
8408
|
path?: string;
|
|
8397
8409
|
}
|
|
8398
8410
|
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get
|
|
8399
8411
|
extends StandardParameters {
|
|
8400
8412
|
/**
|
|
8401
|
-
* Google tag config's API relative path.
|
|
8413
|
+
* Google tag config's API relative path.
|
|
8402
8414
|
*/
|
|
8403
8415
|
path?: string;
|
|
8404
8416
|
}
|
|
@@ -8409,7 +8421,7 @@ export namespace tagmanager_v2 {
|
|
|
8409
8421
|
*/
|
|
8410
8422
|
pageToken?: string;
|
|
8411
8423
|
/**
|
|
8412
|
-
* Workspace's API relative path.
|
|
8424
|
+
* Workspace's API relative path.
|
|
8413
8425
|
*/
|
|
8414
8426
|
parent?: string;
|
|
8415
8427
|
}
|
|
@@ -8420,7 +8432,7 @@ export namespace tagmanager_v2 {
|
|
|
8420
8432
|
*/
|
|
8421
8433
|
fingerprint?: string;
|
|
8422
8434
|
/**
|
|
8423
|
-
* Google tag config's API relative path.
|
|
8435
|
+
* Google tag config's API relative path.
|
|
8424
8436
|
*/
|
|
8425
8437
|
path?: string;
|
|
8426
8438
|
|
|
@@ -8973,7 +8985,7 @@ export namespace tagmanager_v2 {
|
|
|
8973
8985
|
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Create
|
|
8974
8986
|
extends StandardParameters {
|
|
8975
8987
|
/**
|
|
8976
|
-
* GTM Workspace's API relative path.
|
|
8988
|
+
* GTM Workspace's API relative path.
|
|
8977
8989
|
*/
|
|
8978
8990
|
parent?: string;
|
|
8979
8991
|
|
|
@@ -8985,14 +8997,14 @@ export namespace tagmanager_v2 {
|
|
|
8985
8997
|
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Delete
|
|
8986
8998
|
extends StandardParameters {
|
|
8987
8999
|
/**
|
|
8988
|
-
* GTM Tag's API relative path.
|
|
9000
|
+
* GTM Tag's API relative path.
|
|
8989
9001
|
*/
|
|
8990
9002
|
path?: string;
|
|
8991
9003
|
}
|
|
8992
9004
|
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Get
|
|
8993
9005
|
extends StandardParameters {
|
|
8994
9006
|
/**
|
|
8995
|
-
* GTM Tag's API relative path.
|
|
9007
|
+
* GTM Tag's API relative path.
|
|
8996
9008
|
*/
|
|
8997
9009
|
path?: string;
|
|
8998
9010
|
}
|
|
@@ -9003,7 +9015,7 @@ export namespace tagmanager_v2 {
|
|
|
9003
9015
|
*/
|
|
9004
9016
|
pageToken?: string;
|
|
9005
9017
|
/**
|
|
9006
|
-
* GTM Workspace's API relative path.
|
|
9018
|
+
* GTM Workspace's API relative path.
|
|
9007
9019
|
*/
|
|
9008
9020
|
parent?: string;
|
|
9009
9021
|
}
|
|
@@ -9014,7 +9026,7 @@ export namespace tagmanager_v2 {
|
|
|
9014
9026
|
*/
|
|
9015
9027
|
fingerprint?: string;
|
|
9016
9028
|
/**
|
|
9017
|
-
* GTM Tag's API relative path.
|
|
9029
|
+
* GTM Tag's API relative path.
|
|
9018
9030
|
*/
|
|
9019
9031
|
path?: string;
|
|
9020
9032
|
}
|
|
@@ -9025,7 +9037,7 @@ export namespace tagmanager_v2 {
|
|
|
9025
9037
|
*/
|
|
9026
9038
|
fingerprint?: string;
|
|
9027
9039
|
/**
|
|
9028
|
-
* GTM Tag's API relative path.
|
|
9040
|
+
* GTM Tag's API relative path.
|
|
9029
9041
|
*/
|
|
9030
9042
|
path?: string;
|
|
9031
9043
|
|
|
@@ -9306,6 +9318,96 @@ export namespace tagmanager_v2 {
|
|
|
9306
9318
|
}
|
|
9307
9319
|
}
|
|
9308
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
|
+
|
|
9309
9411
|
/**
|
|
9310
9412
|
* Lists all GTM Templates of a GTM container workspace.
|
|
9311
9413
|
*
|
|
@@ -9587,7 +9689,7 @@ export namespace tagmanager_v2 {
|
|
|
9587
9689
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Create
|
|
9588
9690
|
extends StandardParameters {
|
|
9589
9691
|
/**
|
|
9590
|
-
* GTM Workspace's API relative path.
|
|
9692
|
+
* GTM Workspace's API relative path.
|
|
9591
9693
|
*/
|
|
9592
9694
|
parent?: string;
|
|
9593
9695
|
|
|
@@ -9599,17 +9701,40 @@ export namespace tagmanager_v2 {
|
|
|
9599
9701
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Delete
|
|
9600
9702
|
extends StandardParameters {
|
|
9601
9703
|
/**
|
|
9602
|
-
* GTM Custom Template's API relative path.
|
|
9704
|
+
* GTM Custom Template's API relative path.
|
|
9603
9705
|
*/
|
|
9604
9706
|
path?: string;
|
|
9605
9707
|
}
|
|
9606
9708
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Get
|
|
9607
9709
|
extends StandardParameters {
|
|
9608
9710
|
/**
|
|
9609
|
-
* GTM Custom Template's API relative path.
|
|
9711
|
+
* GTM Custom Template's API relative path.
|
|
9610
9712
|
*/
|
|
9611
9713
|
path?: string;
|
|
9612
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
|
+
}
|
|
9613
9738
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$List
|
|
9614
9739
|
extends StandardParameters {
|
|
9615
9740
|
/**
|
|
@@ -9617,7 +9742,7 @@ export namespace tagmanager_v2 {
|
|
|
9617
9742
|
*/
|
|
9618
9743
|
pageToken?: string;
|
|
9619
9744
|
/**
|
|
9620
|
-
* GTM Workspace's API relative path.
|
|
9745
|
+
* GTM Workspace's API relative path.
|
|
9621
9746
|
*/
|
|
9622
9747
|
parent?: string;
|
|
9623
9748
|
}
|
|
@@ -9628,7 +9753,7 @@ export namespace tagmanager_v2 {
|
|
|
9628
9753
|
*/
|
|
9629
9754
|
fingerprint?: string;
|
|
9630
9755
|
/**
|
|
9631
|
-
* GTM Custom Template's API relative path.
|
|
9756
|
+
* GTM Custom Template's API relative path.
|
|
9632
9757
|
*/
|
|
9633
9758
|
path?: string;
|
|
9634
9759
|
}
|
|
@@ -9639,7 +9764,7 @@ export namespace tagmanager_v2 {
|
|
|
9639
9764
|
*/
|
|
9640
9765
|
fingerprint?: string;
|
|
9641
9766
|
/**
|
|
9642
|
-
* GTM Custom Template's API relative path.
|
|
9767
|
+
* GTM Custom Template's API relative path.
|
|
9643
9768
|
*/
|
|
9644
9769
|
path?: string;
|
|
9645
9770
|
|
|
@@ -10207,7 +10332,7 @@ export namespace tagmanager_v2 {
|
|
|
10207
10332
|
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Create
|
|
10208
10333
|
extends StandardParameters {
|
|
10209
10334
|
/**
|
|
10210
|
-
* GTM Workspace's API relative path.
|
|
10335
|
+
* GTM Workspace's API relative path.
|
|
10211
10336
|
*/
|
|
10212
10337
|
parent?: string;
|
|
10213
10338
|
|
|
@@ -10219,14 +10344,14 @@ export namespace tagmanager_v2 {
|
|
|
10219
10344
|
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete
|
|
10220
10345
|
extends StandardParameters {
|
|
10221
10346
|
/**
|
|
10222
|
-
* GTM Transformation's API relative path.
|
|
10347
|
+
* GTM Transformation's API relative path.
|
|
10223
10348
|
*/
|
|
10224
10349
|
path?: string;
|
|
10225
10350
|
}
|
|
10226
10351
|
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Get
|
|
10227
10352
|
extends StandardParameters {
|
|
10228
10353
|
/**
|
|
10229
|
-
* GTM Transformation's API relative path.
|
|
10354
|
+
* GTM Transformation's API relative path.
|
|
10230
10355
|
*/
|
|
10231
10356
|
path?: string;
|
|
10232
10357
|
}
|
|
@@ -10237,7 +10362,7 @@ export namespace tagmanager_v2 {
|
|
|
10237
10362
|
*/
|
|
10238
10363
|
pageToken?: string;
|
|
10239
10364
|
/**
|
|
10240
|
-
* GTM Workspace's API relative path.
|
|
10365
|
+
* GTM Workspace's API relative path.
|
|
10241
10366
|
*/
|
|
10242
10367
|
parent?: string;
|
|
10243
10368
|
}
|
|
@@ -10248,7 +10373,7 @@ export namespace tagmanager_v2 {
|
|
|
10248
10373
|
*/
|
|
10249
10374
|
fingerprint?: string;
|
|
10250
10375
|
/**
|
|
10251
|
-
* GTM Transformation's API relative path.
|
|
10376
|
+
* GTM Transformation's API relative path.
|
|
10252
10377
|
*/
|
|
10253
10378
|
path?: string;
|
|
10254
10379
|
}
|
|
@@ -10259,7 +10384,7 @@ export namespace tagmanager_v2 {
|
|
|
10259
10384
|
*/
|
|
10260
10385
|
fingerprint?: string;
|
|
10261
10386
|
/**
|
|
10262
|
-
* GTM Transformation's API relative path.
|
|
10387
|
+
* GTM Transformation's API relative path.
|
|
10263
10388
|
*/
|
|
10264
10389
|
path?: string;
|
|
10265
10390
|
|
|
@@ -10821,7 +10946,7 @@ export namespace tagmanager_v2 {
|
|
|
10821
10946
|
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Create
|
|
10822
10947
|
extends StandardParameters {
|
|
10823
10948
|
/**
|
|
10824
|
-
* GTM Workspace's API relative path.
|
|
10949
|
+
* GTM Workspace's API relative path.
|
|
10825
10950
|
*/
|
|
10826
10951
|
parent?: string;
|
|
10827
10952
|
|
|
@@ -10833,14 +10958,14 @@ export namespace tagmanager_v2 {
|
|
|
10833
10958
|
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete
|
|
10834
10959
|
extends StandardParameters {
|
|
10835
10960
|
/**
|
|
10836
|
-
* GTM Trigger's API relative path.
|
|
10961
|
+
* GTM Trigger's API relative path.
|
|
10837
10962
|
*/
|
|
10838
10963
|
path?: string;
|
|
10839
10964
|
}
|
|
10840
10965
|
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Get
|
|
10841
10966
|
extends StandardParameters {
|
|
10842
10967
|
/**
|
|
10843
|
-
* GTM Trigger's API relative path.
|
|
10968
|
+
* GTM Trigger's API relative path.
|
|
10844
10969
|
*/
|
|
10845
10970
|
path?: string;
|
|
10846
10971
|
}
|
|
@@ -10851,7 +10976,7 @@ export namespace tagmanager_v2 {
|
|
|
10851
10976
|
*/
|
|
10852
10977
|
pageToken?: string;
|
|
10853
10978
|
/**
|
|
10854
|
-
* GTM Workspace's API relative path.
|
|
10979
|
+
* GTM Workspace's API relative path.
|
|
10855
10980
|
*/
|
|
10856
10981
|
parent?: string;
|
|
10857
10982
|
}
|
|
@@ -10862,7 +10987,7 @@ export namespace tagmanager_v2 {
|
|
|
10862
10987
|
*/
|
|
10863
10988
|
fingerprint?: string;
|
|
10864
10989
|
/**
|
|
10865
|
-
* GTM Trigger's API relative path.
|
|
10990
|
+
* GTM Trigger's API relative path.
|
|
10866
10991
|
*/
|
|
10867
10992
|
path?: string;
|
|
10868
10993
|
}
|
|
@@ -10873,7 +10998,7 @@ export namespace tagmanager_v2 {
|
|
|
10873
10998
|
*/
|
|
10874
10999
|
fingerprint?: string;
|
|
10875
11000
|
/**
|
|
10876
|
-
* GTM Trigger's API relative path.
|
|
11001
|
+
* GTM Trigger's API relative path.
|
|
10877
11002
|
*/
|
|
10878
11003
|
path?: string;
|
|
10879
11004
|
|
|
@@ -11435,7 +11560,7 @@ export namespace tagmanager_v2 {
|
|
|
11435
11560
|
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Create
|
|
11436
11561
|
extends StandardParameters {
|
|
11437
11562
|
/**
|
|
11438
|
-
* GTM Workspace's API relative path.
|
|
11563
|
+
* GTM Workspace's API relative path.
|
|
11439
11564
|
*/
|
|
11440
11565
|
parent?: string;
|
|
11441
11566
|
|
|
@@ -11447,14 +11572,14 @@ export namespace tagmanager_v2 {
|
|
|
11447
11572
|
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Delete
|
|
11448
11573
|
extends StandardParameters {
|
|
11449
11574
|
/**
|
|
11450
|
-
* GTM Variable's API relative path.
|
|
11575
|
+
* GTM Variable's API relative path.
|
|
11451
11576
|
*/
|
|
11452
11577
|
path?: string;
|
|
11453
11578
|
}
|
|
11454
11579
|
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Get
|
|
11455
11580
|
extends StandardParameters {
|
|
11456
11581
|
/**
|
|
11457
|
-
* GTM Variable's API relative path.
|
|
11582
|
+
* GTM Variable's API relative path.
|
|
11458
11583
|
*/
|
|
11459
11584
|
path?: string;
|
|
11460
11585
|
}
|
|
@@ -11465,7 +11590,7 @@ export namespace tagmanager_v2 {
|
|
|
11465
11590
|
*/
|
|
11466
11591
|
pageToken?: string;
|
|
11467
11592
|
/**
|
|
11468
|
-
* GTM Workspace's API relative path.
|
|
11593
|
+
* GTM Workspace's API relative path.
|
|
11469
11594
|
*/
|
|
11470
11595
|
parent?: string;
|
|
11471
11596
|
}
|
|
@@ -11476,7 +11601,7 @@ export namespace tagmanager_v2 {
|
|
|
11476
11601
|
*/
|
|
11477
11602
|
fingerprint?: string;
|
|
11478
11603
|
/**
|
|
11479
|
-
* GTM Variable's API relative path.
|
|
11604
|
+
* GTM Variable's API relative path.
|
|
11480
11605
|
*/
|
|
11481
11606
|
path?: string;
|
|
11482
11607
|
}
|
|
@@ -11487,7 +11612,7 @@ export namespace tagmanager_v2 {
|
|
|
11487
11612
|
*/
|
|
11488
11613
|
fingerprint?: string;
|
|
11489
11614
|
/**
|
|
11490
|
-
* GTM Variable's API relative path.
|
|
11615
|
+
* GTM Variable's API relative path.
|
|
11491
11616
|
*/
|
|
11492
11617
|
path?: string;
|
|
11493
11618
|
|
|
@@ -12044,7 +12169,7 @@ export namespace tagmanager_v2 {
|
|
|
12044
12169
|
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Create
|
|
12045
12170
|
extends StandardParameters {
|
|
12046
12171
|
/**
|
|
12047
|
-
* GTM Workspace's API relative path.
|
|
12172
|
+
* GTM Workspace's API relative path.
|
|
12048
12173
|
*/
|
|
12049
12174
|
parent?: string;
|
|
12050
12175
|
|
|
@@ -12056,14 +12181,14 @@ export namespace tagmanager_v2 {
|
|
|
12056
12181
|
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Delete
|
|
12057
12182
|
extends StandardParameters {
|
|
12058
12183
|
/**
|
|
12059
|
-
* GTM Zone's API relative path.
|
|
12184
|
+
* GTM Zone's API relative path.
|
|
12060
12185
|
*/
|
|
12061
12186
|
path?: string;
|
|
12062
12187
|
}
|
|
12063
12188
|
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Get
|
|
12064
12189
|
extends StandardParameters {
|
|
12065
12190
|
/**
|
|
12066
|
-
* GTM Zone's API relative path.
|
|
12191
|
+
* GTM Zone's API relative path.
|
|
12067
12192
|
*/
|
|
12068
12193
|
path?: string;
|
|
12069
12194
|
}
|
|
@@ -12074,7 +12199,7 @@ export namespace tagmanager_v2 {
|
|
|
12074
12199
|
*/
|
|
12075
12200
|
pageToken?: string;
|
|
12076
12201
|
/**
|
|
12077
|
-
* GTM Workspace's API relative path.
|
|
12202
|
+
* GTM Workspace's API relative path.
|
|
12078
12203
|
*/
|
|
12079
12204
|
parent?: string;
|
|
12080
12205
|
}
|
|
@@ -12085,7 +12210,7 @@ export namespace tagmanager_v2 {
|
|
|
12085
12210
|
*/
|
|
12086
12211
|
fingerprint?: string;
|
|
12087
12212
|
/**
|
|
12088
|
-
* GTM Zone's API relative path.
|
|
12213
|
+
* GTM Zone's API relative path.
|
|
12089
12214
|
*/
|
|
12090
12215
|
path?: string;
|
|
12091
12216
|
}
|
|
@@ -12096,7 +12221,7 @@ export namespace tagmanager_v2 {
|
|
|
12096
12221
|
*/
|
|
12097
12222
|
fingerprint?: string;
|
|
12098
12223
|
/**
|
|
12099
|
-
* GTM Zone's API relative path.
|
|
12224
|
+
* GTM Zone's API relative path.
|
|
12100
12225
|
*/
|
|
12101
12226
|
path?: string;
|
|
12102
12227
|
|
|
@@ -12559,7 +12684,7 @@ export namespace tagmanager_v2 {
|
|
|
12559
12684
|
export interface Params$Resource$Accounts$User_permissions$Create
|
|
12560
12685
|
extends StandardParameters {
|
|
12561
12686
|
/**
|
|
12562
|
-
* GTM Account's API relative path.
|
|
12687
|
+
* GTM Account's API relative path.
|
|
12563
12688
|
*/
|
|
12564
12689
|
parent?: string;
|
|
12565
12690
|
|
|
@@ -12571,14 +12696,14 @@ export namespace tagmanager_v2 {
|
|
|
12571
12696
|
export interface Params$Resource$Accounts$User_permissions$Delete
|
|
12572
12697
|
extends StandardParameters {
|
|
12573
12698
|
/**
|
|
12574
|
-
* GTM UserPermission's API relative path.
|
|
12699
|
+
* GTM UserPermission's API relative path.
|
|
12575
12700
|
*/
|
|
12576
12701
|
path?: string;
|
|
12577
12702
|
}
|
|
12578
12703
|
export interface Params$Resource$Accounts$User_permissions$Get
|
|
12579
12704
|
extends StandardParameters {
|
|
12580
12705
|
/**
|
|
12581
|
-
* GTM UserPermission's API relative path.
|
|
12706
|
+
* GTM UserPermission's API relative path.
|
|
12582
12707
|
*/
|
|
12583
12708
|
path?: string;
|
|
12584
12709
|
}
|
|
@@ -12589,14 +12714,14 @@ export namespace tagmanager_v2 {
|
|
|
12589
12714
|
*/
|
|
12590
12715
|
pageToken?: string;
|
|
12591
12716
|
/**
|
|
12592
|
-
* GTM Account's API relative path.
|
|
12717
|
+
* GTM Account's API relative path.
|
|
12593
12718
|
*/
|
|
12594
12719
|
parent?: string;
|
|
12595
12720
|
}
|
|
12596
12721
|
export interface Params$Resource$Accounts$User_permissions$Update
|
|
12597
12722
|
extends StandardParameters {
|
|
12598
12723
|
/**
|
|
12599
|
-
* GTM UserPermission's API relative path.
|
|
12724
|
+
* GTM UserPermission's API relative path.
|
|
12600
12725
|
*/
|
|
12601
12726
|
path?: string;
|
|
12602
12727
|
|