@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/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
|
*/
|
|
@@ -823,12 +827,20 @@ export declare namespace tagmanager_v2 {
|
|
|
823
827
|
* The signature of the community gallery template as computed at import time. This value is recomputed whenever the template is updated from the gallery.
|
|
824
828
|
*/
|
|
825
829
|
signature?: string | null;
|
|
830
|
+
/**
|
|
831
|
+
* The developer id of the community gallery template. This value is set whenever the template is created from the gallery.
|
|
832
|
+
*/
|
|
833
|
+
templateDeveloperId?: string | null;
|
|
826
834
|
/**
|
|
827
835
|
* The version of the community gallery template.
|
|
828
836
|
*/
|
|
829
837
|
version?: string | null;
|
|
830
838
|
}
|
|
831
839
|
export interface Schema$GetContainerSnippetResponse {
|
|
840
|
+
/**
|
|
841
|
+
* Server container config param for manually provisioning a tagging server.
|
|
842
|
+
*/
|
|
843
|
+
containerConfig?: string | null;
|
|
832
844
|
/**
|
|
833
845
|
* Tagging snippet for a Container.
|
|
834
846
|
*/
|
|
@@ -868,7 +880,7 @@ export declare namespace tagmanager_v2 {
|
|
|
868
880
|
*/
|
|
869
881
|
gtagConfigId?: string | null;
|
|
870
882
|
/**
|
|
871
|
-
* The Google tag config's parameters.
|
|
883
|
+
* The Google tag config's parameters.
|
|
872
884
|
*/
|
|
873
885
|
parameter?: Schema$Parameter[];
|
|
874
886
|
/**
|
|
@@ -880,7 +892,7 @@ export declare namespace tagmanager_v2 {
|
|
|
880
892
|
*/
|
|
881
893
|
tagManagerUrl?: string | null;
|
|
882
894
|
/**
|
|
883
|
-
* Google tag config type.
|
|
895
|
+
* Google tag config type.
|
|
884
896
|
*/
|
|
885
897
|
type?: string | null;
|
|
886
898
|
/**
|
|
@@ -1109,27 +1121,27 @@ export declare namespace tagmanager_v2 {
|
|
|
1109
1121
|
*/
|
|
1110
1122
|
export interface Schema$Parameter {
|
|
1111
1123
|
/**
|
|
1112
|
-
* 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.
|
|
1113
1125
|
*/
|
|
1114
1126
|
isWeakReference?: boolean | null;
|
|
1115
1127
|
/**
|
|
1116
|
-
* 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.
|
|
1117
1129
|
*/
|
|
1118
1130
|
key?: string | null;
|
|
1119
1131
|
/**
|
|
1120
|
-
* This list parameter's parameters (keys will be ignored).
|
|
1132
|
+
* This list parameter's parameters (keys will be ignored).
|
|
1121
1133
|
*/
|
|
1122
1134
|
list?: Schema$Parameter[];
|
|
1123
1135
|
/**
|
|
1124
|
-
* 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).
|
|
1125
1137
|
*/
|
|
1126
1138
|
map?: Schema$Parameter[];
|
|
1127
1139
|
/**
|
|
1128
|
-
* 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
|
|
1129
1141
|
*/
|
|
1130
1142
|
type?: string | null;
|
|
1131
1143
|
/**
|
|
1132
|
-
* A parameter's value (may contain variable references
|
|
1144
|
+
* A parameter's value (may contain variable references). as appropriate to the specified type.
|
|
1133
1145
|
*/
|
|
1134
1146
|
value?: string | null;
|
|
1135
1147
|
}
|
|
@@ -1292,15 +1304,15 @@ export declare namespace tagmanager_v2 {
|
|
|
1292
1304
|
*/
|
|
1293
1305
|
accountId?: string | null;
|
|
1294
1306
|
/**
|
|
1295
|
-
* 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.
|
|
1296
1308
|
*/
|
|
1297
1309
|
blockingRuleId?: string[] | null;
|
|
1298
1310
|
/**
|
|
1299
|
-
* 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.
|
|
1300
1312
|
*/
|
|
1301
1313
|
blockingTriggerId?: string[] | null;
|
|
1302
1314
|
/**
|
|
1303
|
-
* Consent settings of a tag.
|
|
1315
|
+
* Consent settings of a tag.
|
|
1304
1316
|
*/
|
|
1305
1317
|
consentSettings?: Schema$TagConsentSetting;
|
|
1306
1318
|
/**
|
|
@@ -1312,35 +1324,35 @@ export declare namespace tagmanager_v2 {
|
|
|
1312
1324
|
*/
|
|
1313
1325
|
fingerprint?: string | null;
|
|
1314
1326
|
/**
|
|
1315
|
-
* 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.
|
|
1316
1328
|
*/
|
|
1317
1329
|
firingRuleId?: string[] | null;
|
|
1318
1330
|
/**
|
|
1319
|
-
* 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.
|
|
1320
1332
|
*/
|
|
1321
1333
|
firingTriggerId?: string[] | null;
|
|
1322
1334
|
/**
|
|
1323
|
-
* 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).
|
|
1324
1336
|
*/
|
|
1325
1337
|
liveOnly?: boolean | null;
|
|
1326
1338
|
/**
|
|
1327
|
-
* 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.
|
|
1328
1340
|
*/
|
|
1329
1341
|
monitoringMetadata?: Schema$Parameter;
|
|
1330
1342
|
/**
|
|
1331
|
-
* 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.
|
|
1332
1344
|
*/
|
|
1333
1345
|
monitoringMetadataTagNameKey?: string | null;
|
|
1334
1346
|
/**
|
|
1335
|
-
* Tag display name.
|
|
1347
|
+
* Tag display name.
|
|
1336
1348
|
*/
|
|
1337
1349
|
name?: string | null;
|
|
1338
1350
|
/**
|
|
1339
|
-
* User notes on how to apply this tag in the container.
|
|
1351
|
+
* User notes on how to apply this tag in the container.
|
|
1340
1352
|
*/
|
|
1341
1353
|
notes?: string | null;
|
|
1342
1354
|
/**
|
|
1343
|
-
* The tag's parameters.
|
|
1355
|
+
* The tag's parameters.
|
|
1344
1356
|
*/
|
|
1345
1357
|
parameter?: Schema$Parameter[];
|
|
1346
1358
|
/**
|
|
@@ -1352,19 +1364,19 @@ export declare namespace tagmanager_v2 {
|
|
|
1352
1364
|
*/
|
|
1353
1365
|
path?: string | null;
|
|
1354
1366
|
/**
|
|
1355
|
-
* 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.
|
|
1356
1368
|
*/
|
|
1357
1369
|
paused?: boolean | null;
|
|
1358
1370
|
/**
|
|
1359
|
-
* 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.
|
|
1360
1372
|
*/
|
|
1361
1373
|
priority?: Schema$Parameter;
|
|
1362
1374
|
/**
|
|
1363
|
-
* The end timestamp in milliseconds to schedule a tag.
|
|
1375
|
+
* The end timestamp in milliseconds to schedule a tag.
|
|
1364
1376
|
*/
|
|
1365
1377
|
scheduleEndMs?: string | null;
|
|
1366
1378
|
/**
|
|
1367
|
-
* The start timestamp in milliseconds to schedule a tag.
|
|
1379
|
+
* The start timestamp in milliseconds to schedule a tag.
|
|
1368
1380
|
*/
|
|
1369
1381
|
scheduleStartMs?: string | null;
|
|
1370
1382
|
/**
|
|
@@ -1388,7 +1400,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1388
1400
|
*/
|
|
1389
1401
|
teardownTag?: Schema$TeardownTag[];
|
|
1390
1402
|
/**
|
|
1391
|
-
* GTM Tag Type.
|
|
1403
|
+
* GTM Tag Type.
|
|
1392
1404
|
*/
|
|
1393
1405
|
type?: string | null;
|
|
1394
1406
|
/**
|
|
@@ -1436,15 +1448,15 @@ export declare namespace tagmanager_v2 {
|
|
|
1436
1448
|
*/
|
|
1437
1449
|
fingerprint?: string | null;
|
|
1438
1450
|
/**
|
|
1439
|
-
* Transformation display name.
|
|
1451
|
+
* Transformation display name.
|
|
1440
1452
|
*/
|
|
1441
1453
|
name?: string | null;
|
|
1442
1454
|
/**
|
|
1443
|
-
* User notes on how to apply this transformation in the container.
|
|
1455
|
+
* User notes on how to apply this transformation in the container.
|
|
1444
1456
|
*/
|
|
1445
1457
|
notes?: string | null;
|
|
1446
1458
|
/**
|
|
1447
|
-
* The transformation's parameters.
|
|
1459
|
+
* The transformation's parameters.
|
|
1448
1460
|
*/
|
|
1449
1461
|
parameter?: Schema$Parameter[];
|
|
1450
1462
|
/**
|
|
@@ -1464,7 +1476,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1464
1476
|
*/
|
|
1465
1477
|
transformationId?: string | null;
|
|
1466
1478
|
/**
|
|
1467
|
-
* Transformation type.
|
|
1479
|
+
* Transformation type.
|
|
1468
1480
|
*/
|
|
1469
1481
|
type?: string | null;
|
|
1470
1482
|
/**
|
|
@@ -1481,11 +1493,11 @@ export declare namespace tagmanager_v2 {
|
|
|
1481
1493
|
*/
|
|
1482
1494
|
accountId?: string | null;
|
|
1483
1495
|
/**
|
|
1484
|
-
* Used in the case of auto event tracking.
|
|
1496
|
+
* Used in the case of auto event tracking.
|
|
1485
1497
|
*/
|
|
1486
1498
|
autoEventFilter?: Schema$Condition[];
|
|
1487
1499
|
/**
|
|
1488
|
-
* 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.
|
|
1489
1501
|
*/
|
|
1490
1502
|
checkValidation?: Schema$Parameter;
|
|
1491
1503
|
/**
|
|
@@ -1493,19 +1505,19 @@ export declare namespace tagmanager_v2 {
|
|
|
1493
1505
|
*/
|
|
1494
1506
|
containerId?: string | null;
|
|
1495
1507
|
/**
|
|
1496
|
-
* 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.
|
|
1497
1509
|
*/
|
|
1498
1510
|
continuousTimeMinMilliseconds?: Schema$Parameter;
|
|
1499
1511
|
/**
|
|
1500
|
-
* 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.
|
|
1501
1513
|
*/
|
|
1502
1514
|
customEventFilter?: Schema$Condition[];
|
|
1503
1515
|
/**
|
|
1504
|
-
* 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.
|
|
1505
1517
|
*/
|
|
1506
1518
|
eventName?: Schema$Parameter;
|
|
1507
1519
|
/**
|
|
1508
|
-
* The trigger will only fire iff all Conditions are true.
|
|
1520
|
+
* The trigger will only fire iff all Conditions are true.
|
|
1509
1521
|
*/
|
|
1510
1522
|
filter?: Schema$Condition[];
|
|
1511
1523
|
/**
|
|
@@ -1513,35 +1525,35 @@ export declare namespace tagmanager_v2 {
|
|
|
1513
1525
|
*/
|
|
1514
1526
|
fingerprint?: string | null;
|
|
1515
1527
|
/**
|
|
1516
|
-
* 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.
|
|
1517
1529
|
*/
|
|
1518
1530
|
horizontalScrollPercentageList?: Schema$Parameter;
|
|
1519
1531
|
/**
|
|
1520
|
-
* 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.
|
|
1521
1533
|
*/
|
|
1522
1534
|
interval?: Schema$Parameter;
|
|
1523
1535
|
/**
|
|
1524
|
-
* 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.
|
|
1525
1537
|
*/
|
|
1526
1538
|
intervalSeconds?: Schema$Parameter;
|
|
1527
1539
|
/**
|
|
1528
|
-
* 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.
|
|
1529
1541
|
*/
|
|
1530
1542
|
limit?: Schema$Parameter;
|
|
1531
1543
|
/**
|
|
1532
|
-
* 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.
|
|
1533
1545
|
*/
|
|
1534
1546
|
maxTimerLengthSeconds?: Schema$Parameter;
|
|
1535
1547
|
/**
|
|
1536
|
-
* Trigger display name.
|
|
1548
|
+
* Trigger display name.
|
|
1537
1549
|
*/
|
|
1538
1550
|
name?: string | null;
|
|
1539
1551
|
/**
|
|
1540
|
-
* User notes on how to apply this trigger in the container.
|
|
1552
|
+
* User notes on how to apply this trigger in the container.
|
|
1541
1553
|
*/
|
|
1542
1554
|
notes?: string | null;
|
|
1543
1555
|
/**
|
|
1544
|
-
* Additional parameters.
|
|
1556
|
+
* Additional parameters.
|
|
1545
1557
|
*/
|
|
1546
1558
|
parameter?: Schema$Parameter[];
|
|
1547
1559
|
/**
|
|
@@ -1553,7 +1565,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1553
1565
|
*/
|
|
1554
1566
|
path?: string | null;
|
|
1555
1567
|
/**
|
|
1556
|
-
* 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.
|
|
1557
1569
|
*/
|
|
1558
1570
|
selector?: Schema$Parameter;
|
|
1559
1571
|
/**
|
|
@@ -1561,7 +1573,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1561
1573
|
*/
|
|
1562
1574
|
tagManagerUrl?: string | null;
|
|
1563
1575
|
/**
|
|
1564
|
-
* 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.
|
|
1565
1577
|
*/
|
|
1566
1578
|
totalTimeMinMilliseconds?: Schema$Parameter;
|
|
1567
1579
|
/**
|
|
@@ -1569,35 +1581,35 @@ export declare namespace tagmanager_v2 {
|
|
|
1569
1581
|
*/
|
|
1570
1582
|
triggerId?: string | null;
|
|
1571
1583
|
/**
|
|
1572
|
-
* Defines the data layer event that causes this trigger.
|
|
1584
|
+
* Defines the data layer event that causes this trigger.
|
|
1573
1585
|
*/
|
|
1574
1586
|
type?: string | null;
|
|
1575
1587
|
/**
|
|
1576
|
-
* 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.
|
|
1577
1589
|
*/
|
|
1578
1590
|
uniqueTriggerId?: Schema$Parameter;
|
|
1579
1591
|
/**
|
|
1580
|
-
* 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.
|
|
1581
1593
|
*/
|
|
1582
1594
|
verticalScrollPercentageList?: Schema$Parameter;
|
|
1583
1595
|
/**
|
|
1584
|
-
* 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.
|
|
1585
1597
|
*/
|
|
1586
1598
|
visibilitySelector?: Schema$Parameter;
|
|
1587
1599
|
/**
|
|
1588
|
-
* 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.
|
|
1589
1601
|
*/
|
|
1590
1602
|
visiblePercentageMax?: Schema$Parameter;
|
|
1591
1603
|
/**
|
|
1592
|
-
* 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.
|
|
1593
1605
|
*/
|
|
1594
1606
|
visiblePercentageMin?: Schema$Parameter;
|
|
1595
1607
|
/**
|
|
1596
|
-
* 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.
|
|
1597
1609
|
*/
|
|
1598
1610
|
waitForTags?: Schema$Parameter;
|
|
1599
1611
|
/**
|
|
1600
|
-
* 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.
|
|
1601
1613
|
*/
|
|
1602
1614
|
waitForTagsTimeout?: Schema$Parameter;
|
|
1603
1615
|
/**
|
|
@@ -1610,7 +1622,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1610
1622
|
*/
|
|
1611
1623
|
export interface Schema$UserPermission {
|
|
1612
1624
|
/**
|
|
1613
|
-
* GTM Account access permissions.
|
|
1625
|
+
* GTM Account access permissions.
|
|
1614
1626
|
*/
|
|
1615
1627
|
accountAccess?: Schema$AccountAccess;
|
|
1616
1628
|
/**
|
|
@@ -1618,11 +1630,11 @@ export declare namespace tagmanager_v2 {
|
|
|
1618
1630
|
*/
|
|
1619
1631
|
accountId?: string | null;
|
|
1620
1632
|
/**
|
|
1621
|
-
* GTM Container access permissions.
|
|
1633
|
+
* GTM Container access permissions.
|
|
1622
1634
|
*/
|
|
1623
1635
|
containerAccess?: Schema$ContainerAccess[];
|
|
1624
1636
|
/**
|
|
1625
|
-
* User's email address.
|
|
1637
|
+
* User's email address.
|
|
1626
1638
|
*/
|
|
1627
1639
|
emailAddress?: string | null;
|
|
1628
1640
|
/**
|
|
@@ -1643,11 +1655,11 @@ export declare namespace tagmanager_v2 {
|
|
|
1643
1655
|
*/
|
|
1644
1656
|
containerId?: string | null;
|
|
1645
1657
|
/**
|
|
1646
|
-
* 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.
|
|
1647
1659
|
*/
|
|
1648
1660
|
disablingTriggerId?: string[] | null;
|
|
1649
1661
|
/**
|
|
1650
|
-
* 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.
|
|
1651
1663
|
*/
|
|
1652
1664
|
enablingTriggerId?: string[] | null;
|
|
1653
1665
|
/**
|
|
@@ -1659,15 +1671,15 @@ export declare namespace tagmanager_v2 {
|
|
|
1659
1671
|
*/
|
|
1660
1672
|
formatValue?: Schema$VariableFormatValue;
|
|
1661
1673
|
/**
|
|
1662
|
-
* Variable display name.
|
|
1674
|
+
* Variable display name.
|
|
1663
1675
|
*/
|
|
1664
1676
|
name?: string | null;
|
|
1665
1677
|
/**
|
|
1666
|
-
* User notes on how to apply this variable in the container.
|
|
1678
|
+
* User notes on how to apply this variable in the container.
|
|
1667
1679
|
*/
|
|
1668
1680
|
notes?: string | null;
|
|
1669
1681
|
/**
|
|
1670
|
-
* The variable's parameters.
|
|
1682
|
+
* The variable's parameters.
|
|
1671
1683
|
*/
|
|
1672
1684
|
parameter?: Schema$Parameter[];
|
|
1673
1685
|
/**
|
|
@@ -1679,11 +1691,11 @@ export declare namespace tagmanager_v2 {
|
|
|
1679
1691
|
*/
|
|
1680
1692
|
path?: string | null;
|
|
1681
1693
|
/**
|
|
1682
|
-
* The end timestamp in milliseconds to schedule a variable.
|
|
1694
|
+
* The end timestamp in milliseconds to schedule a variable.
|
|
1683
1695
|
*/
|
|
1684
1696
|
scheduleEndMs?: string | null;
|
|
1685
1697
|
/**
|
|
1686
|
-
* The start timestamp in milliseconds to schedule a variable.
|
|
1698
|
+
* The start timestamp in milliseconds to schedule a variable.
|
|
1687
1699
|
*/
|
|
1688
1700
|
scheduleStartMs?: string | null;
|
|
1689
1701
|
/**
|
|
@@ -1691,7 +1703,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1691
1703
|
*/
|
|
1692
1704
|
tagManagerUrl?: string | null;
|
|
1693
1705
|
/**
|
|
1694
|
-
* GTM Variable Type.
|
|
1706
|
+
* GTM Variable Type.
|
|
1695
1707
|
*/
|
|
1696
1708
|
type?: string | null;
|
|
1697
1709
|
/**
|
|
@@ -1738,7 +1750,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1738
1750
|
*/
|
|
1739
1751
|
containerId?: string | null;
|
|
1740
1752
|
/**
|
|
1741
|
-
* Workspace description.
|
|
1753
|
+
* Workspace description.
|
|
1742
1754
|
*/
|
|
1743
1755
|
description?: string | null;
|
|
1744
1756
|
/**
|
|
@@ -1746,7 +1758,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1746
1758
|
*/
|
|
1747
1759
|
fingerprint?: string | null;
|
|
1748
1760
|
/**
|
|
1749
|
-
* Workspace display name.
|
|
1761
|
+
* Workspace display name.
|
|
1750
1762
|
*/
|
|
1751
1763
|
name?: string | null;
|
|
1752
1764
|
/**
|
|
@@ -1904,7 +1916,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1904
1916
|
}
|
|
1905
1917
|
export interface Params$Resource$Accounts$Get extends StandardParameters {
|
|
1906
1918
|
/**
|
|
1907
|
-
* GTM Account's API relative path.
|
|
1919
|
+
* GTM Account's API relative path.
|
|
1908
1920
|
*/
|
|
1909
1921
|
path?: string;
|
|
1910
1922
|
}
|
|
@@ -1924,7 +1936,7 @@ export declare namespace tagmanager_v2 {
|
|
|
1924
1936
|
*/
|
|
1925
1937
|
fingerprint?: string;
|
|
1926
1938
|
/**
|
|
1927
|
-
* GTM Account's API relative path.
|
|
1939
|
+
* GTM Account's API relative path.
|
|
1928
1940
|
*/
|
|
1929
1941
|
path?: string;
|
|
1930
1942
|
/**
|
|
@@ -2077,7 +2089,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2077
2089
|
*/
|
|
2078
2090
|
containerId?: string;
|
|
2079
2091
|
/**
|
|
2080
|
-
* GTM Container's API relative path.
|
|
2092
|
+
* GTM Container's API relative path.
|
|
2081
2093
|
*/
|
|
2082
2094
|
path?: string;
|
|
2083
2095
|
/**
|
|
@@ -2087,7 +2099,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2087
2099
|
}
|
|
2088
2100
|
export interface Params$Resource$Accounts$Containers$Create extends StandardParameters {
|
|
2089
2101
|
/**
|
|
2090
|
-
* GTM Account's API relative path.
|
|
2102
|
+
* GTM Account's API relative path.
|
|
2091
2103
|
*/
|
|
2092
2104
|
parent?: string;
|
|
2093
2105
|
/**
|
|
@@ -2097,13 +2109,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2097
2109
|
}
|
|
2098
2110
|
export interface Params$Resource$Accounts$Containers$Delete extends StandardParameters {
|
|
2099
2111
|
/**
|
|
2100
|
-
* GTM Container's API relative path.
|
|
2112
|
+
* GTM Container's API relative path.
|
|
2101
2113
|
*/
|
|
2102
2114
|
path?: string;
|
|
2103
2115
|
}
|
|
2104
2116
|
export interface Params$Resource$Accounts$Containers$Get extends StandardParameters {
|
|
2105
2117
|
/**
|
|
2106
|
-
* GTM Container's API relative path.
|
|
2118
|
+
* GTM Container's API relative path.
|
|
2107
2119
|
*/
|
|
2108
2120
|
path?: string;
|
|
2109
2121
|
}
|
|
@@ -2113,17 +2125,17 @@ export declare namespace tagmanager_v2 {
|
|
|
2113
2125
|
*/
|
|
2114
2126
|
pageToken?: string;
|
|
2115
2127
|
/**
|
|
2116
|
-
* GTM Account's API relative path.
|
|
2128
|
+
* GTM Account's API relative path.
|
|
2117
2129
|
*/
|
|
2118
2130
|
parent?: string;
|
|
2119
2131
|
}
|
|
2120
2132
|
export interface Params$Resource$Accounts$Containers$Lookup extends StandardParameters {
|
|
2121
2133
|
/**
|
|
2122
|
-
* 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.
|
|
2123
2135
|
*/
|
|
2124
2136
|
destinationId?: string;
|
|
2125
2137
|
/**
|
|
2126
|
-
* 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.
|
|
2127
2139
|
*/
|
|
2128
2140
|
tagId?: string;
|
|
2129
2141
|
}
|
|
@@ -2145,7 +2157,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2145
2157
|
*/
|
|
2146
2158
|
copyUsers?: boolean;
|
|
2147
2159
|
/**
|
|
2148
|
-
* GTM Container's API relative path.
|
|
2160
|
+
* GTM Container's API relative path.
|
|
2149
2161
|
*/
|
|
2150
2162
|
path?: string;
|
|
2151
2163
|
/**
|
|
@@ -2159,7 +2171,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2159
2171
|
}
|
|
2160
2172
|
export interface Params$Resource$Accounts$Containers$Snippet extends StandardParameters {
|
|
2161
2173
|
/**
|
|
2162
|
-
* Container snippet's API relative path.
|
|
2174
|
+
* Container snippet's API relative path.
|
|
2163
2175
|
*/
|
|
2164
2176
|
path?: string;
|
|
2165
2177
|
}
|
|
@@ -2169,7 +2181,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2169
2181
|
*/
|
|
2170
2182
|
fingerprint?: string;
|
|
2171
2183
|
/**
|
|
2172
|
-
* GTM Container's API relative path.
|
|
2184
|
+
* GTM Container's API relative path.
|
|
2173
2185
|
*/
|
|
2174
2186
|
path?: string;
|
|
2175
2187
|
/**
|
|
@@ -2225,7 +2237,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2225
2237
|
}
|
|
2226
2238
|
export interface Params$Resource$Accounts$Containers$Destinations$Get extends StandardParameters {
|
|
2227
2239
|
/**
|
|
2228
|
-
* Google Tag Destination's API relative path.
|
|
2240
|
+
* Google Tag Destination's API relative path.
|
|
2229
2241
|
*/
|
|
2230
2242
|
path?: string;
|
|
2231
2243
|
}
|
|
@@ -2239,13 +2251,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2239
2251
|
*/
|
|
2240
2252
|
destinationId?: string;
|
|
2241
2253
|
/**
|
|
2242
|
-
* GTM parent Container's API relative path.
|
|
2254
|
+
* GTM parent Container's API relative path.
|
|
2243
2255
|
*/
|
|
2244
2256
|
parent?: string;
|
|
2245
2257
|
}
|
|
2246
2258
|
export interface Params$Resource$Accounts$Containers$Destinations$List extends StandardParameters {
|
|
2247
2259
|
/**
|
|
2248
|
-
* GTM parent Container's API relative path.
|
|
2260
|
+
* GTM parent Container's API relative path.
|
|
2249
2261
|
*/
|
|
2250
2262
|
parent?: string;
|
|
2251
2263
|
}
|
|
@@ -2339,7 +2351,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2339
2351
|
}
|
|
2340
2352
|
export interface Params$Resource$Accounts$Containers$Environments$Create extends StandardParameters {
|
|
2341
2353
|
/**
|
|
2342
|
-
* GTM Container's API relative path.
|
|
2354
|
+
* GTM Container's API relative path.
|
|
2343
2355
|
*/
|
|
2344
2356
|
parent?: string;
|
|
2345
2357
|
/**
|
|
@@ -2349,13 +2361,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2349
2361
|
}
|
|
2350
2362
|
export interface Params$Resource$Accounts$Containers$Environments$Delete extends StandardParameters {
|
|
2351
2363
|
/**
|
|
2352
|
-
* GTM Environment's API relative path.
|
|
2364
|
+
* GTM Environment's API relative path.
|
|
2353
2365
|
*/
|
|
2354
2366
|
path?: string;
|
|
2355
2367
|
}
|
|
2356
2368
|
export interface Params$Resource$Accounts$Containers$Environments$Get extends StandardParameters {
|
|
2357
2369
|
/**
|
|
2358
|
-
* GTM Environment's API relative path.
|
|
2370
|
+
* GTM Environment's API relative path.
|
|
2359
2371
|
*/
|
|
2360
2372
|
path?: string;
|
|
2361
2373
|
}
|
|
@@ -2365,13 +2377,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2365
2377
|
*/
|
|
2366
2378
|
pageToken?: string;
|
|
2367
2379
|
/**
|
|
2368
|
-
* GTM Container's API relative path.
|
|
2380
|
+
* GTM Container's API relative path.
|
|
2369
2381
|
*/
|
|
2370
2382
|
parent?: string;
|
|
2371
2383
|
}
|
|
2372
2384
|
export interface Params$Resource$Accounts$Containers$Environments$Reauthorize extends StandardParameters {
|
|
2373
2385
|
/**
|
|
2374
|
-
* GTM Environment's API relative path.
|
|
2386
|
+
* GTM Environment's API relative path.
|
|
2375
2387
|
*/
|
|
2376
2388
|
path?: string;
|
|
2377
2389
|
/**
|
|
@@ -2385,7 +2397,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2385
2397
|
*/
|
|
2386
2398
|
fingerprint?: string;
|
|
2387
2399
|
/**
|
|
2388
|
-
* GTM Environment's API relative path.
|
|
2400
|
+
* GTM Environment's API relative path.
|
|
2389
2401
|
*/
|
|
2390
2402
|
path?: string;
|
|
2391
2403
|
/**
|
|
@@ -2497,7 +2509,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2497
2509
|
}
|
|
2498
2510
|
export interface Params$Resource$Accounts$Containers$Versions$Delete extends StandardParameters {
|
|
2499
2511
|
/**
|
|
2500
|
-
* GTM ContainerVersion's API relative path.
|
|
2512
|
+
* GTM ContainerVersion's API relative path.
|
|
2501
2513
|
*/
|
|
2502
2514
|
path?: string;
|
|
2503
2515
|
}
|
|
@@ -2507,13 +2519,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2507
2519
|
*/
|
|
2508
2520
|
containerVersionId?: string;
|
|
2509
2521
|
/**
|
|
2510
|
-
* GTM ContainerVersion's API relative path.
|
|
2522
|
+
* GTM ContainerVersion's API relative path.
|
|
2511
2523
|
*/
|
|
2512
2524
|
path?: string;
|
|
2513
2525
|
}
|
|
2514
2526
|
export interface Params$Resource$Accounts$Containers$Versions$Live extends StandardParameters {
|
|
2515
2527
|
/**
|
|
2516
|
-
* GTM Container's API relative path.
|
|
2528
|
+
* GTM Container's API relative path.
|
|
2517
2529
|
*/
|
|
2518
2530
|
parent?: string;
|
|
2519
2531
|
}
|
|
@@ -2523,19 +2535,19 @@ export declare namespace tagmanager_v2 {
|
|
|
2523
2535
|
*/
|
|
2524
2536
|
fingerprint?: string;
|
|
2525
2537
|
/**
|
|
2526
|
-
* GTM ContainerVersion's API relative path.
|
|
2538
|
+
* GTM ContainerVersion's API relative path.
|
|
2527
2539
|
*/
|
|
2528
2540
|
path?: string;
|
|
2529
2541
|
}
|
|
2530
2542
|
export interface Params$Resource$Accounts$Containers$Versions$Set_latest extends StandardParameters {
|
|
2531
2543
|
/**
|
|
2532
|
-
* GTM ContainerVersion's API relative path.
|
|
2544
|
+
* GTM ContainerVersion's API relative path.
|
|
2533
2545
|
*/
|
|
2534
2546
|
path?: string;
|
|
2535
2547
|
}
|
|
2536
2548
|
export interface Params$Resource$Accounts$Containers$Versions$Undelete extends StandardParameters {
|
|
2537
2549
|
/**
|
|
2538
|
-
* GTM ContainerVersion's API relative path.
|
|
2550
|
+
* GTM ContainerVersion's API relative path.
|
|
2539
2551
|
*/
|
|
2540
2552
|
path?: string;
|
|
2541
2553
|
}
|
|
@@ -2545,7 +2557,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2545
2557
|
*/
|
|
2546
2558
|
fingerprint?: string;
|
|
2547
2559
|
/**
|
|
2548
|
-
* GTM ContainerVersion's API relative path.
|
|
2560
|
+
* GTM ContainerVersion's API relative path.
|
|
2549
2561
|
*/
|
|
2550
2562
|
path?: string;
|
|
2551
2563
|
/**
|
|
@@ -2587,7 +2599,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2587
2599
|
}
|
|
2588
2600
|
export interface Params$Resource$Accounts$Containers$Version_headers$Latest extends StandardParameters {
|
|
2589
2601
|
/**
|
|
2590
|
-
* GTM Container's API relative path.
|
|
2602
|
+
* GTM Container's API relative path.
|
|
2591
2603
|
*/
|
|
2592
2604
|
parent?: string;
|
|
2593
2605
|
}
|
|
@@ -2601,7 +2613,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2601
2613
|
*/
|
|
2602
2614
|
pageToken?: string;
|
|
2603
2615
|
/**
|
|
2604
|
-
* GTM Container's API relative path.
|
|
2616
|
+
* GTM Container's API relative path.
|
|
2605
2617
|
*/
|
|
2606
2618
|
parent?: string;
|
|
2607
2619
|
}
|
|
@@ -2761,7 +2773,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2761
2773
|
}
|
|
2762
2774
|
export interface Params$Resource$Accounts$Containers$Workspaces$Create extends StandardParameters {
|
|
2763
2775
|
/**
|
|
2764
|
-
* GTM parent Container's API relative path.
|
|
2776
|
+
* GTM parent Container's API relative path.
|
|
2765
2777
|
*/
|
|
2766
2778
|
parent?: string;
|
|
2767
2779
|
/**
|
|
@@ -2771,7 +2783,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2771
2783
|
}
|
|
2772
2784
|
export interface Params$Resource$Accounts$Containers$Workspaces$Create_version extends StandardParameters {
|
|
2773
2785
|
/**
|
|
2774
|
-
* GTM Workspace's API relative path.
|
|
2786
|
+
* GTM Workspace's API relative path.
|
|
2775
2787
|
*/
|
|
2776
2788
|
path?: string;
|
|
2777
2789
|
/**
|
|
@@ -2781,19 +2793,19 @@ export declare namespace tagmanager_v2 {
|
|
|
2781
2793
|
}
|
|
2782
2794
|
export interface Params$Resource$Accounts$Containers$Workspaces$Delete extends StandardParameters {
|
|
2783
2795
|
/**
|
|
2784
|
-
* GTM Workspace's API relative path.
|
|
2796
|
+
* GTM Workspace's API relative path.
|
|
2785
2797
|
*/
|
|
2786
2798
|
path?: string;
|
|
2787
2799
|
}
|
|
2788
2800
|
export interface Params$Resource$Accounts$Containers$Workspaces$Get extends StandardParameters {
|
|
2789
2801
|
/**
|
|
2790
|
-
* GTM Workspace's API relative path.
|
|
2802
|
+
* GTM Workspace's API relative path.
|
|
2791
2803
|
*/
|
|
2792
2804
|
path?: string;
|
|
2793
2805
|
}
|
|
2794
2806
|
export interface Params$Resource$Accounts$Containers$Workspaces$Getstatus extends StandardParameters {
|
|
2795
2807
|
/**
|
|
2796
|
-
* GTM Workspace's API relative path.
|
|
2808
|
+
* GTM Workspace's API relative path.
|
|
2797
2809
|
*/
|
|
2798
2810
|
path?: string;
|
|
2799
2811
|
}
|
|
@@ -2803,13 +2815,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2803
2815
|
*/
|
|
2804
2816
|
pageToken?: string;
|
|
2805
2817
|
/**
|
|
2806
|
-
* GTM parent Container's API relative path.
|
|
2818
|
+
* GTM parent Container's API relative path.
|
|
2807
2819
|
*/
|
|
2808
2820
|
parent?: string;
|
|
2809
2821
|
}
|
|
2810
2822
|
export interface Params$Resource$Accounts$Containers$Workspaces$Quick_preview extends StandardParameters {
|
|
2811
2823
|
/**
|
|
2812
|
-
* GTM Workspace's API relative path.
|
|
2824
|
+
* GTM Workspace's API relative path.
|
|
2813
2825
|
*/
|
|
2814
2826
|
path?: string;
|
|
2815
2827
|
}
|
|
@@ -2819,7 +2831,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2819
2831
|
*/
|
|
2820
2832
|
fingerprint?: string;
|
|
2821
2833
|
/**
|
|
2822
|
-
* GTM Workspace's API relative path.
|
|
2834
|
+
* GTM Workspace's API relative path.
|
|
2823
2835
|
*/
|
|
2824
2836
|
path?: string;
|
|
2825
2837
|
/**
|
|
@@ -2829,7 +2841,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2829
2841
|
}
|
|
2830
2842
|
export interface Params$Resource$Accounts$Containers$Workspaces$Sync extends StandardParameters {
|
|
2831
2843
|
/**
|
|
2832
|
-
* GTM Workspace's API relative path.
|
|
2844
|
+
* GTM Workspace's API relative path.
|
|
2833
2845
|
*/
|
|
2834
2846
|
path?: string;
|
|
2835
2847
|
}
|
|
@@ -2839,7 +2851,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2839
2851
|
*/
|
|
2840
2852
|
fingerprint?: string;
|
|
2841
2853
|
/**
|
|
2842
|
-
* GTM Workspace's API relative path.
|
|
2854
|
+
* GTM Workspace's API relative path.
|
|
2843
2855
|
*/
|
|
2844
2856
|
path?: string;
|
|
2845
2857
|
/**
|
|
@@ -2909,7 +2921,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2909
2921
|
}
|
|
2910
2922
|
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create extends StandardParameters {
|
|
2911
2923
|
/**
|
|
2912
|
-
* GTM Workspace's API relative path.
|
|
2924
|
+
* GTM Workspace's API relative path.
|
|
2913
2925
|
*/
|
|
2914
2926
|
parent?: string;
|
|
2915
2927
|
/**
|
|
@@ -2919,7 +2931,7 @@ export declare namespace tagmanager_v2 {
|
|
|
2919
2931
|
}
|
|
2920
2932
|
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete extends StandardParameters {
|
|
2921
2933
|
/**
|
|
2922
|
-
* GTM BuiltInVariable's API relative path.
|
|
2934
|
+
* GTM BuiltInVariable's API relative path.
|
|
2923
2935
|
*/
|
|
2924
2936
|
path?: string;
|
|
2925
2937
|
/**
|
|
@@ -2933,13 +2945,13 @@ export declare namespace tagmanager_v2 {
|
|
|
2933
2945
|
*/
|
|
2934
2946
|
pageToken?: string;
|
|
2935
2947
|
/**
|
|
2936
|
-
* GTM Workspace's API relative path.
|
|
2948
|
+
* GTM Workspace's API relative path.
|
|
2937
2949
|
*/
|
|
2938
2950
|
parent?: string;
|
|
2939
2951
|
}
|
|
2940
2952
|
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert extends StandardParameters {
|
|
2941
2953
|
/**
|
|
2942
|
-
* GTM BuiltInVariable's API relative path.
|
|
2954
|
+
* GTM BuiltInVariable's API relative path.
|
|
2943
2955
|
*/
|
|
2944
2956
|
path?: string;
|
|
2945
2957
|
/**
|
|
@@ -3037,7 +3049,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3037
3049
|
}
|
|
3038
3050
|
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Create extends StandardParameters {
|
|
3039
3051
|
/**
|
|
3040
|
-
* GTM Workspace's API relative path.
|
|
3052
|
+
* GTM Workspace's API relative path.
|
|
3041
3053
|
*/
|
|
3042
3054
|
parent?: string;
|
|
3043
3055
|
/**
|
|
@@ -3047,13 +3059,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3047
3059
|
}
|
|
3048
3060
|
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Delete extends StandardParameters {
|
|
3049
3061
|
/**
|
|
3050
|
-
* GTM Client's API relative path.
|
|
3062
|
+
* GTM Client's API relative path.
|
|
3051
3063
|
*/
|
|
3052
3064
|
path?: string;
|
|
3053
3065
|
}
|
|
3054
3066
|
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Get extends StandardParameters {
|
|
3055
3067
|
/**
|
|
3056
|
-
* GTM Client's API relative path.
|
|
3068
|
+
* GTM Client's API relative path.
|
|
3057
3069
|
*/
|
|
3058
3070
|
path?: string;
|
|
3059
3071
|
}
|
|
@@ -3063,7 +3075,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3063
3075
|
*/
|
|
3064
3076
|
pageToken?: string;
|
|
3065
3077
|
/**
|
|
3066
|
-
* GTM Workspace's API relative path.
|
|
3078
|
+
* GTM Workspace's API relative path.
|
|
3067
3079
|
*/
|
|
3068
3080
|
parent?: string;
|
|
3069
3081
|
}
|
|
@@ -3073,7 +3085,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3073
3085
|
*/
|
|
3074
3086
|
fingerprint?: string;
|
|
3075
3087
|
/**
|
|
3076
|
-
* GTM Client's API relative path.
|
|
3088
|
+
* GTM Client's API relative path.
|
|
3077
3089
|
*/
|
|
3078
3090
|
path?: string;
|
|
3079
3091
|
}
|
|
@@ -3083,7 +3095,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3083
3095
|
*/
|
|
3084
3096
|
fingerprint?: string;
|
|
3085
3097
|
/**
|
|
3086
|
-
* GTM Client's API relative path.
|
|
3098
|
+
* GTM Client's API relative path.
|
|
3087
3099
|
*/
|
|
3088
3100
|
path?: string;
|
|
3089
3101
|
/**
|
|
@@ -3209,7 +3221,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3209
3221
|
}
|
|
3210
3222
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Create extends StandardParameters {
|
|
3211
3223
|
/**
|
|
3212
|
-
* GTM Workspace's API relative path.
|
|
3224
|
+
* GTM Workspace's API relative path.
|
|
3213
3225
|
*/
|
|
3214
3226
|
parent?: string;
|
|
3215
3227
|
/**
|
|
@@ -3219,7 +3231,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3219
3231
|
}
|
|
3220
3232
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Delete extends StandardParameters {
|
|
3221
3233
|
/**
|
|
3222
|
-
* GTM Folder's API relative path.
|
|
3234
|
+
* GTM Folder's API relative path.
|
|
3223
3235
|
*/
|
|
3224
3236
|
path?: string;
|
|
3225
3237
|
}
|
|
@@ -3229,13 +3241,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3229
3241
|
*/
|
|
3230
3242
|
pageToken?: string;
|
|
3231
3243
|
/**
|
|
3232
|
-
* GTM Folder's API relative path.
|
|
3244
|
+
* GTM Folder's API relative path.
|
|
3233
3245
|
*/
|
|
3234
3246
|
path?: string;
|
|
3235
3247
|
}
|
|
3236
3248
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Get extends StandardParameters {
|
|
3237
3249
|
/**
|
|
3238
|
-
* GTM Folder's API relative path.
|
|
3250
|
+
* GTM Folder's API relative path.
|
|
3239
3251
|
*/
|
|
3240
3252
|
path?: string;
|
|
3241
3253
|
}
|
|
@@ -3245,13 +3257,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3245
3257
|
*/
|
|
3246
3258
|
pageToken?: string;
|
|
3247
3259
|
/**
|
|
3248
|
-
* GTM Workspace's API relative path.
|
|
3260
|
+
* GTM Workspace's API relative path.
|
|
3249
3261
|
*/
|
|
3250
3262
|
parent?: string;
|
|
3251
3263
|
}
|
|
3252
3264
|
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder extends StandardParameters {
|
|
3253
3265
|
/**
|
|
3254
|
-
* GTM Folder's API relative path.
|
|
3266
|
+
* GTM Folder's API relative path.
|
|
3255
3267
|
*/
|
|
3256
3268
|
path?: string;
|
|
3257
3269
|
/**
|
|
@@ -3277,7 +3289,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3277
3289
|
*/
|
|
3278
3290
|
fingerprint?: string;
|
|
3279
3291
|
/**
|
|
3280
|
-
* GTM Folder's API relative path.
|
|
3292
|
+
* GTM Folder's API relative path.
|
|
3281
3293
|
*/
|
|
3282
3294
|
path?: string;
|
|
3283
3295
|
}
|
|
@@ -3287,7 +3299,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3287
3299
|
*/
|
|
3288
3300
|
fingerprint?: string;
|
|
3289
3301
|
/**
|
|
3290
|
-
* GTM Folder's API relative path.
|
|
3302
|
+
* GTM Folder's API relative path.
|
|
3291
3303
|
*/
|
|
3292
3304
|
path?: string;
|
|
3293
3305
|
/**
|
|
@@ -3371,7 +3383,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3371
3383
|
}
|
|
3372
3384
|
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create extends StandardParameters {
|
|
3373
3385
|
/**
|
|
3374
|
-
* Workspace's API relative path.
|
|
3386
|
+
* Workspace's API relative path.
|
|
3375
3387
|
*/
|
|
3376
3388
|
parent?: string;
|
|
3377
3389
|
/**
|
|
@@ -3381,13 +3393,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3381
3393
|
}
|
|
3382
3394
|
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete extends StandardParameters {
|
|
3383
3395
|
/**
|
|
3384
|
-
* Google tag config's API relative path.
|
|
3396
|
+
* Google tag config's API relative path.
|
|
3385
3397
|
*/
|
|
3386
3398
|
path?: string;
|
|
3387
3399
|
}
|
|
3388
3400
|
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get extends StandardParameters {
|
|
3389
3401
|
/**
|
|
3390
|
-
* Google tag config's API relative path.
|
|
3402
|
+
* Google tag config's API relative path.
|
|
3391
3403
|
*/
|
|
3392
3404
|
path?: string;
|
|
3393
3405
|
}
|
|
@@ -3397,7 +3409,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3397
3409
|
*/
|
|
3398
3410
|
pageToken?: string;
|
|
3399
3411
|
/**
|
|
3400
|
-
* Workspace's API relative path.
|
|
3412
|
+
* Workspace's API relative path.
|
|
3401
3413
|
*/
|
|
3402
3414
|
parent?: string;
|
|
3403
3415
|
}
|
|
@@ -3407,7 +3419,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3407
3419
|
*/
|
|
3408
3420
|
fingerprint?: string;
|
|
3409
3421
|
/**
|
|
3410
|
-
* Google tag config's API relative path.
|
|
3422
|
+
* Google tag config's API relative path.
|
|
3411
3423
|
*/
|
|
3412
3424
|
path?: string;
|
|
3413
3425
|
/**
|
|
@@ -3505,7 +3517,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3505
3517
|
}
|
|
3506
3518
|
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Create extends StandardParameters {
|
|
3507
3519
|
/**
|
|
3508
|
-
* GTM Workspace's API relative path.
|
|
3520
|
+
* GTM Workspace's API relative path.
|
|
3509
3521
|
*/
|
|
3510
3522
|
parent?: string;
|
|
3511
3523
|
/**
|
|
@@ -3515,13 +3527,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3515
3527
|
}
|
|
3516
3528
|
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Delete extends StandardParameters {
|
|
3517
3529
|
/**
|
|
3518
|
-
* GTM Tag's API relative path.
|
|
3530
|
+
* GTM Tag's API relative path.
|
|
3519
3531
|
*/
|
|
3520
3532
|
path?: string;
|
|
3521
3533
|
}
|
|
3522
3534
|
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Get extends StandardParameters {
|
|
3523
3535
|
/**
|
|
3524
|
-
* GTM Tag's API relative path.
|
|
3536
|
+
* GTM Tag's API relative path.
|
|
3525
3537
|
*/
|
|
3526
3538
|
path?: string;
|
|
3527
3539
|
}
|
|
@@ -3531,7 +3543,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3531
3543
|
*/
|
|
3532
3544
|
pageToken?: string;
|
|
3533
3545
|
/**
|
|
3534
|
-
* GTM Workspace's API relative path.
|
|
3546
|
+
* GTM Workspace's API relative path.
|
|
3535
3547
|
*/
|
|
3536
3548
|
parent?: string;
|
|
3537
3549
|
}
|
|
@@ -3541,7 +3553,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3541
3553
|
*/
|
|
3542
3554
|
fingerprint?: string;
|
|
3543
3555
|
/**
|
|
3544
|
-
* GTM Tag's API relative path.
|
|
3556
|
+
* GTM Tag's API relative path.
|
|
3545
3557
|
*/
|
|
3546
3558
|
path?: string;
|
|
3547
3559
|
}
|
|
@@ -3551,7 +3563,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3551
3563
|
*/
|
|
3552
3564
|
fingerprint?: string;
|
|
3553
3565
|
/**
|
|
3554
|
-
* GTM Tag's API relative path.
|
|
3566
|
+
* GTM Tag's API relative path.
|
|
3555
3567
|
*/
|
|
3556
3568
|
path?: string;
|
|
3557
3569
|
/**
|
|
@@ -3604,6 +3616,20 @@ export declare namespace tagmanager_v2 {
|
|
|
3604
3616
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Get, options: MethodOptions | BodyResponseCallback<Schema$CustomTemplate>, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
3605
3617
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Get, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
3606
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;
|
|
3607
3633
|
/**
|
|
3608
3634
|
* Lists all GTM Templates of a GTM container workspace.
|
|
3609
3635
|
*
|
|
@@ -3649,7 +3675,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3649
3675
|
}
|
|
3650
3676
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Create extends StandardParameters {
|
|
3651
3677
|
/**
|
|
3652
|
-
* GTM Workspace's API relative path.
|
|
3678
|
+
* GTM Workspace's API relative path.
|
|
3653
3679
|
*/
|
|
3654
3680
|
parent?: string;
|
|
3655
3681
|
/**
|
|
@@ -3659,23 +3685,45 @@ export declare namespace tagmanager_v2 {
|
|
|
3659
3685
|
}
|
|
3660
3686
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Delete extends StandardParameters {
|
|
3661
3687
|
/**
|
|
3662
|
-
* GTM Custom Template's API relative path.
|
|
3688
|
+
* GTM Custom Template's API relative path.
|
|
3663
3689
|
*/
|
|
3664
3690
|
path?: string;
|
|
3665
3691
|
}
|
|
3666
3692
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Get extends StandardParameters {
|
|
3667
3693
|
/**
|
|
3668
|
-
* GTM Custom Template's API relative path.
|
|
3694
|
+
* GTM Custom Template's API relative path.
|
|
3669
3695
|
*/
|
|
3670
3696
|
path?: string;
|
|
3671
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
|
+
}
|
|
3672
3720
|
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$List extends StandardParameters {
|
|
3673
3721
|
/**
|
|
3674
3722
|
* Continuation token for fetching the next page of results.
|
|
3675
3723
|
*/
|
|
3676
3724
|
pageToken?: string;
|
|
3677
3725
|
/**
|
|
3678
|
-
* GTM Workspace's API relative path.
|
|
3726
|
+
* GTM Workspace's API relative path.
|
|
3679
3727
|
*/
|
|
3680
3728
|
parent?: string;
|
|
3681
3729
|
}
|
|
@@ -3685,7 +3733,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3685
3733
|
*/
|
|
3686
3734
|
fingerprint?: string;
|
|
3687
3735
|
/**
|
|
3688
|
-
* GTM Custom Template's API relative path.
|
|
3736
|
+
* GTM Custom Template's API relative path.
|
|
3689
3737
|
*/
|
|
3690
3738
|
path?: string;
|
|
3691
3739
|
}
|
|
@@ -3695,7 +3743,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3695
3743
|
*/
|
|
3696
3744
|
fingerprint?: string;
|
|
3697
3745
|
/**
|
|
3698
|
-
* GTM Custom Template's API relative path.
|
|
3746
|
+
* GTM Custom Template's API relative path.
|
|
3699
3747
|
*/
|
|
3700
3748
|
path?: string;
|
|
3701
3749
|
/**
|
|
@@ -3793,7 +3841,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3793
3841
|
}
|
|
3794
3842
|
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Create extends StandardParameters {
|
|
3795
3843
|
/**
|
|
3796
|
-
* GTM Workspace's API relative path.
|
|
3844
|
+
* GTM Workspace's API relative path.
|
|
3797
3845
|
*/
|
|
3798
3846
|
parent?: string;
|
|
3799
3847
|
/**
|
|
@@ -3803,13 +3851,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3803
3851
|
}
|
|
3804
3852
|
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete extends StandardParameters {
|
|
3805
3853
|
/**
|
|
3806
|
-
* GTM Transformation's API relative path.
|
|
3854
|
+
* GTM Transformation's API relative path.
|
|
3807
3855
|
*/
|
|
3808
3856
|
path?: string;
|
|
3809
3857
|
}
|
|
3810
3858
|
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Get extends StandardParameters {
|
|
3811
3859
|
/**
|
|
3812
|
-
* GTM Transformation's API relative path.
|
|
3860
|
+
* GTM Transformation's API relative path.
|
|
3813
3861
|
*/
|
|
3814
3862
|
path?: string;
|
|
3815
3863
|
}
|
|
@@ -3819,7 +3867,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3819
3867
|
*/
|
|
3820
3868
|
pageToken?: string;
|
|
3821
3869
|
/**
|
|
3822
|
-
* GTM Workspace's API relative path.
|
|
3870
|
+
* GTM Workspace's API relative path.
|
|
3823
3871
|
*/
|
|
3824
3872
|
parent?: string;
|
|
3825
3873
|
}
|
|
@@ -3829,7 +3877,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3829
3877
|
*/
|
|
3830
3878
|
fingerprint?: string;
|
|
3831
3879
|
/**
|
|
3832
|
-
* GTM Transformation's API relative path.
|
|
3880
|
+
* GTM Transformation's API relative path.
|
|
3833
3881
|
*/
|
|
3834
3882
|
path?: string;
|
|
3835
3883
|
}
|
|
@@ -3839,7 +3887,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3839
3887
|
*/
|
|
3840
3888
|
fingerprint?: string;
|
|
3841
3889
|
/**
|
|
3842
|
-
* GTM Transformation's API relative path.
|
|
3890
|
+
* GTM Transformation's API relative path.
|
|
3843
3891
|
*/
|
|
3844
3892
|
path?: string;
|
|
3845
3893
|
/**
|
|
@@ -3937,7 +3985,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3937
3985
|
}
|
|
3938
3986
|
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Create extends StandardParameters {
|
|
3939
3987
|
/**
|
|
3940
|
-
* GTM Workspace's API relative path.
|
|
3988
|
+
* GTM Workspace's API relative path.
|
|
3941
3989
|
*/
|
|
3942
3990
|
parent?: string;
|
|
3943
3991
|
/**
|
|
@@ -3947,13 +3995,13 @@ export declare namespace tagmanager_v2 {
|
|
|
3947
3995
|
}
|
|
3948
3996
|
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete extends StandardParameters {
|
|
3949
3997
|
/**
|
|
3950
|
-
* GTM Trigger's API relative path.
|
|
3998
|
+
* GTM Trigger's API relative path.
|
|
3951
3999
|
*/
|
|
3952
4000
|
path?: string;
|
|
3953
4001
|
}
|
|
3954
4002
|
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Get extends StandardParameters {
|
|
3955
4003
|
/**
|
|
3956
|
-
* GTM Trigger's API relative path.
|
|
4004
|
+
* GTM Trigger's API relative path.
|
|
3957
4005
|
*/
|
|
3958
4006
|
path?: string;
|
|
3959
4007
|
}
|
|
@@ -3963,7 +4011,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3963
4011
|
*/
|
|
3964
4012
|
pageToken?: string;
|
|
3965
4013
|
/**
|
|
3966
|
-
* GTM Workspace's API relative path.
|
|
4014
|
+
* GTM Workspace's API relative path.
|
|
3967
4015
|
*/
|
|
3968
4016
|
parent?: string;
|
|
3969
4017
|
}
|
|
@@ -3973,7 +4021,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3973
4021
|
*/
|
|
3974
4022
|
fingerprint?: string;
|
|
3975
4023
|
/**
|
|
3976
|
-
* GTM Trigger's API relative path.
|
|
4024
|
+
* GTM Trigger's API relative path.
|
|
3977
4025
|
*/
|
|
3978
4026
|
path?: string;
|
|
3979
4027
|
}
|
|
@@ -3983,7 +4031,7 @@ export declare namespace tagmanager_v2 {
|
|
|
3983
4031
|
*/
|
|
3984
4032
|
fingerprint?: string;
|
|
3985
4033
|
/**
|
|
3986
|
-
* GTM Trigger's API relative path.
|
|
4034
|
+
* GTM Trigger's API relative path.
|
|
3987
4035
|
*/
|
|
3988
4036
|
path?: string;
|
|
3989
4037
|
/**
|
|
@@ -4081,7 +4129,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4081
4129
|
}
|
|
4082
4130
|
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Create extends StandardParameters {
|
|
4083
4131
|
/**
|
|
4084
|
-
* GTM Workspace's API relative path.
|
|
4132
|
+
* GTM Workspace's API relative path.
|
|
4085
4133
|
*/
|
|
4086
4134
|
parent?: string;
|
|
4087
4135
|
/**
|
|
@@ -4091,13 +4139,13 @@ export declare namespace tagmanager_v2 {
|
|
|
4091
4139
|
}
|
|
4092
4140
|
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Delete extends StandardParameters {
|
|
4093
4141
|
/**
|
|
4094
|
-
* GTM Variable's API relative path.
|
|
4142
|
+
* GTM Variable's API relative path.
|
|
4095
4143
|
*/
|
|
4096
4144
|
path?: string;
|
|
4097
4145
|
}
|
|
4098
4146
|
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Get extends StandardParameters {
|
|
4099
4147
|
/**
|
|
4100
|
-
* GTM Variable's API relative path.
|
|
4148
|
+
* GTM Variable's API relative path.
|
|
4101
4149
|
*/
|
|
4102
4150
|
path?: string;
|
|
4103
4151
|
}
|
|
@@ -4107,7 +4155,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4107
4155
|
*/
|
|
4108
4156
|
pageToken?: string;
|
|
4109
4157
|
/**
|
|
4110
|
-
* GTM Workspace's API relative path.
|
|
4158
|
+
* GTM Workspace's API relative path.
|
|
4111
4159
|
*/
|
|
4112
4160
|
parent?: string;
|
|
4113
4161
|
}
|
|
@@ -4117,7 +4165,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4117
4165
|
*/
|
|
4118
4166
|
fingerprint?: string;
|
|
4119
4167
|
/**
|
|
4120
|
-
* GTM Variable's API relative path.
|
|
4168
|
+
* GTM Variable's API relative path.
|
|
4121
4169
|
*/
|
|
4122
4170
|
path?: string;
|
|
4123
4171
|
}
|
|
@@ -4127,7 +4175,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4127
4175
|
*/
|
|
4128
4176
|
fingerprint?: string;
|
|
4129
4177
|
/**
|
|
4130
|
-
* GTM Variable's API relative path.
|
|
4178
|
+
* GTM Variable's API relative path.
|
|
4131
4179
|
*/
|
|
4132
4180
|
path?: string;
|
|
4133
4181
|
/**
|
|
@@ -4225,7 +4273,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4225
4273
|
}
|
|
4226
4274
|
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Create extends StandardParameters {
|
|
4227
4275
|
/**
|
|
4228
|
-
* GTM Workspace's API relative path.
|
|
4276
|
+
* GTM Workspace's API relative path.
|
|
4229
4277
|
*/
|
|
4230
4278
|
parent?: string;
|
|
4231
4279
|
/**
|
|
@@ -4235,13 +4283,13 @@ export declare namespace tagmanager_v2 {
|
|
|
4235
4283
|
}
|
|
4236
4284
|
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Delete extends StandardParameters {
|
|
4237
4285
|
/**
|
|
4238
|
-
* GTM Zone's API relative path.
|
|
4286
|
+
* GTM Zone's API relative path.
|
|
4239
4287
|
*/
|
|
4240
4288
|
path?: string;
|
|
4241
4289
|
}
|
|
4242
4290
|
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Get extends StandardParameters {
|
|
4243
4291
|
/**
|
|
4244
|
-
* GTM Zone's API relative path.
|
|
4292
|
+
* GTM Zone's API relative path.
|
|
4245
4293
|
*/
|
|
4246
4294
|
path?: string;
|
|
4247
4295
|
}
|
|
@@ -4251,7 +4299,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4251
4299
|
*/
|
|
4252
4300
|
pageToken?: string;
|
|
4253
4301
|
/**
|
|
4254
|
-
* GTM Workspace's API relative path.
|
|
4302
|
+
* GTM Workspace's API relative path.
|
|
4255
4303
|
*/
|
|
4256
4304
|
parent?: string;
|
|
4257
4305
|
}
|
|
@@ -4261,7 +4309,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4261
4309
|
*/
|
|
4262
4310
|
fingerprint?: string;
|
|
4263
4311
|
/**
|
|
4264
|
-
* GTM Zone's API relative path.
|
|
4312
|
+
* GTM Zone's API relative path.
|
|
4265
4313
|
*/
|
|
4266
4314
|
path?: string;
|
|
4267
4315
|
}
|
|
@@ -4271,7 +4319,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4271
4319
|
*/
|
|
4272
4320
|
fingerprint?: string;
|
|
4273
4321
|
/**
|
|
4274
|
-
* GTM Zone's API relative path.
|
|
4322
|
+
* GTM Zone's API relative path.
|
|
4275
4323
|
*/
|
|
4276
4324
|
path?: string;
|
|
4277
4325
|
/**
|
|
@@ -4355,7 +4403,7 @@ export declare namespace tagmanager_v2 {
|
|
|
4355
4403
|
}
|
|
4356
4404
|
export interface Params$Resource$Accounts$User_permissions$Create extends StandardParameters {
|
|
4357
4405
|
/**
|
|
4358
|
-
* GTM Account's API relative path.
|
|
4406
|
+
* GTM Account's API relative path.
|
|
4359
4407
|
*/
|
|
4360
4408
|
parent?: string;
|
|
4361
4409
|
/**
|
|
@@ -4365,13 +4413,13 @@ export declare namespace tagmanager_v2 {
|
|
|
4365
4413
|
}
|
|
4366
4414
|
export interface Params$Resource$Accounts$User_permissions$Delete extends StandardParameters {
|
|
4367
4415
|
/**
|
|
4368
|
-
* GTM UserPermission's API relative path.
|
|
4416
|
+
* GTM UserPermission's API relative path.
|
|
4369
4417
|
*/
|
|
4370
4418
|
path?: string;
|
|
4371
4419
|
}
|
|
4372
4420
|
export interface Params$Resource$Accounts$User_permissions$Get extends StandardParameters {
|
|
4373
4421
|
/**
|
|
4374
|
-
* GTM UserPermission's API relative path.
|
|
4422
|
+
* GTM UserPermission's API relative path.
|
|
4375
4423
|
*/
|
|
4376
4424
|
path?: string;
|
|
4377
4425
|
}
|
|
@@ -4381,13 +4429,13 @@ export declare namespace tagmanager_v2 {
|
|
|
4381
4429
|
*/
|
|
4382
4430
|
pageToken?: string;
|
|
4383
4431
|
/**
|
|
4384
|
-
* GTM Account's API relative path.
|
|
4432
|
+
* GTM Account's API relative path.
|
|
4385
4433
|
*/
|
|
4386
4434
|
parent?: string;
|
|
4387
4435
|
}
|
|
4388
4436
|
export interface Params$Resource$Accounts$User_permissions$Update extends StandardParameters {
|
|
4389
4437
|
/**
|
|
4390
|
-
* GTM UserPermission's API relative path.
|
|
4438
|
+
* GTM UserPermission's API relative path.
|
|
4391
4439
|
*/
|
|
4392
4440
|
path?: string;
|
|
4393
4441
|
/**
|