@googleapis/tagmanager 5.4.0 → 8.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 +35 -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/build/v2.d.ts
CHANGED
|
@@ -88,7 +88,7 @@ export declare namespace tagmanager_v2 {
|
|
|
88
88
|
*/
|
|
89
89
|
fingerprint?: string | null;
|
|
90
90
|
/**
|
|
91
|
-
* Account display name.
|
|
91
|
+
* Account display name.
|
|
92
92
|
*/
|
|
93
93
|
name?: string | null;
|
|
94
94
|
/**
|
|
@@ -96,7 +96,7 @@ export declare namespace tagmanager_v2 {
|
|
|
96
96
|
*/
|
|
97
97
|
path?: string | null;
|
|
98
98
|
/**
|
|
99
|
-
* 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.
|
|
99
|
+
* 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.
|
|
100
100
|
*/
|
|
101
101
|
shareData?: boolean | null;
|
|
102
102
|
/**
|
|
@@ -109,7 +109,7 @@ export declare namespace tagmanager_v2 {
|
|
|
109
109
|
*/
|
|
110
110
|
export interface Schema$AccountAccess {
|
|
111
111
|
/**
|
|
112
|
-
* Whether the user has no access, user access, or admin access to an account.
|
|
112
|
+
* Whether the user has no access, user access, or admin access to an account.
|
|
113
113
|
*/
|
|
114
114
|
permission?: string | null;
|
|
115
115
|
}
|
|
@@ -144,7 +144,7 @@ export declare namespace tagmanager_v2 {
|
|
|
144
144
|
*/
|
|
145
145
|
path?: string | null;
|
|
146
146
|
/**
|
|
147
|
-
* Type of built-in variable.
|
|
147
|
+
* Type of built-in variable.
|
|
148
148
|
*/
|
|
149
149
|
type?: string | null;
|
|
150
150
|
/**
|
|
@@ -170,15 +170,15 @@ export declare namespace tagmanager_v2 {
|
|
|
170
170
|
*/
|
|
171
171
|
fingerprint?: string | null;
|
|
172
172
|
/**
|
|
173
|
-
* Client display name.
|
|
173
|
+
* Client display name.
|
|
174
174
|
*/
|
|
175
175
|
name?: string | null;
|
|
176
176
|
/**
|
|
177
|
-
* User notes on how to apply this tag in the container.
|
|
177
|
+
* User notes on how to apply this tag in the container.
|
|
178
178
|
*/
|
|
179
179
|
notes?: string | null;
|
|
180
180
|
/**
|
|
181
|
-
* The client's parameters.
|
|
181
|
+
* The client's parameters.
|
|
182
182
|
*/
|
|
183
183
|
parameter?: Schema$Parameter[];
|
|
184
184
|
/**
|
|
@@ -190,7 +190,7 @@ export declare namespace tagmanager_v2 {
|
|
|
190
190
|
*/
|
|
191
191
|
path?: string | null;
|
|
192
192
|
/**
|
|
193
|
-
* Priority determines relative firing order.
|
|
193
|
+
* Priority determines relative firing order.
|
|
194
194
|
*/
|
|
195
195
|
priority?: number | null;
|
|
196
196
|
/**
|
|
@@ -198,7 +198,7 @@ export declare namespace tagmanager_v2 {
|
|
|
198
198
|
*/
|
|
199
199
|
tagManagerUrl?: string | null;
|
|
200
200
|
/**
|
|
201
|
-
* Client type.
|
|
201
|
+
* Client type.
|
|
202
202
|
*/
|
|
203
203
|
type?: string | null;
|
|
204
204
|
/**
|
|
@@ -211,11 +211,11 @@ export declare namespace tagmanager_v2 {
|
|
|
211
211
|
*/
|
|
212
212
|
export interface Schema$Condition {
|
|
213
213
|
/**
|
|
214
|
-
* 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.
|
|
214
|
+
* 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.
|
|
215
215
|
*/
|
|
216
216
|
parameter?: Schema$Parameter[];
|
|
217
217
|
/**
|
|
218
|
-
* The type of operator for this condition.
|
|
218
|
+
* The type of operator for this condition.
|
|
219
219
|
*/
|
|
220
220
|
type?: string | null;
|
|
221
221
|
}
|
|
@@ -232,7 +232,7 @@ export declare namespace tagmanager_v2 {
|
|
|
232
232
|
*/
|
|
233
233
|
containerId?: string | null;
|
|
234
234
|
/**
|
|
235
|
-
* List of domain names associated with the Container.
|
|
235
|
+
* List of domain names associated with the Container.
|
|
236
236
|
*/
|
|
237
237
|
domainName?: string[] | null;
|
|
238
238
|
/**
|
|
@@ -244,11 +244,11 @@ export declare namespace tagmanager_v2 {
|
|
|
244
244
|
*/
|
|
245
245
|
fingerprint?: string | null;
|
|
246
246
|
/**
|
|
247
|
-
* Container display name.
|
|
247
|
+
* Container display name.
|
|
248
248
|
*/
|
|
249
249
|
name?: string | null;
|
|
250
250
|
/**
|
|
251
|
-
* Container Notes.
|
|
251
|
+
* Container Notes.
|
|
252
252
|
*/
|
|
253
253
|
notes?: string | null;
|
|
254
254
|
/**
|
|
@@ -260,7 +260,7 @@ export declare namespace tagmanager_v2 {
|
|
|
260
260
|
*/
|
|
261
261
|
publicId?: string | null;
|
|
262
262
|
/**
|
|
263
|
-
* List of server-side container URLs for the Container. If multiple URLs are provided, all URL paths must match.
|
|
263
|
+
* List of server-side container URLs for the Container. If multiple URLs are provided, all URL paths must match.
|
|
264
264
|
*/
|
|
265
265
|
taggingServerUrls?: string[] | null;
|
|
266
266
|
/**
|
|
@@ -272,7 +272,7 @@ export declare namespace tagmanager_v2 {
|
|
|
272
272
|
*/
|
|
273
273
|
tagManagerUrl?: string | null;
|
|
274
274
|
/**
|
|
275
|
-
* List of Usage Contexts for the Container. Valid values include: web, android, or ios.
|
|
275
|
+
* List of Usage Contexts for the Container. Valid values include: web, android, or ios.
|
|
276
276
|
*/
|
|
277
277
|
usageContext?: string[] | null;
|
|
278
278
|
}
|
|
@@ -281,11 +281,11 @@ export declare namespace tagmanager_v2 {
|
|
|
281
281
|
*/
|
|
282
282
|
export interface Schema$ContainerAccess {
|
|
283
283
|
/**
|
|
284
|
-
* GTM Container ID.
|
|
284
|
+
* GTM Container ID.
|
|
285
285
|
*/
|
|
286
286
|
containerId?: string | null;
|
|
287
287
|
/**
|
|
288
|
-
* List of Container permissions.
|
|
288
|
+
* List of Container permissions.
|
|
289
289
|
*/
|
|
290
290
|
permission?: string | null;
|
|
291
291
|
}
|
|
@@ -384,7 +384,7 @@ export declare namespace tagmanager_v2 {
|
|
|
384
384
|
*/
|
|
385
385
|
deleted?: boolean | null;
|
|
386
386
|
/**
|
|
387
|
-
* Container version description.
|
|
387
|
+
* Container version description.
|
|
388
388
|
*/
|
|
389
389
|
description?: string | null;
|
|
390
390
|
/**
|
|
@@ -400,7 +400,7 @@ export declare namespace tagmanager_v2 {
|
|
|
400
400
|
*/
|
|
401
401
|
gtagConfig?: Schema$GtagConfig[];
|
|
402
402
|
/**
|
|
403
|
-
* Container version display name.
|
|
403
|
+
* Container version display name.
|
|
404
404
|
*/
|
|
405
405
|
name?: string | null;
|
|
406
406
|
/**
|
|
@@ -697,11 +697,11 @@ export declare namespace tagmanager_v2 {
|
|
|
697
697
|
*/
|
|
698
698
|
containerVersionId?: string | null;
|
|
699
699
|
/**
|
|
700
|
-
* The environment description. Can be set or changed only on USER type environments.
|
|
700
|
+
* The environment description. Can be set or changed only on USER type environments.
|
|
701
701
|
*/
|
|
702
702
|
description?: string | null;
|
|
703
703
|
/**
|
|
704
|
-
* Whether or not to enable debug by default for the environment.
|
|
704
|
+
* Whether or not to enable debug by default for the environment.
|
|
705
705
|
*/
|
|
706
706
|
enableDebug?: boolean | null;
|
|
707
707
|
/**
|
|
@@ -713,7 +713,7 @@ export declare namespace tagmanager_v2 {
|
|
|
713
713
|
*/
|
|
714
714
|
fingerprint?: string | null;
|
|
715
715
|
/**
|
|
716
|
-
* The environment display name. Can be set or changed only on USER type environments.
|
|
716
|
+
* The environment display name. Can be set or changed only on USER type environments.
|
|
717
717
|
*/
|
|
718
718
|
name?: string | null;
|
|
719
719
|
/**
|
|
@@ -729,7 +729,7 @@ export declare namespace tagmanager_v2 {
|
|
|
729
729
|
*/
|
|
730
730
|
type?: string | null;
|
|
731
731
|
/**
|
|
732
|
-
* Default preview page url for the environment.
|
|
732
|
+
* Default preview page url for the environment.
|
|
733
733
|
*/
|
|
734
734
|
url?: string | null;
|
|
735
735
|
/**
|
|
@@ -758,11 +758,11 @@ export declare namespace tagmanager_v2 {
|
|
|
758
758
|
*/
|
|
759
759
|
folderId?: string | null;
|
|
760
760
|
/**
|
|
761
|
-
* Folder display name.
|
|
761
|
+
* Folder display name.
|
|
762
762
|
*/
|
|
763
763
|
name?: string | null;
|
|
764
764
|
/**
|
|
765
|
-
* User notes on how to apply this folder in the container.
|
|
765
|
+
* User notes on how to apply this folder in the container.
|
|
766
766
|
*/
|
|
767
767
|
notes?: string | null;
|
|
768
768
|
/**
|
|
@@ -803,6 +803,10 @@ export declare namespace tagmanager_v2 {
|
|
|
803
803
|
* Represents the link between a custom template and an entry on the Community Template Gallery site.
|
|
804
804
|
*/
|
|
805
805
|
export interface Schema$GalleryReference {
|
|
806
|
+
/**
|
|
807
|
+
* ID for the gallery template that is generated once during first sync and travels with the template redirects.
|
|
808
|
+
*/
|
|
809
|
+
galleryTemplateId?: string | null;
|
|
806
810
|
/**
|
|
807
811
|
* The name of the host for the community gallery template.
|
|
808
812
|
*/
|
|
@@ -833,6 +837,10 @@ export declare namespace tagmanager_v2 {
|
|
|
833
837
|
version?: string | null;
|
|
834
838
|
}
|
|
835
839
|
export interface Schema$GetContainerSnippetResponse {
|
|
840
|
+
/**
|
|
841
|
+
* Server container config param for manually provisioning a tagging server.
|
|
842
|
+
*/
|
|
843
|
+
containerConfig?: string | null;
|
|
836
844
|
/**
|
|
837
845
|
* Tagging snippet for a Container.
|
|
838
846
|
*/
|
|
@@ -872,7 +880,7 @@ export declare namespace tagmanager_v2 {
|
|
|
872
880
|
*/
|
|
873
881
|
gtagConfigId?: string | null;
|
|
874
882
|
/**
|
|
875
|
-
* The Google tag config's parameters.
|
|
883
|
+
* The Google tag config's parameters.
|
|
876
884
|
*/
|
|
877
885
|
parameter?: Schema$Parameter[];
|
|
878
886
|
/**
|
|
@@ -884,7 +892,7 @@ export declare namespace tagmanager_v2 {
|
|
|
884
892
|
*/
|
|
885
893
|
tagManagerUrl?: string | null;
|
|
886
894
|
/**
|
|
887
|
-
* Google tag config type.
|
|
895
|
+
* Google tag config type.
|
|
888
896
|
*/
|
|
889
897
|
type?: string | null;
|
|
890
898
|
/**
|
|
@@ -1113,27 +1121,27 @@ export declare namespace tagmanager_v2 {
|
|
|
1113
1121
|
*/
|
|
1114
1122
|
export interface Schema$Parameter {
|
|
1115
1123
|
/**
|
|
1116
|
-
* Whether or not a reference type parameter is strongly or weakly referenced. Only used by Transformations.
|
|
1124
|
+
* Whether or not a reference type parameter is strongly or weakly referenced. Only used by Transformations.
|
|
1117
1125
|
*/
|
|
1118
1126
|
isWeakReference?: boolean | null;
|
|
1119
1127
|
/**
|
|
1120
|
-
* The named key that uniquely identifies a parameter. Required for top-level parameters, as well as map values. Ignored for list values.
|
|
1128
|
+
* The named key that uniquely identifies a parameter. Required for top-level parameters, as well as map values. Ignored for list values.
|
|
1121
1129
|
*/
|
|
1122
1130
|
key?: string | null;
|
|
1123
1131
|
/**
|
|
1124
|
-
* This list parameter's parameters (keys will be ignored).
|
|
1132
|
+
* This list parameter's parameters (keys will be ignored).
|
|
1125
1133
|
*/
|
|
1126
1134
|
list?: Schema$Parameter[];
|
|
1127
1135
|
/**
|
|
1128
|
-
* This map parameter's parameters (must have keys; keys must be unique).
|
|
1136
|
+
* This map parameter's parameters (must have keys; keys must be unique).
|
|
1129
1137
|
*/
|
|
1130
1138
|
map?: Schema$Parameter[];
|
|
1131
1139
|
/**
|
|
1132
|
-
* 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
|
|
1140
|
+
* 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
|
|
1133
1141
|
*/
|
|
1134
1142
|
type?: string | null;
|
|
1135
1143
|
/**
|
|
1136
|
-
* A parameter's value (may contain variable references
|
|
1144
|
+
* A parameter's value (may contain variable references). as appropriate to the specified type.
|
|
1137
1145
|
*/
|
|
1138
1146
|
value?: string | null;
|
|
1139
1147
|
}
|
|
@@ -1296,15 +1304,15 @@ export declare namespace tagmanager_v2 {
|
|
|
1296
1304
|
*/
|
|
1297
1305
|
accountId?: string | null;
|
|
1298
1306
|
/**
|
|
1299
|
-
* Blocking rule IDs. If any of the listed rules evaluate to true, the tag will not fire.
|
|
1307
|
+
* Blocking rule IDs. If any of the listed rules evaluate to true, the tag will not fire.
|
|
1300
1308
|
*/
|
|
1301
1309
|
blockingRuleId?: string[] | null;
|
|
1302
1310
|
/**
|
|
1303
|
-
* Blocking trigger IDs. If any of the listed triggers evaluate to true, the tag will not fire.
|
|
1311
|
+
* Blocking trigger IDs. If any of the listed triggers evaluate to true, the tag will not fire.
|
|
1304
1312
|
*/
|
|
1305
1313
|
blockingTriggerId?: string[] | null;
|
|
1306
1314
|
/**
|
|
1307
|
-
* Consent settings of a tag.
|
|
1315
|
+
* Consent settings of a tag.
|
|
1308
1316
|
*/
|
|
1309
1317
|
consentSettings?: Schema$TagConsentSetting;
|
|
1310
1318
|
/**
|
|
@@ -1316,35 +1324,35 @@ export declare namespace tagmanager_v2 {
|
|
|
1316
1324
|
*/
|
|
1317
1325
|
fingerprint?: string | null;
|
|
1318
1326
|
/**
|
|
1319
|
-
* 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.
|
|
1327
|
+
* 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.
|
|
1320
1328
|
*/
|
|
1321
1329
|
firingRuleId?: string[] | null;
|
|
1322
1330
|
/**
|
|
1323
|
-
* 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.
|
|
1331
|
+
* 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.
|
|
1324
1332
|
*/
|
|
1325
1333
|
firingTriggerId?: string[] | null;
|
|
1326
1334
|
/**
|
|
1327
|
-
* If set to true, this tag will only fire in the live environment (e.g. not in preview or debug mode).
|
|
1335
|
+
* If set to true, this tag will only fire in the live environment (e.g. not in preview or debug mode).
|
|
1328
1336
|
*/
|
|
1329
1337
|
liveOnly?: boolean | null;
|
|
1330
1338
|
/**
|
|
1331
|
-
* 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.
|
|
1339
|
+
* 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.
|
|
1332
1340
|
*/
|
|
1333
1341
|
monitoringMetadata?: Schema$Parameter;
|
|
1334
1342
|
/**
|
|
1335
|
-
* If non-empty, then the tag display name will be included in the monitoring metadata map using the key specified.
|
|
1343
|
+
* If non-empty, then the tag display name will be included in the monitoring metadata map using the key specified.
|
|
1336
1344
|
*/
|
|
1337
1345
|
monitoringMetadataTagNameKey?: string | null;
|
|
1338
1346
|
/**
|
|
1339
|
-
* Tag display name.
|
|
1347
|
+
* Tag display name.
|
|
1340
1348
|
*/
|
|
1341
1349
|
name?: string | null;
|
|
1342
1350
|
/**
|
|
1343
|
-
* User notes on how to apply this tag in the container.
|
|
1351
|
+
* User notes on how to apply this tag in the container.
|
|
1344
1352
|
*/
|
|
1345
1353
|
notes?: string | null;
|
|
1346
1354
|
/**
|
|
1347
|
-
* The tag's parameters.
|
|
1355
|
+
* The tag's parameters.
|
|
1348
1356
|
*/
|
|
1349
1357
|
parameter?: Schema$Parameter[];
|
|
1350
1358
|
/**
|
|
@@ -1356,19 +1364,19 @@ export declare namespace tagmanager_v2 {
|
|
|
1356
1364
|
*/
|
|
1357
1365
|
path?: string | null;
|
|
1358
1366
|
/**
|
|
1359
|
-
* Indicates whether the tag is paused, which prevents the tag from firing.
|
|
1367
|
+
* Indicates whether the tag is paused, which prevents the tag from firing.
|
|
1360
1368
|
*/
|
|
1361
1369
|
paused?: boolean | null;
|
|
1362
1370
|
/**
|
|
1363
|
-
* 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.
|
|
1371
|
+
* 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.
|
|
1364
1372
|
*/
|
|
1365
1373
|
priority?: Schema$Parameter;
|
|
1366
1374
|
/**
|
|
1367
|
-
* The end timestamp in milliseconds to schedule a tag.
|
|
1375
|
+
* The end timestamp in milliseconds to schedule a tag.
|
|
1368
1376
|
*/
|
|
1369
1377
|
scheduleEndMs?: string | null;
|
|
1370
1378
|
/**
|
|
1371
|
-
* The start timestamp in milliseconds to schedule a tag.
|
|
1379
|
+
* The start timestamp in milliseconds to schedule a tag.
|
|
1372
1380
|
*/
|
|
1373
1381
|
scheduleStartMs?: string | null;
|
|
1374
1382
|
/**
|
|
@@ -1392,7 +1400,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1392
1400
|
*/
|
|
1393
1401
|
teardownTag?: Schema$TeardownTag[];
|
|
1394
1402
|
/**
|
|
1395
|
-
* GTM Tag Type.
|
|
1403
|
+
* GTM Tag Type.
|
|
1396
1404
|
*/
|
|
1397
1405
|
type?: string | null;
|
|
1398
1406
|
/**
|
|
@@ -1440,15 +1448,15 @@ export declare namespace tagmanager_v2 {
|
|
|
1440
1448
|
*/
|
|
1441
1449
|
fingerprint?: string | null;
|
|
1442
1450
|
/**
|
|
1443
|
-
* Transformation display name.
|
|
1451
|
+
* Transformation display name.
|
|
1444
1452
|
*/
|
|
1445
1453
|
name?: string | null;
|
|
1446
1454
|
/**
|
|
1447
|
-
* User notes on how to apply this transformation in the container.
|
|
1455
|
+
* User notes on how to apply this transformation in the container.
|
|
1448
1456
|
*/
|
|
1449
1457
|
notes?: string | null;
|
|
1450
1458
|
/**
|
|
1451
|
-
* The transformation's parameters.
|
|
1459
|
+
* The transformation's parameters.
|
|
1452
1460
|
*/
|
|
1453
1461
|
parameter?: Schema$Parameter[];
|
|
1454
1462
|
/**
|
|
@@ -1468,7 +1476,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1468
1476
|
*/
|
|
1469
1477
|
transformationId?: string | null;
|
|
1470
1478
|
/**
|
|
1471
|
-
* Transformation type.
|
|
1479
|
+
* Transformation type.
|
|
1472
1480
|
*/
|
|
1473
1481
|
type?: string | null;
|
|
1474
1482
|
/**
|
|
@@ -1485,11 +1493,11 @@ export declare namespace tagmanager_v2 {
|
|
|
1485
1493
|
*/
|
|
1486
1494
|
accountId?: string | null;
|
|
1487
1495
|
/**
|
|
1488
|
-
* Used in the case of auto event tracking.
|
|
1496
|
+
* Used in the case of auto event tracking.
|
|
1489
1497
|
*/
|
|
1490
1498
|
autoEventFilter?: Schema$Condition[];
|
|
1491
1499
|
/**
|
|
1492
|
-
* 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.
|
|
1500
|
+
* 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.
|
|
1493
1501
|
*/
|
|
1494
1502
|
checkValidation?: Schema$Parameter;
|
|
1495
1503
|
/**
|
|
@@ -1497,19 +1505,19 @@ export declare namespace tagmanager_v2 {
|
|
|
1497
1505
|
*/
|
|
1498
1506
|
containerId?: string | null;
|
|
1499
1507
|
/**
|
|
1500
|
-
* A visibility trigger minimum continuous visible time (in milliseconds). Only valid for AMP Visibility trigger.
|
|
1508
|
+
* A visibility trigger minimum continuous visible time (in milliseconds). Only valid for AMP Visibility trigger.
|
|
1501
1509
|
*/
|
|
1502
1510
|
continuousTimeMinMilliseconds?: Schema$Parameter;
|
|
1503
1511
|
/**
|
|
1504
|
-
* Used in the case of custom event, which is fired iff all Conditions are true.
|
|
1512
|
+
* Used in the case of custom event, which is fired iff all Conditions are true.
|
|
1505
1513
|
*/
|
|
1506
1514
|
customEventFilter?: Schema$Condition[];
|
|
1507
1515
|
/**
|
|
1508
|
-
* Name of the GTM event that is fired. Only valid for Timer triggers.
|
|
1516
|
+
* Name of the GTM event that is fired. Only valid for Timer triggers.
|
|
1509
1517
|
*/
|
|
1510
1518
|
eventName?: Schema$Parameter;
|
|
1511
1519
|
/**
|
|
1512
|
-
* The trigger will only fire iff all Conditions are true.
|
|
1520
|
+
* The trigger will only fire iff all Conditions are true.
|
|
1513
1521
|
*/
|
|
1514
1522
|
filter?: Schema$Condition[];
|
|
1515
1523
|
/**
|
|
@@ -1517,35 +1525,35 @@ export declare namespace tagmanager_v2 {
|
|
|
1517
1525
|
*/
|
|
1518
1526
|
fingerprint?: string | null;
|
|
1519
1527
|
/**
|
|
1520
|
-
* 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.
|
|
1528
|
+
* 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.
|
|
1521
1529
|
*/
|
|
1522
1530
|
horizontalScrollPercentageList?: Schema$Parameter;
|
|
1523
1531
|
/**
|
|
1524
|
-
* Time between triggering recurring Timer Events (in milliseconds). Only valid for Timer triggers.
|
|
1532
|
+
* Time between triggering recurring Timer Events (in milliseconds). Only valid for Timer triggers.
|
|
1525
1533
|
*/
|
|
1526
1534
|
interval?: Schema$Parameter;
|
|
1527
1535
|
/**
|
|
1528
|
-
* Time between Timer Events to fire (in seconds). Only valid for AMP Timer trigger.
|
|
1536
|
+
* Time between Timer Events to fire (in seconds). Only valid for AMP Timer trigger.
|
|
1529
1537
|
*/
|
|
1530
1538
|
intervalSeconds?: Schema$Parameter;
|
|
1531
1539
|
/**
|
|
1532
|
-
* 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.
|
|
1540
|
+
* 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.
|
|
1533
1541
|
*/
|
|
1534
1542
|
limit?: Schema$Parameter;
|
|
1535
1543
|
/**
|
|
1536
|
-
* Max time to fire Timer Events (in seconds). Only valid for AMP Timer trigger.
|
|
1544
|
+
* Max time to fire Timer Events (in seconds). Only valid for AMP Timer trigger.
|
|
1537
1545
|
*/
|
|
1538
1546
|
maxTimerLengthSeconds?: Schema$Parameter;
|
|
1539
1547
|
/**
|
|
1540
|
-
* Trigger display name.
|
|
1548
|
+
* Trigger display name.
|
|
1541
1549
|
*/
|
|
1542
1550
|
name?: string | null;
|
|
1543
1551
|
/**
|
|
1544
|
-
* User notes on how to apply this trigger in the container.
|
|
1552
|
+
* User notes on how to apply this trigger in the container.
|
|
1545
1553
|
*/
|
|
1546
1554
|
notes?: string | null;
|
|
1547
1555
|
/**
|
|
1548
|
-
* Additional parameters.
|
|
1556
|
+
* Additional parameters.
|
|
1549
1557
|
*/
|
|
1550
1558
|
parameter?: Schema$Parameter[];
|
|
1551
1559
|
/**
|
|
@@ -1557,7 +1565,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1557
1565
|
*/
|
|
1558
1566
|
path?: string | null;
|
|
1559
1567
|
/**
|
|
1560
|
-
* A click trigger CSS selector (i.e. "a", "button" etc.). Only valid for AMP Click trigger.
|
|
1568
|
+
* A click trigger CSS selector (i.e. "a", "button" etc.). Only valid for AMP Click trigger.
|
|
1561
1569
|
*/
|
|
1562
1570
|
selector?: Schema$Parameter;
|
|
1563
1571
|
/**
|
|
@@ -1565,7 +1573,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1565
1573
|
*/
|
|
1566
1574
|
tagManagerUrl?: string | null;
|
|
1567
1575
|
/**
|
|
1568
|
-
* A visibility trigger minimum total visible time (in milliseconds). Only valid for AMP Visibility trigger.
|
|
1576
|
+
* A visibility trigger minimum total visible time (in milliseconds). Only valid for AMP Visibility trigger.
|
|
1569
1577
|
*/
|
|
1570
1578
|
totalTimeMinMilliseconds?: Schema$Parameter;
|
|
1571
1579
|
/**
|
|
@@ -1573,35 +1581,35 @@ export declare namespace tagmanager_v2 {
|
|
|
1573
1581
|
*/
|
|
1574
1582
|
triggerId?: string | null;
|
|
1575
1583
|
/**
|
|
1576
|
-
* Defines the data layer event that causes this trigger.
|
|
1584
|
+
* Defines the data layer event that causes this trigger.
|
|
1577
1585
|
*/
|
|
1578
1586
|
type?: string | null;
|
|
1579
1587
|
/**
|
|
1580
|
-
* 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.
|
|
1588
|
+
* 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.
|
|
1581
1589
|
*/
|
|
1582
1590
|
uniqueTriggerId?: Schema$Parameter;
|
|
1583
1591
|
/**
|
|
1584
|
-
* 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.
|
|
1592
|
+
* 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.
|
|
1585
1593
|
*/
|
|
1586
1594
|
verticalScrollPercentageList?: Schema$Parameter;
|
|
1587
1595
|
/**
|
|
1588
|
-
* A visibility trigger CSS selector (i.e. "#id"). Only valid for AMP Visibility trigger.
|
|
1596
|
+
* A visibility trigger CSS selector (i.e. "#id"). Only valid for AMP Visibility trigger.
|
|
1589
1597
|
*/
|
|
1590
1598
|
visibilitySelector?: Schema$Parameter;
|
|
1591
1599
|
/**
|
|
1592
|
-
* A visibility trigger maximum percent visibility. Only valid for AMP Visibility trigger.
|
|
1600
|
+
* A visibility trigger maximum percent visibility. Only valid for AMP Visibility trigger.
|
|
1593
1601
|
*/
|
|
1594
1602
|
visiblePercentageMax?: Schema$Parameter;
|
|
1595
1603
|
/**
|
|
1596
|
-
* A visibility trigger minimum percent visibility. Only valid for AMP Visibility trigger.
|
|
1604
|
+
* A visibility trigger minimum percent visibility. Only valid for AMP Visibility trigger.
|
|
1597
1605
|
*/
|
|
1598
1606
|
visiblePercentageMin?: Schema$Parameter;
|
|
1599
1607
|
/**
|
|
1600
|
-
* 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.
|
|
1608
|
+
* 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.
|
|
1601
1609
|
*/
|
|
1602
1610
|
waitForTags?: Schema$Parameter;
|
|
1603
1611
|
/**
|
|
1604
|
-
* 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.
|
|
1612
|
+
* 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.
|
|
1605
1613
|
*/
|
|
1606
1614
|
waitForTagsTimeout?: Schema$Parameter;
|
|
1607
1615
|
/**
|
|
@@ -1614,7 +1622,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1614
1622
|
*/
|
|
1615
1623
|
export interface Schema$UserPermission {
|
|
1616
1624
|
/**
|
|
1617
|
-
* GTM Account access permissions.
|
|
1625
|
+
* GTM Account access permissions.
|
|
1618
1626
|
*/
|
|
1619
1627
|
accountAccess?: Schema$AccountAccess;
|
|
1620
1628
|
/**
|
|
@@ -1622,11 +1630,11 @@ export declare namespace tagmanager_v2 {
|
|
|
1622
1630
|
*/
|
|
1623
1631
|
accountId?: string | null;
|
|
1624
1632
|
/**
|
|
1625
|
-
* GTM Container access permissions.
|
|
1633
|
+
* GTM Container access permissions.
|
|
1626
1634
|
*/
|
|
1627
1635
|
containerAccess?: Schema$ContainerAccess[];
|
|
1628
1636
|
/**
|
|
1629
|
-
* User's email address.
|
|
1637
|
+
* User's email address.
|
|
1630
1638
|
*/
|
|
1631
1639
|
emailAddress?: string | null;
|
|
1632
1640
|
/**
|
|
@@ -1647,11 +1655,11 @@ export declare namespace tagmanager_v2 {
|
|
|
1647
1655
|
*/
|
|
1648
1656
|
containerId?: string | null;
|
|
1649
1657
|
/**
|
|
1650
|
-
* 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.
|
|
1658
|
+
* 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.
|
|
1651
1659
|
*/
|
|
1652
1660
|
disablingTriggerId?: string[] | null;
|
|
1653
1661
|
/**
|
|
1654
|
-
* 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.
|
|
1662
|
+
* 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.
|
|
1655
1663
|
*/
|
|
1656
1664
|
enablingTriggerId?: string[] | null;
|
|
1657
1665
|
/**
|
|
@@ -1663,15 +1671,15 @@ export declare namespace tagmanager_v2 {
|
|
|
1663
1671
|
*/
|
|
1664
1672
|
formatValue?: Schema$VariableFormatValue;
|
|
1665
1673
|
/**
|
|
1666
|
-
* Variable display name.
|
|
1674
|
+
* Variable display name.
|
|
1667
1675
|
*/
|
|
1668
1676
|
name?: string | null;
|
|
1669
1677
|
/**
|
|
1670
|
-
* User notes on how to apply this variable in the container.
|
|
1678
|
+
* User notes on how to apply this variable in the container.
|
|
1671
1679
|
*/
|
|
1672
1680
|
notes?: string | null;
|
|
1673
1681
|
/**
|
|
1674
|
-
* The variable's parameters.
|
|
1682
|
+
* The variable's parameters.
|
|
1675
1683
|
*/
|
|
1676
1684
|
parameter?: Schema$Parameter[];
|
|
1677
1685
|
/**
|
|
@@ -1683,11 +1691,11 @@ export declare namespace tagmanager_v2 {
|
|
|
1683
1691
|
*/
|
|
1684
1692
|
path?: string | null;
|
|
1685
1693
|
/**
|
|
1686
|
-
* The end timestamp in milliseconds to schedule a variable.
|
|
1694
|
+
* The end timestamp in milliseconds to schedule a variable.
|
|
1687
1695
|
*/
|
|
1688
1696
|
scheduleEndMs?: string | null;
|
|
1689
1697
|
/**
|
|
1690
|
-
* The start timestamp in milliseconds to schedule a variable.
|
|
1698
|
+
* The start timestamp in milliseconds to schedule a variable.
|
|
1691
1699
|
*/
|
|
1692
1700
|
scheduleStartMs?: string | null;
|
|
1693
1701
|
/**
|
|
@@ -1695,7 +1703,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1695
1703
|
*/
|
|
1696
1704
|
tagManagerUrl?: string | null;
|
|
1697
1705
|
/**
|
|
1698
|
-
* GTM Variable Type.
|
|
1706
|
+
* GTM Variable Type.
|
|
1699
1707
|
*/
|
|
1700
1708
|
type?: string | null;
|
|
1701
1709
|
/**
|
|
@@ -1742,7 +1750,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1742
1750
|
*/
|
|
1743
1751
|
containerId?: string | null;
|
|
1744
1752
|
/**
|
|
1745
|
-
* Workspace description.
|
|
1753
|
+
* Workspace description.
|
|
1746
1754
|
*/
|
|
1747
1755
|
description?: string | null;
|
|
1748
1756
|
/**
|
|
@@ -1750,7 +1758,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1750
1758
|
*/
|
|
1751
1759
|
fingerprint?: string | null;
|
|
1752
1760
|
/**
|
|
1753
|
-
* Workspace display name.
|
|
1761
|
+
* Workspace display name.
|
|
1754
1762
|
*/
|
|
1755
1763
|
name?: string | null;
|
|
1756
1764
|
/**
|
|
@@ -1908,7 +1916,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1908
1916
|
}
|
|
1909
1917
|
export interface Params$Resource$Accounts$Get extends StandardParameters {
|
|
1910
1918
|
/**
|
|
1911
|
-
* GTM Account's API relative path.
|
|
1919
|
+
* GTM Account's API relative path.
|
|
1912
1920
|
*/
|
|
1913
1921
|
path?: string;
|
|
1914
1922
|
}
|
|
@@ -1928,7 +1936,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1928
1936
|
*/
|
|
1929
1937
|
fingerprint?: string;
|
|
1930
1938
|
/**
|
|
1931
|
-
* GTM Account's API relative path.
|
|
1939
|
+
* GTM Account's API relative path.
|
|
1932
1940
|
*/
|
|
1933
1941
|
path?: string;
|
|
1934
1942
|
/**
|
|
@@ -2081,7 +2089,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2081
2089
|
*/
|
|
2082
2090
|
containerId?: string;
|
|
2083
2091
|
/**
|
|
2084
|
-
* GTM Container's API relative path.
|
|
2092
|
+
* GTM Container's API relative path.
|
|
2085
2093
|
*/
|
|
2086
2094
|
path?: string;
|
|
2087
2095
|
/**
|
|
@@ -2091,7 +2099,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2091
2099
|
}
|
|
2092
2100
|
export interface Params$Resource$Accounts$Containers$Create extends StandardParameters {
|
|
2093
2101
|
/**
|
|
2094
|
-
* GTM Account's API relative path.
|
|
2102
|
+
* GTM Account's API relative path.
|
|
2095
2103
|
*/
|
|
2096
2104
|
parent?: string;
|
|
2097
2105
|
/**
|
|
@@ -2101,13 +2109,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2101
2109
|
}
|
|
2102
2110
|
export interface Params$Resource$Accounts$Containers$Delete extends StandardParameters {
|
|
2103
2111
|
/**
|
|
2104
|
-
* GTM Container's API relative path.
|
|
2112
|
+
* GTM Container's API relative path.
|
|
2105
2113
|
*/
|
|
2106
2114
|
path?: string;
|
|
2107
2115
|
}
|
|
2108
2116
|
export interface Params$Resource$Accounts$Containers$Get extends StandardParameters {
|
|
2109
2117
|
/**
|
|
2110
|
-
* GTM Container's API relative path.
|
|
2118
|
+
* GTM Container's API relative path.
|
|
2111
2119
|
*/
|
|
2112
2120
|
path?: string;
|
|
2113
2121
|
}
|
|
@@ -2117,17 +2125,17 @@ export declare namespace tagmanager_v2 {
|
|
|
2117
2125
|
*/
|
|
2118
2126
|
pageToken?: string;
|
|
2119
2127
|
/**
|
|
2120
|
-
* GTM Account's API relative path.
|
|
2128
|
+
* GTM Account's API relative path.
|
|
2121
2129
|
*/
|
|
2122
2130
|
parent?: string;
|
|
2123
2131
|
}
|
|
2124
2132
|
export interface Params$Resource$Accounts$Containers$Lookup extends StandardParameters {
|
|
2125
2133
|
/**
|
|
2126
|
-
* Destination ID linked to a GTM Container, e.g. AW-123456789.
|
|
2134
|
+
* Destination ID linked to a GTM Container, e.g. AW-123456789. Only one of destination_id or tag_id should be set.
|
|
2127
2135
|
*/
|
|
2128
2136
|
destinationId?: string;
|
|
2129
2137
|
/**
|
|
2130
|
-
* Tag ID for a GTM Container, e.g. GTM-123456789.
|
|
2138
|
+
* Tag ID for a GTM Container, e.g. GTM-123456789. Only one of destination_id or tag_id should be set.
|
|
2131
2139
|
*/
|
|
2132
2140
|
tagId?: string;
|
|
2133
2141
|
}
|
|
@@ -2149,7 +2157,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2149
2157
|
*/
|
|
2150
2158
|
copyUsers?: boolean;
|
|
2151
2159
|
/**
|
|
2152
|
-
* GTM Container's API relative path.
|
|
2160
|
+
* GTM Container's API relative path.
|
|
2153
2161
|
*/
|
|
2154
2162
|
path?: string;
|
|
2155
2163
|
/**
|
|
@@ -2163,7 +2171,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2163
2171
|
}
|
|
2164
2172
|
export interface Params$Resource$Accounts$Containers$Snippet extends StandardParameters {
|
|
2165
2173
|
/**
|
|
2166
|
-
* Container snippet's API relative path.
|
|
2174
|
+
* Container snippet's API relative path.
|
|
2167
2175
|
*/
|
|
2168
2176
|
path?: string;
|
|
2169
2177
|
}
|
|
@@ -2173,7 +2181,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2173
2181
|
*/
|
|
2174
2182
|
fingerprint?: string;
|
|
2175
2183
|
/**
|
|
2176
|
-
* GTM Container's API relative path.
|
|
2184
|
+
* GTM Container's API relative path.
|
|
2177
2185
|
*/
|
|
2178
2186
|
path?: string;
|
|
2179
2187
|
/**
|
|
@@ -2229,7 +2237,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2229
2237
|
}
|
|
2230
2238
|
export interface Params$Resource$Accounts$Containers$Destinations$Get extends StandardParameters {
|
|
2231
2239
|
/**
|
|
2232
|
-
* Google Tag Destination's API relative path.
|
|
2240
|
+
* Google Tag Destination's API relative path.
|
|
2233
2241
|
*/
|
|
2234
2242
|
path?: string;
|
|
2235
2243
|
}
|
|
@@ -2243,13 +2251,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2243
2251
|
*/
|
|
2244
2252
|
destinationId?: string;
|
|
2245
2253
|
/**
|
|
2246
|
-
* GTM parent Container's API relative path.
|
|
2254
|
+
* GTM parent Container's API relative path.
|
|
2247
2255
|
*/
|
|
2248
2256
|
parent?: string;
|
|
2249
2257
|
}
|
|
2250
2258
|
export interface Params$Resource$Accounts$Containers$Destinations$List extends StandardParameters {
|
|
2251
2259
|
/**
|
|
2252
|
-
* GTM parent Container's API relative path.
|
|
2260
|
+
* GTM parent Container's API relative path.
|
|
2253
2261
|
*/
|
|
2254
2262
|
parent?: string;
|
|
2255
2263
|
}
|
|
@@ -2343,7 +2351,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2343
2351
|
}
|
|
2344
2352
|
export interface Params$Resource$Accounts$Containers$Environments$Create extends StandardParameters {
|
|
2345
2353
|
/**
|
|
2346
|
-
* GTM Container's API relative path.
|
|
2354
|
+
* GTM Container's API relative path.
|
|
2347
2355
|
*/
|
|
2348
2356
|
parent?: string;
|
|
2349
2357
|
/**
|
|
@@ -2353,13 +2361,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2353
2361
|
}
|
|
2354
2362
|
export interface Params$Resource$Accounts$Containers$Environments$Delete extends StandardParameters {
|
|
2355
2363
|
/**
|
|
2356
|
-
* GTM Environment's API relative path.
|
|
2364
|
+
* GTM Environment's API relative path.
|
|
2357
2365
|
*/
|
|
2358
2366
|
path?: string;
|
|
2359
2367
|
}
|
|
2360
2368
|
export interface Params$Resource$Accounts$Containers$Environments$Get extends StandardParameters {
|
|
2361
2369
|
/**
|
|
2362
|
-
* GTM Environment's API relative path.
|
|
2370
|
+
* GTM Environment's API relative path.
|
|
2363
2371
|
*/
|
|
2364
2372
|
path?: string;
|
|
2365
2373
|
}
|
|
@@ -2369,13 +2377,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2369
2377
|
*/
|
|
2370
2378
|
pageToken?: string;
|
|
2371
2379
|
/**
|
|
2372
|
-
* GTM Container's API relative path.
|
|
2380
|
+
* GTM Container's API relative path.
|
|
2373
2381
|
*/
|
|
2374
2382
|
parent?: string;
|
|
2375
2383
|
}
|
|
2376
2384
|
export interface Params$Resource$Accounts$Containers$Environments$Reauthorize extends StandardParameters {
|
|
2377
2385
|
/**
|
|
2378
|
-
* GTM Environment's API relative path.
|
|
2386
|
+
* GTM Environment's API relative path.
|
|
2379
2387
|
*/
|
|
2380
2388
|
path?: string;
|
|
2381
2389
|
/**
|
|
@@ -2389,7 +2397,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2389
2397
|
*/
|
|
2390
2398
|
fingerprint?: string;
|
|
2391
2399
|
/**
|
|
2392
|
-
* GTM Environment's API relative path.
|
|
2400
|
+
* GTM Environment's API relative path.
|
|
2393
2401
|
*/
|
|
2394
2402
|
path?: string;
|
|
2395
2403
|
/**
|
|
@@ -2501,7 +2509,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2501
2509
|
}
|
|
2502
2510
|
export interface Params$Resource$Accounts$Containers$Versions$Delete extends StandardParameters {
|
|
2503
2511
|
/**
|
|
2504
|
-
* GTM ContainerVersion's API relative path.
|
|
2512
|
+
* GTM ContainerVersion's API relative path.
|
|
2505
2513
|
*/
|
|
2506
2514
|
path?: string;
|
|
2507
2515
|
}
|
|
@@ -2511,13 +2519,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2511
2519
|
*/
|
|
2512
2520
|
containerVersionId?: string;
|
|
2513
2521
|
/**
|
|
2514
|
-
* GTM ContainerVersion's API relative path.
|
|
2522
|
+
* GTM ContainerVersion's API relative path.
|
|
2515
2523
|
*/
|
|
2516
2524
|
path?: string;
|
|
2517
2525
|
}
|
|
2518
2526
|
export interface Params$Resource$Accounts$Containers$Versions$Live extends StandardParameters {
|
|
2519
2527
|
/**
|
|
2520
|
-
* GTM Container's API relative path.
|
|
2528
|
+
* GTM Container's API relative path.
|
|
2521
2529
|
*/
|
|
2522
2530
|
parent?: string;
|
|
2523
2531
|
}
|
|
@@ -2527,19 +2535,19 @@ export declare namespace tagmanager_v2 {
|
|
|
2527
2535
|
*/
|
|
2528
2536
|
fingerprint?: string;
|
|
2529
2537
|
/**
|
|
2530
|
-
* GTM ContainerVersion's API relative path.
|
|
2538
|
+
* GTM ContainerVersion's API relative path.
|
|
2531
2539
|
*/
|
|
2532
2540
|
path?: string;
|
|
2533
2541
|
}
|
|
2534
2542
|
export interface Params$Resource$Accounts$Containers$Versions$Set_latest extends StandardParameters {
|
|
2535
2543
|
/**
|
|
2536
|
-
* GTM ContainerVersion's API relative path.
|
|
2544
|
+
* GTM ContainerVersion's API relative path.
|
|
2537
2545
|
*/
|
|
2538
2546
|
path?: string;
|
|
2539
2547
|
}
|
|
2540
2548
|
export interface Params$Resource$Accounts$Containers$Versions$Undelete extends StandardParameters {
|
|
2541
2549
|
/**
|
|
2542
|
-
* GTM ContainerVersion's API relative path.
|
|
2550
|
+
* GTM ContainerVersion's API relative path.
|
|
2543
2551
|
*/
|
|
2544
2552
|
path?: string;
|
|
2545
2553
|
}
|
|
@@ -2549,7 +2557,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2549
2557
|
*/
|
|
2550
2558
|
fingerprint?: string;
|
|
2551
2559
|
/**
|
|
2552
|
-
* GTM ContainerVersion's API relative path.
|
|
2560
|
+
* GTM ContainerVersion's API relative path.
|
|
2553
2561
|
*/
|
|
2554
2562
|
path?: string;
|
|
2555
2563
|
/**
|
|
@@ -2591,7 +2599,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2591
2599
|
}
|
|
2592
2600
|
export interface Params$Resource$Accounts$Containers$Version_headers$Latest extends StandardParameters {
|
|
2593
2601
|
/**
|
|
2594
|
-
* GTM Container's API relative path.
|
|
2602
|
+
* GTM Container's API relative path.
|
|
2595
2603
|
*/
|
|
2596
2604
|
parent?: string;
|
|
2597
2605
|
}
|
|
@@ -2605,7 +2613,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2605
2613
|
*/
|
|
2606
2614
|
pageToken?: string;
|
|
2607
2615
|
/**
|
|
2608
|
-
* GTM Container's API relative path.
|
|
2616
|
+
* GTM Container's API relative path.
|
|
2609
2617
|
*/
|
|
2610
2618
|
parent?: string;
|
|
2611
2619
|
}
|
|
@@ -2765,7 +2773,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2765
2773
|
}
|
|
2766
2774
|
export interface Params$Resource$Accounts$Containers$Workspaces$Create extends StandardParameters {
|
|
2767
2775
|
/**
|
|
2768
|
-
* GTM parent Container's API relative path.
|
|
2776
|
+
* GTM parent Container's API relative path.
|
|
2769
2777
|
*/
|
|
2770
2778
|
parent?: string;
|
|
2771
2779
|
/**
|
|
@@ -2775,7 +2783,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2775
2783
|
}
|
|
2776
2784
|
export interface Params$Resource$Accounts$Containers$Workspaces$Create_version extends StandardParameters {
|
|
2777
2785
|
/**
|
|
2778
|
-
* GTM Workspace's API relative path.
|
|
2786
|
+
* GTM Workspace's API relative path.
|
|
2779
2787
|
*/
|
|
2780
2788
|
path?: string;
|
|
2781
2789
|
/**
|
|
@@ -2785,19 +2793,19 @@ export declare namespace tagmanager_v2 {
|
|
|
2785
2793
|
}
|
|
2786
2794
|
export interface Params$Resource$Accounts$Containers$Workspaces$Delete extends StandardParameters {
|
|
2787
2795
|
/**
|
|
2788
|
-
* GTM Workspace's API relative path.
|
|
2796
|
+
* GTM Workspace's API relative path.
|
|
2789
2797
|
*/
|
|
2790
2798
|
path?: string;
|
|
2791
2799
|
}
|
|
2792
2800
|
export interface Params$Resource$Accounts$Containers$Workspaces$Get extends StandardParameters {
|
|
2793
2801
|
/**
|
|
2794
|
-
* GTM Workspace's API relative path.
|
|
2802
|
+
* GTM Workspace's API relative path.
|
|
2795
2803
|
*/
|
|
2796
2804
|
path?: string;
|
|
2797
2805
|
}
|
|
2798
2806
|
export interface Params$Resource$Accounts$Containers$Workspaces$Getstatus extends StandardParameters {
|
|
2799
2807
|
/**
|
|
2800
|
-
* GTM Workspace's API relative path.
|
|
2808
|
+
* GTM Workspace's API relative path.
|
|
2801
2809
|
*/
|
|
2802
2810
|
path?: string;
|
|
2803
2811
|
}
|
|
@@ -2807,13 +2815,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2807
2815
|
*/
|
|
2808
2816
|
pageToken?: string;
|
|
2809
2817
|
/**
|
|
2810
|
-
* GTM parent Container's API relative path.
|
|
2818
|
+
* GTM parent Container's API relative path.
|
|
2811
2819
|
*/
|
|
2812
2820
|
parent?: string;
|
|
2813
2821
|
}
|
|
2814
2822
|
export interface Params$Resource$Accounts$Containers$Workspaces$Quick_preview extends StandardParameters {
|
|
2815
2823
|
/**
|
|
2816
|
-
* GTM Workspace's API relative path.
|
|
2824
|
+
* GTM Workspace's API relative path.
|
|
2817
2825
|
*/
|
|
2818
2826
|
path?: string;
|
|
2819
2827
|
}
|
|
@@ -2823,7 +2831,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2823
2831
|
*/
|
|
2824
2832
|
fingerprint?: string;
|
|
2825
2833
|
/**
|
|
2826
|
-
* GTM Workspace's API relative path.
|
|
2834
|
+
* GTM Workspace's API relative path.
|
|
2827
2835
|
*/
|
|
2828
2836
|
path?: string;
|
|
2829
2837
|
/**
|
|
@@ -2833,7 +2841,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2833
2841
|
}
|
|
2834
2842
|
export interface Params$Resource$Accounts$Containers$Workspaces$Sync extends StandardParameters {
|
|
2835
2843
|
/**
|
|
2836
|
-
* GTM Workspace's API relative path.
|
|
2844
|
+
* GTM Workspace's API relative path.
|
|
2837
2845
|
*/
|
|
2838
2846
|
path?: string;
|
|
2839
2847
|
}
|
|
@@ -2843,7 +2851,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2843
2851
|
*/
|
|
2844
2852
|
fingerprint?: string;
|
|
2845
2853
|
/**
|
|
2846
|
-
* GTM Workspace's API relative path.
|
|
2854
|
+
* GTM Workspace's API relative path.
|
|
2847
2855
|
*/
|
|
2848
2856
|
path?: string;
|
|
2849
2857
|
/**
|
|
@@ -2913,7 +2921,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2913
2921
|
}
|
|
2914
2922
|
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create extends StandardParameters {
|
|
2915
2923
|
/**
|
|
2916
|
-
* GTM Workspace's API relative path.
|
|
2924
|
+
* GTM Workspace's API relative path.
|
|
2917
2925
|
*/
|
|
2918
2926
|
parent?: string;
|
|
2919
2927
|
/**
|
|
@@ -2923,7 +2931,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2923
2931
|
}
|
|
2924
2932
|
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete extends StandardParameters {
|
|
2925
2933
|
/**
|
|
2926
|
-
* GTM BuiltInVariable's API relative path.
|
|
2934
|
+
* GTM BuiltInVariable's API relative path.
|
|
2927
2935
|
*/
|
|
2928
2936
|
path?: string;
|
|
2929
2937
|
/**
|
|
@@ -2937,13 +2945,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2937
2945
|
*/
|
|
2938
2946
|
pageToken?: string;
|
|
2939
2947
|
/**
|
|
2940
|
-
* GTM Workspace's API relative path.
|
|
2948
|
+
* GTM Workspace's API relative path.
|
|
2941
2949
|
*/
|
|
2942
2950
|
parent?: string;
|
|
2943
2951
|
}
|
|
2944
2952
|
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert extends StandardParameters {
|
|
2945
2953
|
/**
|
|
2946
|
-
* GTM BuiltInVariable's API relative path.
|
|
2954
|
+
* GTM BuiltInVariable's API relative path.
|
|
2947
2955
|
*/
|
|
2948
2956
|
path?: string;
|
|
2949
2957
|
/**
|
|
@@ -3041,7 +3049,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3041
3049
|
}
|
|
3042
3050
|
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Create extends StandardParameters {
|
|
3043
3051
|
/**
|
|
3044
|
-
* GTM Workspace's API relative path.
|
|
3052
|
+
* GTM Workspace's API relative path.
|
|
3045
3053
|
*/
|
|
3046
3054
|
parent?: string;
|
|
3047
3055
|
/**
|
|
@@ -3051,13 +3059,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3051
3059
|
}
|
|
3052
3060
|
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Delete extends StandardParameters {
|
|
3053
3061
|
/**
|
|
3054
|
-
* GTM Client's API relative path.
|
|
3062
|
+
* GTM Client's API relative path.
|
|
3055
3063
|
*/
|
|
3056
3064
|
path?: string;
|
|
3057
3065
|
}
|
|
3058
3066
|
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Get extends StandardParameters {
|
|
3059
3067
|
/**
|
|
3060
|
-
* GTM Client's API relative path.
|
|
3068
|
+
* GTM Client's API relative path.
|
|
3061
3069
|
*/
|
|
3062
3070
|
path?: string;
|
|
3063
3071
|
}
|
|
@@ -3067,7 +3075,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3067
3075
|
*/
|
|
3068
3076
|
pageToken?: string;
|
|
3069
3077
|
/**
|
|
3070
|
-
* GTM Workspace's API relative path.
|
|
3078
|
+
* GTM Workspace's API relative path.
|
|
3071
3079
|
*/
|
|
3072
3080
|
parent?: string;
|
|
3073
3081
|
}
|
|
@@ -3077,7 +3085,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3077
3085
|
*/
|
|
3078
3086
|
fingerprint?: string;
|
|
3079
3087
|
/**
|
|
3080
|
-
* GTM Client's API relative path.
|
|
3088
|
+
* GTM Client's API relative path.
|
|
3081
3089
|
*/
|
|
3082
3090
|
path?: string;
|
|
3083
3091
|
}
|
|
@@ -3087,7 +3095,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3087
3095
|
*/
|
|
3088
3096
|
fingerprint?: string;
|
|
3089
3097
|
/**
|
|
3090
|
-
* GTM Client's API relative path.
|
|
3098
|
+
* GTM Client's API relative path.
|
|
3091
3099
|
*/
|
|
3092
3100
|
path?: string;
|
|
3093
3101
|
/**
|
|
@@ -3213,7 +3221,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3213
3221
|
}
|
|
3214
3222
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Create extends StandardParameters {
|
|
3215
3223
|
/**
|
|
3216
|
-
* GTM Workspace's API relative path.
|
|
3224
|
+
* GTM Workspace's API relative path.
|
|
3217
3225
|
*/
|
|
3218
3226
|
parent?: string;
|
|
3219
3227
|
/**
|
|
@@ -3223,7 +3231,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3223
3231
|
}
|
|
3224
3232
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Delete extends StandardParameters {
|
|
3225
3233
|
/**
|
|
3226
|
-
* GTM Folder's API relative path.
|
|
3234
|
+
* GTM Folder's API relative path.
|
|
3227
3235
|
*/
|
|
3228
3236
|
path?: string;
|
|
3229
3237
|
}
|
|
@@ -3233,13 +3241,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3233
3241
|
*/
|
|
3234
3242
|
pageToken?: string;
|
|
3235
3243
|
/**
|
|
3236
|
-
* GTM Folder's API relative path.
|
|
3244
|
+
* GTM Folder's API relative path.
|
|
3237
3245
|
*/
|
|
3238
3246
|
path?: string;
|
|
3239
3247
|
}
|
|
3240
3248
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Get extends StandardParameters {
|
|
3241
3249
|
/**
|
|
3242
|
-
* GTM Folder's API relative path.
|
|
3250
|
+
* GTM Folder's API relative path.
|
|
3243
3251
|
*/
|
|
3244
3252
|
path?: string;
|
|
3245
3253
|
}
|
|
@@ -3249,13 +3257,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3249
3257
|
*/
|
|
3250
3258
|
pageToken?: string;
|
|
3251
3259
|
/**
|
|
3252
|
-
* GTM Workspace's API relative path.
|
|
3260
|
+
* GTM Workspace's API relative path.
|
|
3253
3261
|
*/
|
|
3254
3262
|
parent?: string;
|
|
3255
3263
|
}
|
|
3256
3264
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder extends StandardParameters {
|
|
3257
3265
|
/**
|
|
3258
|
-
* GTM Folder's API relative path.
|
|
3266
|
+
* GTM Folder's API relative path.
|
|
3259
3267
|
*/
|
|
3260
3268
|
path?: string;
|
|
3261
3269
|
/**
|
|
@@ -3281,7 +3289,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3281
3289
|
*/
|
|
3282
3290
|
fingerprint?: string;
|
|
3283
3291
|
/**
|
|
3284
|
-
* GTM Folder's API relative path.
|
|
3292
|
+
* GTM Folder's API relative path.
|
|
3285
3293
|
*/
|
|
3286
3294
|
path?: string;
|
|
3287
3295
|
}
|
|
@@ -3291,7 +3299,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3291
3299
|
*/
|
|
3292
3300
|
fingerprint?: string;
|
|
3293
3301
|
/**
|
|
3294
|
-
* GTM Folder's API relative path.
|
|
3302
|
+
* GTM Folder's API relative path.
|
|
3295
3303
|
*/
|
|
3296
3304
|
path?: string;
|
|
3297
3305
|
/**
|
|
@@ -3375,7 +3383,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3375
3383
|
}
|
|
3376
3384
|
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create extends StandardParameters {
|
|
3377
3385
|
/**
|
|
3378
|
-
* Workspace's API relative path.
|
|
3386
|
+
* Workspace's API relative path.
|
|
3379
3387
|
*/
|
|
3380
3388
|
parent?: string;
|
|
3381
3389
|
/**
|
|
@@ -3385,13 +3393,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3385
3393
|
}
|
|
3386
3394
|
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete extends StandardParameters {
|
|
3387
3395
|
/**
|
|
3388
|
-
* Google tag config's API relative path.
|
|
3396
|
+
* Google tag config's API relative path.
|
|
3389
3397
|
*/
|
|
3390
3398
|
path?: string;
|
|
3391
3399
|
}
|
|
3392
3400
|
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get extends StandardParameters {
|
|
3393
3401
|
/**
|
|
3394
|
-
* Google tag config's API relative path.
|
|
3402
|
+
* Google tag config's API relative path.
|
|
3395
3403
|
*/
|
|
3396
3404
|
path?: string;
|
|
3397
3405
|
}
|
|
@@ -3401,7 +3409,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3401
3409
|
*/
|
|
3402
3410
|
pageToken?: string;
|
|
3403
3411
|
/**
|
|
3404
|
-
* Workspace's API relative path.
|
|
3412
|
+
* Workspace's API relative path.
|
|
3405
3413
|
*/
|
|
3406
3414
|
parent?: string;
|
|
3407
3415
|
}
|
|
@@ -3411,7 +3419,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3411
3419
|
*/
|
|
3412
3420
|
fingerprint?: string;
|
|
3413
3421
|
/**
|
|
3414
|
-
* Google tag config's API relative path.
|
|
3422
|
+
* Google tag config's API relative path.
|
|
3415
3423
|
*/
|
|
3416
3424
|
path?: string;
|
|
3417
3425
|
/**
|
|
@@ -3509,7 +3517,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3509
3517
|
}
|
|
3510
3518
|
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Create extends StandardParameters {
|
|
3511
3519
|
/**
|
|
3512
|
-
* GTM Workspace's API relative path.
|
|
3520
|
+
* GTM Workspace's API relative path.
|
|
3513
3521
|
*/
|
|
3514
3522
|
parent?: string;
|
|
3515
3523
|
/**
|
|
@@ -3519,13 +3527,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3519
3527
|
}
|
|
3520
3528
|
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Delete extends StandardParameters {
|
|
3521
3529
|
/**
|
|
3522
|
-
* GTM Tag's API relative path.
|
|
3530
|
+
* GTM Tag's API relative path.
|
|
3523
3531
|
*/
|
|
3524
3532
|
path?: string;
|
|
3525
3533
|
}
|
|
3526
3534
|
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Get extends StandardParameters {
|
|
3527
3535
|
/**
|
|
3528
|
-
* GTM Tag's API relative path.
|
|
3536
|
+
* GTM Tag's API relative path.
|
|
3529
3537
|
*/
|
|
3530
3538
|
path?: string;
|
|
3531
3539
|
}
|
|
@@ -3535,7 +3543,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3535
3543
|
*/
|
|
3536
3544
|
pageToken?: string;
|
|
3537
3545
|
/**
|
|
3538
|
-
* GTM Workspace's API relative path.
|
|
3546
|
+
* GTM Workspace's API relative path.
|
|
3539
3547
|
*/
|
|
3540
3548
|
parent?: string;
|
|
3541
3549
|
}
|
|
@@ -3545,7 +3553,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3545
3553
|
*/
|
|
3546
3554
|
fingerprint?: string;
|
|
3547
3555
|
/**
|
|
3548
|
-
* GTM Tag's API relative path.
|
|
3556
|
+
* GTM Tag's API relative path.
|
|
3549
3557
|
*/
|
|
3550
3558
|
path?: string;
|
|
3551
3559
|
}
|
|
@@ -3555,7 +3563,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3555
3563
|
*/
|
|
3556
3564
|
fingerprint?: string;
|
|
3557
3565
|
/**
|
|
3558
|
-
* GTM Tag's API relative path.
|
|
3566
|
+
* GTM Tag's API relative path.
|
|
3559
3567
|
*/
|
|
3560
3568
|
path?: string;
|
|
3561
3569
|
/**
|
|
@@ -3608,6 +3616,20 @@ export declare namespace tagmanager_v2 {
|
|
|
3608
3616
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Get, options: MethodOptions | BodyResponseCallback<Schema$CustomTemplate>, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
3609
3617
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Get, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
3610
3618
|
get(callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
3619
|
+
/**
|
|
3620
|
+
* Imports a GTM Custom Template from Gallery.
|
|
3621
|
+
*
|
|
3622
|
+
* @param params - Parameters for request
|
|
3623
|
+
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
|
|
3624
|
+
* @param callback - Optional callback that handles the response.
|
|
3625
|
+
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3626
|
+
*/
|
|
3627
|
+
import_from_gallery(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery, options: StreamMethodOptions): GaxiosPromise<Readable>;
|
|
3628
|
+
import_from_gallery(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery, options?: MethodOptions): GaxiosPromise<Schema$CustomTemplate>;
|
|
3629
|
+
import_from_gallery(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3630
|
+
import_from_gallery(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery, options: MethodOptions | BodyResponseCallback<Schema$CustomTemplate>, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
3631
|
+
import_from_gallery(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
3632
|
+
import_from_gallery(callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
3611
3633
|
/**
|
|
3612
3634
|
* Lists all GTM Templates of a GTM container workspace.
|
|
3613
3635
|
*
|
|
@@ -3653,7 +3675,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3653
3675
|
}
|
|
3654
3676
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Create extends StandardParameters {
|
|
3655
3677
|
/**
|
|
3656
|
-
* GTM Workspace's API relative path.
|
|
3678
|
+
* GTM Workspace's API relative path.
|
|
3657
3679
|
*/
|
|
3658
3680
|
parent?: string;
|
|
3659
3681
|
/**
|
|
@@ -3663,23 +3685,45 @@ export declare namespace tagmanager_v2 {
|
|
|
3663
3685
|
}
|
|
3664
3686
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Delete extends StandardParameters {
|
|
3665
3687
|
/**
|
|
3666
|
-
* GTM Custom Template's API relative path.
|
|
3688
|
+
* GTM Custom Template's API relative path.
|
|
3667
3689
|
*/
|
|
3668
3690
|
path?: string;
|
|
3669
3691
|
}
|
|
3670
3692
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Get extends StandardParameters {
|
|
3671
3693
|
/**
|
|
3672
|
-
* GTM Custom Template's API relative path.
|
|
3694
|
+
* GTM Custom Template's API relative path.
|
|
3673
3695
|
*/
|
|
3674
3696
|
path?: string;
|
|
3675
3697
|
}
|
|
3698
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery extends StandardParameters {
|
|
3699
|
+
/**
|
|
3700
|
+
* 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.
|
|
3701
|
+
*/
|
|
3702
|
+
acknowledgePermissions?: boolean;
|
|
3703
|
+
/**
|
|
3704
|
+
* Owner of the Gallery template to import
|
|
3705
|
+
*/
|
|
3706
|
+
galleryOwner?: string;
|
|
3707
|
+
/**
|
|
3708
|
+
* Repository of the Gallery template to import
|
|
3709
|
+
*/
|
|
3710
|
+
galleryRepository?: string;
|
|
3711
|
+
/**
|
|
3712
|
+
* SHA version of the Gallery template to import. Defaulted to the latest SHA version if not provided.
|
|
3713
|
+
*/
|
|
3714
|
+
gallerySha?: string;
|
|
3715
|
+
/**
|
|
3716
|
+
* GTM Workspace's API relative path.
|
|
3717
|
+
*/
|
|
3718
|
+
parent?: string;
|
|
3719
|
+
}
|
|
3676
3720
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$List extends StandardParameters {
|
|
3677
3721
|
/**
|
|
3678
3722
|
* Continuation token for fetching the next page of results.
|
|
3679
3723
|
*/
|
|
3680
3724
|
pageToken?: string;
|
|
3681
3725
|
/**
|
|
3682
|
-
* GTM Workspace's API relative path.
|
|
3726
|
+
* GTM Workspace's API relative path.
|
|
3683
3727
|
*/
|
|
3684
3728
|
parent?: string;
|
|
3685
3729
|
}
|
|
@@ -3689,7 +3733,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3689
3733
|
*/
|
|
3690
3734
|
fingerprint?: string;
|
|
3691
3735
|
/**
|
|
3692
|
-
* GTM Custom Template's API relative path.
|
|
3736
|
+
* GTM Custom Template's API relative path.
|
|
3693
3737
|
*/
|
|
3694
3738
|
path?: string;
|
|
3695
3739
|
}
|
|
@@ -3699,7 +3743,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3699
3743
|
*/
|
|
3700
3744
|
fingerprint?: string;
|
|
3701
3745
|
/**
|
|
3702
|
-
* GTM Custom Template's API relative path.
|
|
3746
|
+
* GTM Custom Template's API relative path.
|
|
3703
3747
|
*/
|
|
3704
3748
|
path?: string;
|
|
3705
3749
|
/**
|
|
@@ -3797,7 +3841,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3797
3841
|
}
|
|
3798
3842
|
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Create extends StandardParameters {
|
|
3799
3843
|
/**
|
|
3800
|
-
* GTM Workspace's API relative path.
|
|
3844
|
+
* GTM Workspace's API relative path.
|
|
3801
3845
|
*/
|
|
3802
3846
|
parent?: string;
|
|
3803
3847
|
/**
|
|
@@ -3807,13 +3851,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3807
3851
|
}
|
|
3808
3852
|
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete extends StandardParameters {
|
|
3809
3853
|
/**
|
|
3810
|
-
* GTM Transformation's API relative path.
|
|
3854
|
+
* GTM Transformation's API relative path.
|
|
3811
3855
|
*/
|
|
3812
3856
|
path?: string;
|
|
3813
3857
|
}
|
|
3814
3858
|
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Get extends StandardParameters {
|
|
3815
3859
|
/**
|
|
3816
|
-
* GTM Transformation's API relative path.
|
|
3860
|
+
* GTM Transformation's API relative path.
|
|
3817
3861
|
*/
|
|
3818
3862
|
path?: string;
|
|
3819
3863
|
}
|
|
@@ -3823,7 +3867,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3823
3867
|
*/
|
|
3824
3868
|
pageToken?: string;
|
|
3825
3869
|
/**
|
|
3826
|
-
* GTM Workspace's API relative path.
|
|
3870
|
+
* GTM Workspace's API relative path.
|
|
3827
3871
|
*/
|
|
3828
3872
|
parent?: string;
|
|
3829
3873
|
}
|
|
@@ -3833,7 +3877,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3833
3877
|
*/
|
|
3834
3878
|
fingerprint?: string;
|
|
3835
3879
|
/**
|
|
3836
|
-
* GTM Transformation's API relative path.
|
|
3880
|
+
* GTM Transformation's API relative path.
|
|
3837
3881
|
*/
|
|
3838
3882
|
path?: string;
|
|
3839
3883
|
}
|
|
@@ -3843,7 +3887,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3843
3887
|
*/
|
|
3844
3888
|
fingerprint?: string;
|
|
3845
3889
|
/**
|
|
3846
|
-
* GTM Transformation's API relative path.
|
|
3890
|
+
* GTM Transformation's API relative path.
|
|
3847
3891
|
*/
|
|
3848
3892
|
path?: string;
|
|
3849
3893
|
/**
|
|
@@ -3941,7 +3985,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3941
3985
|
}
|
|
3942
3986
|
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Create extends StandardParameters {
|
|
3943
3987
|
/**
|
|
3944
|
-
* GTM Workspace's API relative path.
|
|
3988
|
+
* GTM Workspace's API relative path.
|
|
3945
3989
|
*/
|
|
3946
3990
|
parent?: string;
|
|
3947
3991
|
/**
|
|
@@ -3951,13 +3995,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3951
3995
|
}
|
|
3952
3996
|
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete extends StandardParameters {
|
|
3953
3997
|
/**
|
|
3954
|
-
* GTM Trigger's API relative path.
|
|
3998
|
+
* GTM Trigger's API relative path.
|
|
3955
3999
|
*/
|
|
3956
4000
|
path?: string;
|
|
3957
4001
|
}
|
|
3958
4002
|
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Get extends StandardParameters {
|
|
3959
4003
|
/**
|
|
3960
|
-
* GTM Trigger's API relative path.
|
|
4004
|
+
* GTM Trigger's API relative path.
|
|
3961
4005
|
*/
|
|
3962
4006
|
path?: string;
|
|
3963
4007
|
}
|
|
@@ -3967,7 +4011,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3967
4011
|
*/
|
|
3968
4012
|
pageToken?: string;
|
|
3969
4013
|
/**
|
|
3970
|
-
* GTM Workspace's API relative path.
|
|
4014
|
+
* GTM Workspace's API relative path.
|
|
3971
4015
|
*/
|
|
3972
4016
|
parent?: string;
|
|
3973
4017
|
}
|
|
@@ -3977,7 +4021,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3977
4021
|
*/
|
|
3978
4022
|
fingerprint?: string;
|
|
3979
4023
|
/**
|
|
3980
|
-
* GTM Trigger's API relative path.
|
|
4024
|
+
* GTM Trigger's API relative path.
|
|
3981
4025
|
*/
|
|
3982
4026
|
path?: string;
|
|
3983
4027
|
}
|
|
@@ -3987,7 +4031,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3987
4031
|
*/
|
|
3988
4032
|
fingerprint?: string;
|
|
3989
4033
|
/**
|
|
3990
|
-
* GTM Trigger's API relative path.
|
|
4034
|
+
* GTM Trigger's API relative path.
|
|
3991
4035
|
*/
|
|
3992
4036
|
path?: string;
|
|
3993
4037
|
/**
|
|
@@ -4085,7 +4129,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4085
4129
|
}
|
|
4086
4130
|
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Create extends StandardParameters {
|
|
4087
4131
|
/**
|
|
4088
|
-
* GTM Workspace's API relative path.
|
|
4132
|
+
* GTM Workspace's API relative path.
|
|
4089
4133
|
*/
|
|
4090
4134
|
parent?: string;
|
|
4091
4135
|
/**
|
|
@@ -4095,13 +4139,13 @@ export declare namespace tagmanager_v2 {
|
|
|
4095
4139
|
}
|
|
4096
4140
|
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Delete extends StandardParameters {
|
|
4097
4141
|
/**
|
|
4098
|
-
* GTM Variable's API relative path.
|
|
4142
|
+
* GTM Variable's API relative path.
|
|
4099
4143
|
*/
|
|
4100
4144
|
path?: string;
|
|
4101
4145
|
}
|
|
4102
4146
|
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Get extends StandardParameters {
|
|
4103
4147
|
/**
|
|
4104
|
-
* GTM Variable's API relative path.
|
|
4148
|
+
* GTM Variable's API relative path.
|
|
4105
4149
|
*/
|
|
4106
4150
|
path?: string;
|
|
4107
4151
|
}
|
|
@@ -4111,7 +4155,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4111
4155
|
*/
|
|
4112
4156
|
pageToken?: string;
|
|
4113
4157
|
/**
|
|
4114
|
-
* GTM Workspace's API relative path.
|
|
4158
|
+
* GTM Workspace's API relative path.
|
|
4115
4159
|
*/
|
|
4116
4160
|
parent?: string;
|
|
4117
4161
|
}
|
|
@@ -4121,7 +4165,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4121
4165
|
*/
|
|
4122
4166
|
fingerprint?: string;
|
|
4123
4167
|
/**
|
|
4124
|
-
* GTM Variable's API relative path.
|
|
4168
|
+
* GTM Variable's API relative path.
|
|
4125
4169
|
*/
|
|
4126
4170
|
path?: string;
|
|
4127
4171
|
}
|
|
@@ -4131,7 +4175,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4131
4175
|
*/
|
|
4132
4176
|
fingerprint?: string;
|
|
4133
4177
|
/**
|
|
4134
|
-
* GTM Variable's API relative path.
|
|
4178
|
+
* GTM Variable's API relative path.
|
|
4135
4179
|
*/
|
|
4136
4180
|
path?: string;
|
|
4137
4181
|
/**
|
|
@@ -4229,7 +4273,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4229
4273
|
}
|
|
4230
4274
|
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Create extends StandardParameters {
|
|
4231
4275
|
/**
|
|
4232
|
-
* GTM Workspace's API relative path.
|
|
4276
|
+
* GTM Workspace's API relative path.
|
|
4233
4277
|
*/
|
|
4234
4278
|
parent?: string;
|
|
4235
4279
|
/**
|
|
@@ -4239,13 +4283,13 @@ export declare namespace tagmanager_v2 {
|
|
|
4239
4283
|
}
|
|
4240
4284
|
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Delete extends StandardParameters {
|
|
4241
4285
|
/**
|
|
4242
|
-
* GTM Zone's API relative path.
|
|
4286
|
+
* GTM Zone's API relative path.
|
|
4243
4287
|
*/
|
|
4244
4288
|
path?: string;
|
|
4245
4289
|
}
|
|
4246
4290
|
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Get extends StandardParameters {
|
|
4247
4291
|
/**
|
|
4248
|
-
* GTM Zone's API relative path.
|
|
4292
|
+
* GTM Zone's API relative path.
|
|
4249
4293
|
*/
|
|
4250
4294
|
path?: string;
|
|
4251
4295
|
}
|
|
@@ -4255,7 +4299,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4255
4299
|
*/
|
|
4256
4300
|
pageToken?: string;
|
|
4257
4301
|
/**
|
|
4258
|
-
* GTM Workspace's API relative path.
|
|
4302
|
+
* GTM Workspace's API relative path.
|
|
4259
4303
|
*/
|
|
4260
4304
|
parent?: string;
|
|
4261
4305
|
}
|
|
@@ -4265,7 +4309,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4265
4309
|
*/
|
|
4266
4310
|
fingerprint?: string;
|
|
4267
4311
|
/**
|
|
4268
|
-
* GTM Zone's API relative path.
|
|
4312
|
+
* GTM Zone's API relative path.
|
|
4269
4313
|
*/
|
|
4270
4314
|
path?: string;
|
|
4271
4315
|
}
|
|
@@ -4275,7 +4319,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4275
4319
|
*/
|
|
4276
4320
|
fingerprint?: string;
|
|
4277
4321
|
/**
|
|
4278
|
-
* GTM Zone's API relative path.
|
|
4322
|
+
* GTM Zone's API relative path.
|
|
4279
4323
|
*/
|
|
4280
4324
|
path?: string;
|
|
4281
4325
|
/**
|
|
@@ -4359,7 +4403,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4359
4403
|
}
|
|
4360
4404
|
export interface Params$Resource$Accounts$User_permissions$Create extends StandardParameters {
|
|
4361
4405
|
/**
|
|
4362
|
-
* GTM Account's API relative path.
|
|
4406
|
+
* GTM Account's API relative path.
|
|
4363
4407
|
*/
|
|
4364
4408
|
parent?: string;
|
|
4365
4409
|
/**
|
|
@@ -4369,13 +4413,13 @@ export declare namespace tagmanager_v2 {
|
|
|
4369
4413
|
}
|
|
4370
4414
|
export interface Params$Resource$Accounts$User_permissions$Delete extends StandardParameters {
|
|
4371
4415
|
/**
|
|
4372
|
-
* GTM UserPermission's API relative path.
|
|
4416
|
+
* GTM UserPermission's API relative path.
|
|
4373
4417
|
*/
|
|
4374
4418
|
path?: string;
|
|
4375
4419
|
}
|
|
4376
4420
|
export interface Params$Resource$Accounts$User_permissions$Get extends StandardParameters {
|
|
4377
4421
|
/**
|
|
4378
|
-
* GTM UserPermission's API relative path.
|
|
4422
|
+
* GTM UserPermission's API relative path.
|
|
4379
4423
|
*/
|
|
4380
4424
|
path?: string;
|
|
4381
4425
|
}
|
|
@@ -4385,13 +4429,13 @@ export declare namespace tagmanager_v2 {
|
|
|
4385
4429
|
*/
|
|
4386
4430
|
pageToken?: string;
|
|
4387
4431
|
/**
|
|
4388
|
-
* GTM Account's API relative path.
|
|
4432
|
+
* GTM Account's API relative path.
|
|
4389
4433
|
*/
|
|
4390
4434
|
parent?: string;
|
|
4391
4435
|
}
|
|
4392
4436
|
export interface Params$Resource$Accounts$User_permissions$Update extends StandardParameters {
|
|
4393
4437
|
/**
|
|
4394
|
-
* GTM UserPermission's API relative path.
|
|
4438
|
+
* GTM UserPermission's API relative path.
|
|
4395
4439
|
*/
|
|
4396
4440
|
path?: string;
|
|
4397
4441
|
/**
|