@googleapis/tagmanager 13.0.0 → 14.2.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 +25 -0
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/v1.js.map +1 -1
- package/build/v2.d.ts +98 -0
- package/build/v2.js +33 -0
- package/build/v2.js.map +1 -1
- package/package.json +1 -1
- package/v1.ts +46 -92
- package/v2.ts +283 -204
package/v2.ts
CHANGED
|
@@ -205,6 +205,12 @@ export namespace tagmanager_v2 {
|
|
|
205
205
|
*/
|
|
206
206
|
workspaceId?: string | null;
|
|
207
207
|
}
|
|
208
|
+
export interface Schema$BulkUpdateWorkspaceResponse {
|
|
209
|
+
/**
|
|
210
|
+
* The entities that were added or updated during the bulk-update. Does not include entities that were deleted or updated by the system.
|
|
211
|
+
*/
|
|
212
|
+
changes?: Schema$Entity[];
|
|
213
|
+
}
|
|
208
214
|
export interface Schema$Client {
|
|
209
215
|
/**
|
|
210
216
|
* GTM Account ID.
|
|
@@ -1190,6 +1196,12 @@ export namespace tagmanager_v2 {
|
|
|
1190
1196
|
*/
|
|
1191
1197
|
value?: string | null;
|
|
1192
1198
|
}
|
|
1199
|
+
export interface Schema$ProposedChange {
|
|
1200
|
+
/**
|
|
1201
|
+
* The list of workspace changes to be applied.
|
|
1202
|
+
*/
|
|
1203
|
+
changes?: Schema$Entity[];
|
|
1204
|
+
}
|
|
1193
1205
|
/**
|
|
1194
1206
|
* Publish container version response.
|
|
1195
1207
|
*/
|
|
@@ -1765,6 +1777,14 @@ export namespace tagmanager_v2 {
|
|
|
1765
1777
|
* The value to convert if a variable value is null.
|
|
1766
1778
|
*/
|
|
1767
1779
|
convertNullToValue?: Schema$Parameter;
|
|
1780
|
+
/**
|
|
1781
|
+
* The option to convert a variable value to a boolean.
|
|
1782
|
+
*/
|
|
1783
|
+
convertToBoolean?: boolean | null;
|
|
1784
|
+
/**
|
|
1785
|
+
* The option to convert a variable value to a number.
|
|
1786
|
+
*/
|
|
1787
|
+
convertToNumber?: string | null;
|
|
1768
1788
|
/**
|
|
1769
1789
|
* The value to convert if a variable value is true.
|
|
1770
1790
|
*/
|
|
@@ -3804,8 +3824,7 @@ export namespace tagmanager_v2 {
|
|
|
3804
3824
|
}
|
|
3805
3825
|
}
|
|
3806
3826
|
|
|
3807
|
-
export interface Params$Resource$Accounts$Containers$Combine
|
|
3808
|
-
extends StandardParameters {
|
|
3827
|
+
export interface Params$Resource$Accounts$Containers$Combine extends StandardParameters {
|
|
3809
3828
|
/**
|
|
3810
3829
|
* Must be set to true to allow features.user_permissions to change from false to true. If this operation causes an update but this bit is false, the operation will fail.
|
|
3811
3830
|
*/
|
|
@@ -3823,8 +3842,7 @@ export namespace tagmanager_v2 {
|
|
|
3823
3842
|
*/
|
|
3824
3843
|
settingSource?: string;
|
|
3825
3844
|
}
|
|
3826
|
-
export interface Params$Resource$Accounts$Containers$Create
|
|
3827
|
-
extends StandardParameters {
|
|
3845
|
+
export interface Params$Resource$Accounts$Containers$Create extends StandardParameters {
|
|
3828
3846
|
/**
|
|
3829
3847
|
* GTM Account's API relative path.
|
|
3830
3848
|
*/
|
|
@@ -3835,22 +3853,19 @@ export namespace tagmanager_v2 {
|
|
|
3835
3853
|
*/
|
|
3836
3854
|
requestBody?: Schema$Container;
|
|
3837
3855
|
}
|
|
3838
|
-
export interface Params$Resource$Accounts$Containers$Delete
|
|
3839
|
-
extends StandardParameters {
|
|
3856
|
+
export interface Params$Resource$Accounts$Containers$Delete extends StandardParameters {
|
|
3840
3857
|
/**
|
|
3841
3858
|
* GTM Container's API relative path.
|
|
3842
3859
|
*/
|
|
3843
3860
|
path?: string;
|
|
3844
3861
|
}
|
|
3845
|
-
export interface Params$Resource$Accounts$Containers$Get
|
|
3846
|
-
extends StandardParameters {
|
|
3862
|
+
export interface Params$Resource$Accounts$Containers$Get extends StandardParameters {
|
|
3847
3863
|
/**
|
|
3848
3864
|
* GTM Container's API relative path.
|
|
3849
3865
|
*/
|
|
3850
3866
|
path?: string;
|
|
3851
3867
|
}
|
|
3852
|
-
export interface Params$Resource$Accounts$Containers$List
|
|
3853
|
-
extends StandardParameters {
|
|
3868
|
+
export interface Params$Resource$Accounts$Containers$List extends StandardParameters {
|
|
3854
3869
|
/**
|
|
3855
3870
|
* Continuation token for fetching the next page of results.
|
|
3856
3871
|
*/
|
|
@@ -3860,8 +3875,7 @@ export namespace tagmanager_v2 {
|
|
|
3860
3875
|
*/
|
|
3861
3876
|
parent?: string;
|
|
3862
3877
|
}
|
|
3863
|
-
export interface Params$Resource$Accounts$Containers$Lookup
|
|
3864
|
-
extends StandardParameters {
|
|
3878
|
+
export interface Params$Resource$Accounts$Containers$Lookup extends StandardParameters {
|
|
3865
3879
|
/**
|
|
3866
3880
|
* Destination ID linked to a GTM Container, e.g. AW-123456789. Only one of destination_id or tag_id should be set.
|
|
3867
3881
|
*/
|
|
@@ -3871,8 +3885,7 @@ export namespace tagmanager_v2 {
|
|
|
3871
3885
|
*/
|
|
3872
3886
|
tagId?: string;
|
|
3873
3887
|
}
|
|
3874
|
-
export interface Params$Resource$Accounts$Containers$Move_tag_id
|
|
3875
|
-
extends StandardParameters {
|
|
3888
|
+
export interface Params$Resource$Accounts$Containers$Move_tag_id extends StandardParameters {
|
|
3876
3889
|
/**
|
|
3877
3890
|
* Must be set to true to allow features.user_permissions to change from false to true. If this operation causes an update but this bit is false, the operation will fail.
|
|
3878
3891
|
*/
|
|
@@ -3902,15 +3915,13 @@ export namespace tagmanager_v2 {
|
|
|
3902
3915
|
*/
|
|
3903
3916
|
tagName?: string;
|
|
3904
3917
|
}
|
|
3905
|
-
export interface Params$Resource$Accounts$Containers$Snippet
|
|
3906
|
-
extends StandardParameters {
|
|
3918
|
+
export interface Params$Resource$Accounts$Containers$Snippet extends StandardParameters {
|
|
3907
3919
|
/**
|
|
3908
3920
|
* Container snippet's API relative path.
|
|
3909
3921
|
*/
|
|
3910
3922
|
path?: string;
|
|
3911
3923
|
}
|
|
3912
|
-
export interface Params$Resource$Accounts$Containers$Update
|
|
3913
|
-
extends StandardParameters {
|
|
3924
|
+
export interface Params$Resource$Accounts$Containers$Update extends StandardParameters {
|
|
3914
3925
|
/**
|
|
3915
3926
|
* When provided, this fingerprint must match the fingerprint of the container in storage.
|
|
3916
3927
|
*/
|
|
@@ -4370,15 +4381,13 @@ export namespace tagmanager_v2 {
|
|
|
4370
4381
|
}
|
|
4371
4382
|
}
|
|
4372
4383
|
|
|
4373
|
-
export interface Params$Resource$Accounts$Containers$Destinations$Get
|
|
4374
|
-
extends StandardParameters {
|
|
4384
|
+
export interface Params$Resource$Accounts$Containers$Destinations$Get extends StandardParameters {
|
|
4375
4385
|
/**
|
|
4376
4386
|
* Google Tag Destination's API relative path.
|
|
4377
4387
|
*/
|
|
4378
4388
|
path?: string;
|
|
4379
4389
|
}
|
|
4380
|
-
export interface Params$Resource$Accounts$Containers$Destinations$Link
|
|
4381
|
-
extends StandardParameters {
|
|
4390
|
+
export interface Params$Resource$Accounts$Containers$Destinations$Link extends StandardParameters {
|
|
4382
4391
|
/**
|
|
4383
4392
|
* Must be set to true to allow features.user_permissions to change from false to true. If this operation causes an update but this bit is false, the operation will fail.
|
|
4384
4393
|
*/
|
|
@@ -4392,8 +4401,7 @@ export namespace tagmanager_v2 {
|
|
|
4392
4401
|
*/
|
|
4393
4402
|
parent?: string;
|
|
4394
4403
|
}
|
|
4395
|
-
export interface Params$Resource$Accounts$Containers$Destinations$List
|
|
4396
|
-
extends StandardParameters {
|
|
4404
|
+
export interface Params$Resource$Accounts$Containers$Destinations$List extends StandardParameters {
|
|
4397
4405
|
/**
|
|
4398
4406
|
* GTM parent Container's API relative path.
|
|
4399
4407
|
*/
|
|
@@ -5358,8 +5366,7 @@ export namespace tagmanager_v2 {
|
|
|
5358
5366
|
}
|
|
5359
5367
|
}
|
|
5360
5368
|
|
|
5361
|
-
export interface Params$Resource$Accounts$Containers$Environments$Create
|
|
5362
|
-
extends StandardParameters {
|
|
5369
|
+
export interface Params$Resource$Accounts$Containers$Environments$Create extends StandardParameters {
|
|
5363
5370
|
/**
|
|
5364
5371
|
* GTM Container's API relative path.
|
|
5365
5372
|
*/
|
|
@@ -5370,22 +5377,19 @@ export namespace tagmanager_v2 {
|
|
|
5370
5377
|
*/
|
|
5371
5378
|
requestBody?: Schema$Environment;
|
|
5372
5379
|
}
|
|
5373
|
-
export interface Params$Resource$Accounts$Containers$Environments$Delete
|
|
5374
|
-
extends StandardParameters {
|
|
5380
|
+
export interface Params$Resource$Accounts$Containers$Environments$Delete extends StandardParameters {
|
|
5375
5381
|
/**
|
|
5376
5382
|
* GTM Environment's API relative path.
|
|
5377
5383
|
*/
|
|
5378
5384
|
path?: string;
|
|
5379
5385
|
}
|
|
5380
|
-
export interface Params$Resource$Accounts$Containers$Environments$Get
|
|
5381
|
-
extends StandardParameters {
|
|
5386
|
+
export interface Params$Resource$Accounts$Containers$Environments$Get extends StandardParameters {
|
|
5382
5387
|
/**
|
|
5383
5388
|
* GTM Environment's API relative path.
|
|
5384
5389
|
*/
|
|
5385
5390
|
path?: string;
|
|
5386
5391
|
}
|
|
5387
|
-
export interface Params$Resource$Accounts$Containers$Environments$List
|
|
5388
|
-
extends StandardParameters {
|
|
5392
|
+
export interface Params$Resource$Accounts$Containers$Environments$List extends StandardParameters {
|
|
5389
5393
|
/**
|
|
5390
5394
|
* Continuation token for fetching the next page of results.
|
|
5391
5395
|
*/
|
|
@@ -5395,8 +5399,7 @@ export namespace tagmanager_v2 {
|
|
|
5395
5399
|
*/
|
|
5396
5400
|
parent?: string;
|
|
5397
5401
|
}
|
|
5398
|
-
export interface Params$Resource$Accounts$Containers$Environments$Reauthorize
|
|
5399
|
-
extends StandardParameters {
|
|
5402
|
+
export interface Params$Resource$Accounts$Containers$Environments$Reauthorize extends StandardParameters {
|
|
5400
5403
|
/**
|
|
5401
5404
|
* GTM Environment's API relative path.
|
|
5402
5405
|
*/
|
|
@@ -5407,8 +5410,7 @@ export namespace tagmanager_v2 {
|
|
|
5407
5410
|
*/
|
|
5408
5411
|
requestBody?: Schema$Environment;
|
|
5409
5412
|
}
|
|
5410
|
-
export interface Params$Resource$Accounts$Containers$Environments$Update
|
|
5411
|
-
extends StandardParameters {
|
|
5413
|
+
export interface Params$Resource$Accounts$Containers$Environments$Update extends StandardParameters {
|
|
5412
5414
|
/**
|
|
5413
5415
|
* When provided, this fingerprint must match the fingerprint of the environment in storage.
|
|
5414
5416
|
*/
|
|
@@ -6531,15 +6533,13 @@ export namespace tagmanager_v2 {
|
|
|
6531
6533
|
}
|
|
6532
6534
|
}
|
|
6533
6535
|
|
|
6534
|
-
export interface Params$Resource$Accounts$Containers$Versions$Delete
|
|
6535
|
-
extends StandardParameters {
|
|
6536
|
+
export interface Params$Resource$Accounts$Containers$Versions$Delete extends StandardParameters {
|
|
6536
6537
|
/**
|
|
6537
6538
|
* GTM ContainerVersion's API relative path.
|
|
6538
6539
|
*/
|
|
6539
6540
|
path?: string;
|
|
6540
6541
|
}
|
|
6541
|
-
export interface Params$Resource$Accounts$Containers$Versions$Get
|
|
6542
|
-
extends StandardParameters {
|
|
6542
|
+
export interface Params$Resource$Accounts$Containers$Versions$Get extends StandardParameters {
|
|
6543
6543
|
/**
|
|
6544
6544
|
* The GTM ContainerVersion ID. Specify published to retrieve the currently published version.
|
|
6545
6545
|
*/
|
|
@@ -6549,15 +6549,13 @@ export namespace tagmanager_v2 {
|
|
|
6549
6549
|
*/
|
|
6550
6550
|
path?: string;
|
|
6551
6551
|
}
|
|
6552
|
-
export interface Params$Resource$Accounts$Containers$Versions$Live
|
|
6553
|
-
extends StandardParameters {
|
|
6552
|
+
export interface Params$Resource$Accounts$Containers$Versions$Live extends StandardParameters {
|
|
6554
6553
|
/**
|
|
6555
6554
|
* GTM Container's API relative path.
|
|
6556
6555
|
*/
|
|
6557
6556
|
parent?: string;
|
|
6558
6557
|
}
|
|
6559
|
-
export interface Params$Resource$Accounts$Containers$Versions$Publish
|
|
6560
|
-
extends StandardParameters {
|
|
6558
|
+
export interface Params$Resource$Accounts$Containers$Versions$Publish extends StandardParameters {
|
|
6561
6559
|
/**
|
|
6562
6560
|
* When provided, this fingerprint must match the fingerprint of the container version in storage.
|
|
6563
6561
|
*/
|
|
@@ -6567,22 +6565,19 @@ export namespace tagmanager_v2 {
|
|
|
6567
6565
|
*/
|
|
6568
6566
|
path?: string;
|
|
6569
6567
|
}
|
|
6570
|
-
export interface Params$Resource$Accounts$Containers$Versions$Set_latest
|
|
6571
|
-
extends StandardParameters {
|
|
6568
|
+
export interface Params$Resource$Accounts$Containers$Versions$Set_latest extends StandardParameters {
|
|
6572
6569
|
/**
|
|
6573
6570
|
* GTM ContainerVersion's API relative path.
|
|
6574
6571
|
*/
|
|
6575
6572
|
path?: string;
|
|
6576
6573
|
}
|
|
6577
|
-
export interface Params$Resource$Accounts$Containers$Versions$Undelete
|
|
6578
|
-
extends StandardParameters {
|
|
6574
|
+
export interface Params$Resource$Accounts$Containers$Versions$Undelete extends StandardParameters {
|
|
6579
6575
|
/**
|
|
6580
6576
|
* GTM ContainerVersion's API relative path.
|
|
6581
6577
|
*/
|
|
6582
6578
|
path?: string;
|
|
6583
6579
|
}
|
|
6584
|
-
export interface Params$Resource$Accounts$Containers$Versions$Update
|
|
6585
|
-
extends StandardParameters {
|
|
6580
|
+
export interface Params$Resource$Accounts$Containers$Versions$Update extends StandardParameters {
|
|
6586
6581
|
/**
|
|
6587
6582
|
* When provided, this fingerprint must match the fingerprint of the container version in storage.
|
|
6588
6583
|
*/
|
|
@@ -6912,15 +6907,13 @@ export namespace tagmanager_v2 {
|
|
|
6912
6907
|
}
|
|
6913
6908
|
}
|
|
6914
6909
|
|
|
6915
|
-
export interface Params$Resource$Accounts$Containers$Version_headers$Latest
|
|
6916
|
-
extends StandardParameters {
|
|
6910
|
+
export interface Params$Resource$Accounts$Containers$Version_headers$Latest extends StandardParameters {
|
|
6917
6911
|
/**
|
|
6918
6912
|
* GTM Container's API relative path.
|
|
6919
6913
|
*/
|
|
6920
6914
|
parent?: string;
|
|
6921
6915
|
}
|
|
6922
|
-
export interface Params$Resource$Accounts$Containers$Version_headers$List
|
|
6923
|
-
extends StandardParameters {
|
|
6916
|
+
export interface Params$Resource$Accounts$Containers$Version_headers$List extends StandardParameters {
|
|
6924
6917
|
/**
|
|
6925
6918
|
* Also retrieve deleted (archived) versions when true.
|
|
6926
6919
|
*/
|
|
@@ -6982,6 +6975,156 @@ export namespace tagmanager_v2 {
|
|
|
6982
6975
|
);
|
|
6983
6976
|
}
|
|
6984
6977
|
|
|
6978
|
+
/**
|
|
6979
|
+
* Applies multiple entity changes to a workspace in one call. When creating new entities, their entity IDs must be unique and in correct format. That is, they must start with "new_" and followed by number, e.g. "new_1", "new_2". Example body snippet to create myNewTag under myNewFolder is: ``` "changes": [ { "folder": { "folderId": "new_1", "name": "myNewFolder", ... \}, "changeStatus": "added" \}, { "tag": { "tagId": "new_2", "name": "myNewTag", "parentFolderId": "new_1", ... \}, "changeStatus": "added" \} ] ```
|
|
6980
|
+
* @example
|
|
6981
|
+
* ```js
|
|
6982
|
+
* // Before running the sample:
|
|
6983
|
+
* // - Enable the API at:
|
|
6984
|
+
* // https://console.developers.google.com/apis/api/tagmanager.googleapis.com
|
|
6985
|
+
* // - Login into gcloud by running:
|
|
6986
|
+
* // ```sh
|
|
6987
|
+
* // $ gcloud auth application-default login
|
|
6988
|
+
* // ```
|
|
6989
|
+
* // - Install the npm module by running:
|
|
6990
|
+
* // ```sh
|
|
6991
|
+
* // $ npm install googleapis
|
|
6992
|
+
* // ```
|
|
6993
|
+
*
|
|
6994
|
+
* const {google} = require('googleapis');
|
|
6995
|
+
* const tagmanager = google.tagmanager('v2');
|
|
6996
|
+
*
|
|
6997
|
+
* async function main() {
|
|
6998
|
+
* const auth = new google.auth.GoogleAuth({
|
|
6999
|
+
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
7000
|
+
* scopes: ['https://www.googleapis.com/auth/tagmanager.edit.containers'],
|
|
7001
|
+
* });
|
|
7002
|
+
*
|
|
7003
|
+
* // Acquire an auth client, and bind it to all future calls
|
|
7004
|
+
* const authClient = await auth.getClient();
|
|
7005
|
+
* google.options({auth: authClient});
|
|
7006
|
+
*
|
|
7007
|
+
* // Do the magic
|
|
7008
|
+
* const res = await tagmanager.accounts.containers.workspaces.bulk_update({
|
|
7009
|
+
* // GTM Workspace's API relative path.
|
|
7010
|
+
* path: 'accounts/my-account/containers/my-container/workspaces/my-workspace',
|
|
7011
|
+
*
|
|
7012
|
+
* // Request body metadata
|
|
7013
|
+
* requestBody: {
|
|
7014
|
+
* // request body parameters
|
|
7015
|
+
* // {
|
|
7016
|
+
* // "changes": []
|
|
7017
|
+
* // }
|
|
7018
|
+
* },
|
|
7019
|
+
* });
|
|
7020
|
+
* console.log(res.data);
|
|
7021
|
+
*
|
|
7022
|
+
* // Example response
|
|
7023
|
+
* // {
|
|
7024
|
+
* // "changes": []
|
|
7025
|
+
* // }
|
|
7026
|
+
* }
|
|
7027
|
+
*
|
|
7028
|
+
* main().catch(e => {
|
|
7029
|
+
* console.error(e);
|
|
7030
|
+
* throw e;
|
|
7031
|
+
* });
|
|
7032
|
+
*
|
|
7033
|
+
* ```
|
|
7034
|
+
*
|
|
7035
|
+
* @param params - Parameters for request
|
|
7036
|
+
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
|
|
7037
|
+
* @param callback - Optional callback that handles the response.
|
|
7038
|
+
* @returns A promise if used with async/await, or void if used with a callback.
|
|
7039
|
+
*/
|
|
7040
|
+
bulk_update(
|
|
7041
|
+
params: Params$Resource$Accounts$Containers$Workspaces$Bulk_update,
|
|
7042
|
+
options: StreamMethodOptions
|
|
7043
|
+
): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
7044
|
+
bulk_update(
|
|
7045
|
+
params?: Params$Resource$Accounts$Containers$Workspaces$Bulk_update,
|
|
7046
|
+
options?: MethodOptions
|
|
7047
|
+
): Promise<GaxiosResponseWithHTTP2<Schema$BulkUpdateWorkspaceResponse>>;
|
|
7048
|
+
bulk_update(
|
|
7049
|
+
params: Params$Resource$Accounts$Containers$Workspaces$Bulk_update,
|
|
7050
|
+
options: StreamMethodOptions | BodyResponseCallback<Readable>,
|
|
7051
|
+
callback: BodyResponseCallback<Readable>
|
|
7052
|
+
): void;
|
|
7053
|
+
bulk_update(
|
|
7054
|
+
params: Params$Resource$Accounts$Containers$Workspaces$Bulk_update,
|
|
7055
|
+
options:
|
|
7056
|
+
| MethodOptions
|
|
7057
|
+
| BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>,
|
|
7058
|
+
callback: BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>
|
|
7059
|
+
): void;
|
|
7060
|
+
bulk_update(
|
|
7061
|
+
params: Params$Resource$Accounts$Containers$Workspaces$Bulk_update,
|
|
7062
|
+
callback: BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>
|
|
7063
|
+
): void;
|
|
7064
|
+
bulk_update(
|
|
7065
|
+
callback: BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>
|
|
7066
|
+
): void;
|
|
7067
|
+
bulk_update(
|
|
7068
|
+
paramsOrCallback?:
|
|
7069
|
+
| Params$Resource$Accounts$Containers$Workspaces$Bulk_update
|
|
7070
|
+
| BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>
|
|
7071
|
+
| BodyResponseCallback<Readable>,
|
|
7072
|
+
optionsOrCallback?:
|
|
7073
|
+
| MethodOptions
|
|
7074
|
+
| StreamMethodOptions
|
|
7075
|
+
| BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>
|
|
7076
|
+
| BodyResponseCallback<Readable>,
|
|
7077
|
+
callback?:
|
|
7078
|
+
| BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>
|
|
7079
|
+
| BodyResponseCallback<Readable>
|
|
7080
|
+
):
|
|
7081
|
+
| void
|
|
7082
|
+
| Promise<GaxiosResponseWithHTTP2<Schema$BulkUpdateWorkspaceResponse>>
|
|
7083
|
+
| Promise<GaxiosResponseWithHTTP2<Readable>> {
|
|
7084
|
+
let params = (paramsOrCallback ||
|
|
7085
|
+
{}) as Params$Resource$Accounts$Containers$Workspaces$Bulk_update;
|
|
7086
|
+
let options = (optionsOrCallback || {}) as MethodOptions;
|
|
7087
|
+
|
|
7088
|
+
if (typeof paramsOrCallback === 'function') {
|
|
7089
|
+
callback = paramsOrCallback;
|
|
7090
|
+
params =
|
|
7091
|
+
{} as Params$Resource$Accounts$Containers$Workspaces$Bulk_update;
|
|
7092
|
+
options = {};
|
|
7093
|
+
}
|
|
7094
|
+
|
|
7095
|
+
if (typeof optionsOrCallback === 'function') {
|
|
7096
|
+
callback = optionsOrCallback;
|
|
7097
|
+
options = {};
|
|
7098
|
+
}
|
|
7099
|
+
|
|
7100
|
+
const rootUrl = options.rootUrl || 'https://tagmanager.googleapis.com/';
|
|
7101
|
+
const parameters = {
|
|
7102
|
+
options: Object.assign(
|
|
7103
|
+
{
|
|
7104
|
+
url: (rootUrl + '/tagmanager/v2/{+path}/bulk_update').replace(
|
|
7105
|
+
/([^:]\/)\/+/g,
|
|
7106
|
+
'$1'
|
|
7107
|
+
),
|
|
7108
|
+
method: 'POST',
|
|
7109
|
+
apiVersion: '',
|
|
7110
|
+
},
|
|
7111
|
+
options
|
|
7112
|
+
),
|
|
7113
|
+
params,
|
|
7114
|
+
requiredParams: ['path'],
|
|
7115
|
+
pathParams: ['path'],
|
|
7116
|
+
context: this.context,
|
|
7117
|
+
};
|
|
7118
|
+
if (callback) {
|
|
7119
|
+
createAPIRequest<Schema$BulkUpdateWorkspaceResponse>(
|
|
7120
|
+
parameters,
|
|
7121
|
+
callback as BodyResponseCallback<unknown>
|
|
7122
|
+
);
|
|
7123
|
+
} else {
|
|
7124
|
+
return createAPIRequest<Schema$BulkUpdateWorkspaceResponse>(parameters);
|
|
7125
|
+
}
|
|
7126
|
+
}
|
|
7127
|
+
|
|
6985
7128
|
/**
|
|
6986
7129
|
* Creates a Workspace.
|
|
6987
7130
|
* @example
|
|
@@ -8465,8 +8608,18 @@ export namespace tagmanager_v2 {
|
|
|
8465
8608
|
}
|
|
8466
8609
|
}
|
|
8467
8610
|
|
|
8468
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$
|
|
8469
|
-
|
|
8611
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Bulk_update extends StandardParameters {
|
|
8612
|
+
/**
|
|
8613
|
+
* GTM Workspace's API relative path.
|
|
8614
|
+
*/
|
|
8615
|
+
path?: string;
|
|
8616
|
+
|
|
8617
|
+
/**
|
|
8618
|
+
* Request body metadata
|
|
8619
|
+
*/
|
|
8620
|
+
requestBody?: Schema$ProposedChange;
|
|
8621
|
+
}
|
|
8622
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Create extends StandardParameters {
|
|
8470
8623
|
/**
|
|
8471
8624
|
* GTM parent Container's API relative path.
|
|
8472
8625
|
*/
|
|
@@ -8477,8 +8630,7 @@ export namespace tagmanager_v2 {
|
|
|
8477
8630
|
*/
|
|
8478
8631
|
requestBody?: Schema$Workspace;
|
|
8479
8632
|
}
|
|
8480
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Create_version
|
|
8481
|
-
extends StandardParameters {
|
|
8633
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Create_version extends StandardParameters {
|
|
8482
8634
|
/**
|
|
8483
8635
|
* GTM Workspace's API relative path.
|
|
8484
8636
|
*/
|
|
@@ -8489,29 +8641,25 @@ export namespace tagmanager_v2 {
|
|
|
8489
8641
|
*/
|
|
8490
8642
|
requestBody?: Schema$CreateContainerVersionRequestVersionOptions;
|
|
8491
8643
|
}
|
|
8492
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Delete
|
|
8493
|
-
extends StandardParameters {
|
|
8644
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Delete extends StandardParameters {
|
|
8494
8645
|
/**
|
|
8495
8646
|
* GTM Workspace's API relative path.
|
|
8496
8647
|
*/
|
|
8497
8648
|
path?: string;
|
|
8498
8649
|
}
|
|
8499
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Get
|
|
8500
|
-
extends StandardParameters {
|
|
8650
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Get extends StandardParameters {
|
|
8501
8651
|
/**
|
|
8502
8652
|
* GTM Workspace's API relative path.
|
|
8503
8653
|
*/
|
|
8504
8654
|
path?: string;
|
|
8505
8655
|
}
|
|
8506
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Getstatus
|
|
8507
|
-
extends StandardParameters {
|
|
8656
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Getstatus extends StandardParameters {
|
|
8508
8657
|
/**
|
|
8509
8658
|
* GTM Workspace's API relative path.
|
|
8510
8659
|
*/
|
|
8511
8660
|
path?: string;
|
|
8512
8661
|
}
|
|
8513
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$List
|
|
8514
|
-
extends StandardParameters {
|
|
8662
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$List extends StandardParameters {
|
|
8515
8663
|
/**
|
|
8516
8664
|
* Continuation token for fetching the next page of results.
|
|
8517
8665
|
*/
|
|
@@ -8521,15 +8669,13 @@ export namespace tagmanager_v2 {
|
|
|
8521
8669
|
*/
|
|
8522
8670
|
parent?: string;
|
|
8523
8671
|
}
|
|
8524
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Quick_preview
|
|
8525
|
-
extends StandardParameters {
|
|
8672
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Quick_preview extends StandardParameters {
|
|
8526
8673
|
/**
|
|
8527
8674
|
* GTM Workspace's API relative path.
|
|
8528
8675
|
*/
|
|
8529
8676
|
path?: string;
|
|
8530
8677
|
}
|
|
8531
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Resolve_conflict
|
|
8532
|
-
extends StandardParameters {
|
|
8678
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Resolve_conflict extends StandardParameters {
|
|
8533
8679
|
/**
|
|
8534
8680
|
* When provided, this fingerprint must match the fingerprint of the entity_in_workspace in the merge conflict.
|
|
8535
8681
|
*/
|
|
@@ -8544,15 +8690,13 @@ export namespace tagmanager_v2 {
|
|
|
8544
8690
|
*/
|
|
8545
8691
|
requestBody?: Schema$Entity;
|
|
8546
8692
|
}
|
|
8547
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Sync
|
|
8548
|
-
extends StandardParameters {
|
|
8693
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Sync extends StandardParameters {
|
|
8549
8694
|
/**
|
|
8550
8695
|
* GTM Workspace's API relative path.
|
|
8551
8696
|
*/
|
|
8552
8697
|
path?: string;
|
|
8553
8698
|
}
|
|
8554
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Update
|
|
8555
|
-
extends StandardParameters {
|
|
8699
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Update extends StandardParameters {
|
|
8556
8700
|
/**
|
|
8557
8701
|
* When provided, this fingerprint must match the fingerprint of the workspace in storage.
|
|
8558
8702
|
*/
|
|
@@ -9157,8 +9301,7 @@ export namespace tagmanager_v2 {
|
|
|
9157
9301
|
}
|
|
9158
9302
|
}
|
|
9159
9303
|
|
|
9160
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create
|
|
9161
|
-
extends StandardParameters {
|
|
9304
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create extends StandardParameters {
|
|
9162
9305
|
/**
|
|
9163
9306
|
* GTM Workspace's API relative path.
|
|
9164
9307
|
*/
|
|
@@ -9168,8 +9311,7 @@ export namespace tagmanager_v2 {
|
|
|
9168
9311
|
*/
|
|
9169
9312
|
type?: string[];
|
|
9170
9313
|
}
|
|
9171
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete
|
|
9172
|
-
extends StandardParameters {
|
|
9314
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete extends StandardParameters {
|
|
9173
9315
|
/**
|
|
9174
9316
|
* GTM BuiltInVariable's API relative path.
|
|
9175
9317
|
*/
|
|
@@ -9179,8 +9321,7 @@ export namespace tagmanager_v2 {
|
|
|
9179
9321
|
*/
|
|
9180
9322
|
type?: string[];
|
|
9181
9323
|
}
|
|
9182
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$List
|
|
9183
|
-
extends StandardParameters {
|
|
9324
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$List extends StandardParameters {
|
|
9184
9325
|
/**
|
|
9185
9326
|
* Continuation token for fetching the next page of results.
|
|
9186
9327
|
*/
|
|
@@ -9190,8 +9331,7 @@ export namespace tagmanager_v2 {
|
|
|
9190
9331
|
*/
|
|
9191
9332
|
parent?: string;
|
|
9192
9333
|
}
|
|
9193
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert
|
|
9194
|
-
extends StandardParameters {
|
|
9334
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert extends StandardParameters {
|
|
9195
9335
|
/**
|
|
9196
9336
|
* GTM BuiltInVariable's API relative path.
|
|
9197
9337
|
*/
|
|
@@ -10123,8 +10263,7 @@ export namespace tagmanager_v2 {
|
|
|
10123
10263
|
}
|
|
10124
10264
|
}
|
|
10125
10265
|
|
|
10126
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Create
|
|
10127
|
-
extends StandardParameters {
|
|
10266
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Create extends StandardParameters {
|
|
10128
10267
|
/**
|
|
10129
10268
|
* GTM Workspace's API relative path.
|
|
10130
10269
|
*/
|
|
@@ -10135,22 +10274,19 @@ export namespace tagmanager_v2 {
|
|
|
10135
10274
|
*/
|
|
10136
10275
|
requestBody?: Schema$Client;
|
|
10137
10276
|
}
|
|
10138
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Delete
|
|
10139
|
-
extends StandardParameters {
|
|
10277
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Delete extends StandardParameters {
|
|
10140
10278
|
/**
|
|
10141
10279
|
* GTM Client's API relative path.
|
|
10142
10280
|
*/
|
|
10143
10281
|
path?: string;
|
|
10144
10282
|
}
|
|
10145
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Get
|
|
10146
|
-
extends StandardParameters {
|
|
10283
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Get extends StandardParameters {
|
|
10147
10284
|
/**
|
|
10148
10285
|
* GTM Client's API relative path.
|
|
10149
10286
|
*/
|
|
10150
10287
|
path?: string;
|
|
10151
10288
|
}
|
|
10152
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$List
|
|
10153
|
-
extends StandardParameters {
|
|
10289
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$List extends StandardParameters {
|
|
10154
10290
|
/**
|
|
10155
10291
|
* Continuation token for fetching the next page of results.
|
|
10156
10292
|
*/
|
|
@@ -10160,8 +10296,7 @@ export namespace tagmanager_v2 {
|
|
|
10160
10296
|
*/
|
|
10161
10297
|
parent?: string;
|
|
10162
10298
|
}
|
|
10163
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Revert
|
|
10164
|
-
extends StandardParameters {
|
|
10299
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Revert extends StandardParameters {
|
|
10165
10300
|
/**
|
|
10166
10301
|
* When provided, this fingerprint must match the fingerprint of the client in storage.
|
|
10167
10302
|
*/
|
|
@@ -10171,8 +10306,7 @@ export namespace tagmanager_v2 {
|
|
|
10171
10306
|
*/
|
|
10172
10307
|
path?: string;
|
|
10173
10308
|
}
|
|
10174
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Update
|
|
10175
|
-
extends StandardParameters {
|
|
10309
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Update extends StandardParameters {
|
|
10176
10310
|
/**
|
|
10177
10311
|
* When provided, this fingerprint must match the fingerprint of the client in storage.
|
|
10178
10312
|
*/
|
|
@@ -11390,8 +11524,7 @@ export namespace tagmanager_v2 {
|
|
|
11390
11524
|
}
|
|
11391
11525
|
}
|
|
11392
11526
|
|
|
11393
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Create
|
|
11394
|
-
extends StandardParameters {
|
|
11527
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Create extends StandardParameters {
|
|
11395
11528
|
/**
|
|
11396
11529
|
* GTM Workspace's API relative path.
|
|
11397
11530
|
*/
|
|
@@ -11402,15 +11535,13 @@ export namespace tagmanager_v2 {
|
|
|
11402
11535
|
*/
|
|
11403
11536
|
requestBody?: Schema$Folder;
|
|
11404
11537
|
}
|
|
11405
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Delete
|
|
11406
|
-
extends StandardParameters {
|
|
11538
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Delete extends StandardParameters {
|
|
11407
11539
|
/**
|
|
11408
11540
|
* GTM Folder's API relative path.
|
|
11409
11541
|
*/
|
|
11410
11542
|
path?: string;
|
|
11411
11543
|
}
|
|
11412
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Entities
|
|
11413
|
-
extends StandardParameters {
|
|
11544
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Entities extends StandardParameters {
|
|
11414
11545
|
/**
|
|
11415
11546
|
* Continuation token for fetching the next page of results.
|
|
11416
11547
|
*/
|
|
@@ -11420,15 +11551,13 @@ export namespace tagmanager_v2 {
|
|
|
11420
11551
|
*/
|
|
11421
11552
|
path?: string;
|
|
11422
11553
|
}
|
|
11423
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Get
|
|
11424
|
-
extends StandardParameters {
|
|
11554
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Get extends StandardParameters {
|
|
11425
11555
|
/**
|
|
11426
11556
|
* GTM Folder's API relative path.
|
|
11427
11557
|
*/
|
|
11428
11558
|
path?: string;
|
|
11429
11559
|
}
|
|
11430
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$List
|
|
11431
|
-
extends StandardParameters {
|
|
11560
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$List extends StandardParameters {
|
|
11432
11561
|
/**
|
|
11433
11562
|
* Continuation token for fetching the next page of results.
|
|
11434
11563
|
*/
|
|
@@ -11438,8 +11567,7 @@ export namespace tagmanager_v2 {
|
|
|
11438
11567
|
*/
|
|
11439
11568
|
parent?: string;
|
|
11440
11569
|
}
|
|
11441
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder
|
|
11442
|
-
extends StandardParameters {
|
|
11570
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder extends StandardParameters {
|
|
11443
11571
|
/**
|
|
11444
11572
|
* GTM Folder's API relative path.
|
|
11445
11573
|
*/
|
|
@@ -11462,8 +11590,7 @@ export namespace tagmanager_v2 {
|
|
|
11462
11590
|
*/
|
|
11463
11591
|
requestBody?: Schema$Folder;
|
|
11464
11592
|
}
|
|
11465
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Revert
|
|
11466
|
-
extends StandardParameters {
|
|
11593
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Revert extends StandardParameters {
|
|
11467
11594
|
/**
|
|
11468
11595
|
* When provided, this fingerprint must match the fingerprint of the tag in storage.
|
|
11469
11596
|
*/
|
|
@@ -11473,8 +11600,7 @@ export namespace tagmanager_v2 {
|
|
|
11473
11600
|
*/
|
|
11474
11601
|
path?: string;
|
|
11475
11602
|
}
|
|
11476
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Update
|
|
11477
|
-
extends StandardParameters {
|
|
11603
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Update extends StandardParameters {
|
|
11478
11604
|
/**
|
|
11479
11605
|
* When provided, this fingerprint must match the fingerprint of the folder in storage.
|
|
11480
11606
|
*/
|
|
@@ -12254,8 +12380,7 @@ export namespace tagmanager_v2 {
|
|
|
12254
12380
|
}
|
|
12255
12381
|
}
|
|
12256
12382
|
|
|
12257
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create
|
|
12258
|
-
extends StandardParameters {
|
|
12383
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create extends StandardParameters {
|
|
12259
12384
|
/**
|
|
12260
12385
|
* Workspace's API relative path.
|
|
12261
12386
|
*/
|
|
@@ -12266,22 +12391,19 @@ export namespace tagmanager_v2 {
|
|
|
12266
12391
|
*/
|
|
12267
12392
|
requestBody?: Schema$GtagConfig;
|
|
12268
12393
|
}
|
|
12269
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete
|
|
12270
|
-
extends StandardParameters {
|
|
12394
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete extends StandardParameters {
|
|
12271
12395
|
/**
|
|
12272
12396
|
* Google tag config's API relative path.
|
|
12273
12397
|
*/
|
|
12274
12398
|
path?: string;
|
|
12275
12399
|
}
|
|
12276
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get
|
|
12277
|
-
extends StandardParameters {
|
|
12400
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get extends StandardParameters {
|
|
12278
12401
|
/**
|
|
12279
12402
|
* Google tag config's API relative path.
|
|
12280
12403
|
*/
|
|
12281
12404
|
path?: string;
|
|
12282
12405
|
}
|
|
12283
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$List
|
|
12284
|
-
extends StandardParameters {
|
|
12406
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$List extends StandardParameters {
|
|
12285
12407
|
/**
|
|
12286
12408
|
* Continuation token for fetching the next page of results.
|
|
12287
12409
|
*/
|
|
@@ -12291,8 +12413,7 @@ export namespace tagmanager_v2 {
|
|
|
12291
12413
|
*/
|
|
12292
12414
|
parent?: string;
|
|
12293
12415
|
}
|
|
12294
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Update
|
|
12295
|
-
extends StandardParameters {
|
|
12416
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Update extends StandardParameters {
|
|
12296
12417
|
/**
|
|
12297
12418
|
* When provided, this fingerprint must match the fingerprint of the config in storage.
|
|
12298
12419
|
*/
|
|
@@ -13285,8 +13406,7 @@ export namespace tagmanager_v2 {
|
|
|
13285
13406
|
}
|
|
13286
13407
|
}
|
|
13287
13408
|
|
|
13288
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Create
|
|
13289
|
-
extends StandardParameters {
|
|
13409
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Create extends StandardParameters {
|
|
13290
13410
|
/**
|
|
13291
13411
|
* GTM Workspace's API relative path.
|
|
13292
13412
|
*/
|
|
@@ -13297,22 +13417,19 @@ export namespace tagmanager_v2 {
|
|
|
13297
13417
|
*/
|
|
13298
13418
|
requestBody?: Schema$Tag;
|
|
13299
13419
|
}
|
|
13300
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Delete
|
|
13301
|
-
extends StandardParameters {
|
|
13420
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Delete extends StandardParameters {
|
|
13302
13421
|
/**
|
|
13303
13422
|
* GTM Tag's API relative path.
|
|
13304
13423
|
*/
|
|
13305
13424
|
path?: string;
|
|
13306
13425
|
}
|
|
13307
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Get
|
|
13308
|
-
extends StandardParameters {
|
|
13426
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Get extends StandardParameters {
|
|
13309
13427
|
/**
|
|
13310
13428
|
* GTM Tag's API relative path.
|
|
13311
13429
|
*/
|
|
13312
13430
|
path?: string;
|
|
13313
13431
|
}
|
|
13314
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$List
|
|
13315
|
-
extends StandardParameters {
|
|
13432
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$List extends StandardParameters {
|
|
13316
13433
|
/**
|
|
13317
13434
|
* Continuation token for fetching the next page of results.
|
|
13318
13435
|
*/
|
|
@@ -13322,8 +13439,7 @@ export namespace tagmanager_v2 {
|
|
|
13322
13439
|
*/
|
|
13323
13440
|
parent?: string;
|
|
13324
13441
|
}
|
|
13325
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Revert
|
|
13326
|
-
extends StandardParameters {
|
|
13442
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Revert extends StandardParameters {
|
|
13327
13443
|
/**
|
|
13328
13444
|
* When provided, this fingerprint must match the fingerprint of thetag in storage.
|
|
13329
13445
|
*/
|
|
@@ -13333,8 +13449,7 @@ export namespace tagmanager_v2 {
|
|
|
13333
13449
|
*/
|
|
13334
13450
|
path?: string;
|
|
13335
13451
|
}
|
|
13336
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Update
|
|
13337
|
-
extends StandardParameters {
|
|
13452
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Update extends StandardParameters {
|
|
13338
13453
|
/**
|
|
13339
13454
|
* When provided, this fingerprint must match the fingerprint of the tag in storage.
|
|
13340
13455
|
*/
|
|
@@ -14418,8 +14533,7 @@ export namespace tagmanager_v2 {
|
|
|
14418
14533
|
}
|
|
14419
14534
|
}
|
|
14420
14535
|
|
|
14421
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Create
|
|
14422
|
-
extends StandardParameters {
|
|
14536
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Create extends StandardParameters {
|
|
14423
14537
|
/**
|
|
14424
14538
|
* GTM Workspace's API relative path.
|
|
14425
14539
|
*/
|
|
@@ -14430,22 +14544,19 @@ export namespace tagmanager_v2 {
|
|
|
14430
14544
|
*/
|
|
14431
14545
|
requestBody?: Schema$CustomTemplate;
|
|
14432
14546
|
}
|
|
14433
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Delete
|
|
14434
|
-
extends StandardParameters {
|
|
14547
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Delete extends StandardParameters {
|
|
14435
14548
|
/**
|
|
14436
14549
|
* GTM Custom Template's API relative path.
|
|
14437
14550
|
*/
|
|
14438
14551
|
path?: string;
|
|
14439
14552
|
}
|
|
14440
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Get
|
|
14441
|
-
extends StandardParameters {
|
|
14553
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Get extends StandardParameters {
|
|
14442
14554
|
/**
|
|
14443
14555
|
* GTM Custom Template's API relative path.
|
|
14444
14556
|
*/
|
|
14445
14557
|
path?: string;
|
|
14446
14558
|
}
|
|
14447
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery
|
|
14448
|
-
extends StandardParameters {
|
|
14559
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery extends StandardParameters {
|
|
14449
14560
|
/**
|
|
14450
14561
|
* 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.
|
|
14451
14562
|
*/
|
|
@@ -14467,8 +14578,7 @@ export namespace tagmanager_v2 {
|
|
|
14467
14578
|
*/
|
|
14468
14579
|
parent?: string;
|
|
14469
14580
|
}
|
|
14470
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$List
|
|
14471
|
-
extends StandardParameters {
|
|
14581
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$List extends StandardParameters {
|
|
14472
14582
|
/**
|
|
14473
14583
|
* Continuation token for fetching the next page of results.
|
|
14474
14584
|
*/
|
|
@@ -14478,8 +14588,7 @@ export namespace tagmanager_v2 {
|
|
|
14478
14588
|
*/
|
|
14479
14589
|
parent?: string;
|
|
14480
14590
|
}
|
|
14481
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Revert
|
|
14482
|
-
extends StandardParameters {
|
|
14591
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Revert extends StandardParameters {
|
|
14483
14592
|
/**
|
|
14484
14593
|
* When provided, this fingerprint must match the fingerprint of the template in storage.
|
|
14485
14594
|
*/
|
|
@@ -14489,8 +14598,7 @@ export namespace tagmanager_v2 {
|
|
|
14489
14598
|
*/
|
|
14490
14599
|
path?: string;
|
|
14491
14600
|
}
|
|
14492
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Update
|
|
14493
|
-
extends StandardParameters {
|
|
14601
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Update extends StandardParameters {
|
|
14494
14602
|
/**
|
|
14495
14603
|
* When provided, this fingerprint must match the fingerprint of the templates in storage.
|
|
14496
14604
|
*/
|
|
@@ -15436,8 +15544,7 @@ export namespace tagmanager_v2 {
|
|
|
15436
15544
|
}
|
|
15437
15545
|
}
|
|
15438
15546
|
|
|
15439
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Create
|
|
15440
|
-
extends StandardParameters {
|
|
15547
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Create extends StandardParameters {
|
|
15441
15548
|
/**
|
|
15442
15549
|
* GTM Workspace's API relative path.
|
|
15443
15550
|
*/
|
|
@@ -15448,22 +15555,19 @@ export namespace tagmanager_v2 {
|
|
|
15448
15555
|
*/
|
|
15449
15556
|
requestBody?: Schema$Transformation;
|
|
15450
15557
|
}
|
|
15451
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete
|
|
15452
|
-
extends StandardParameters {
|
|
15558
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete extends StandardParameters {
|
|
15453
15559
|
/**
|
|
15454
15560
|
* GTM Transformation's API relative path.
|
|
15455
15561
|
*/
|
|
15456
15562
|
path?: string;
|
|
15457
15563
|
}
|
|
15458
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Get
|
|
15459
|
-
extends StandardParameters {
|
|
15564
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Get extends StandardParameters {
|
|
15460
15565
|
/**
|
|
15461
15566
|
* GTM Transformation's API relative path.
|
|
15462
15567
|
*/
|
|
15463
15568
|
path?: string;
|
|
15464
15569
|
}
|
|
15465
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$List
|
|
15466
|
-
extends StandardParameters {
|
|
15570
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$List extends StandardParameters {
|
|
15467
15571
|
/**
|
|
15468
15572
|
* Continuation token for fetching the next page of results.
|
|
15469
15573
|
*/
|
|
@@ -15473,8 +15577,7 @@ export namespace tagmanager_v2 {
|
|
|
15473
15577
|
*/
|
|
15474
15578
|
parent?: string;
|
|
15475
15579
|
}
|
|
15476
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Revert
|
|
15477
|
-
extends StandardParameters {
|
|
15580
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Revert extends StandardParameters {
|
|
15478
15581
|
/**
|
|
15479
15582
|
* When provided, this fingerprint must match the fingerprint of the transformation in storage.
|
|
15480
15583
|
*/
|
|
@@ -15484,8 +15587,7 @@ export namespace tagmanager_v2 {
|
|
|
15484
15587
|
*/
|
|
15485
15588
|
path?: string;
|
|
15486
15589
|
}
|
|
15487
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Update
|
|
15488
|
-
extends StandardParameters {
|
|
15590
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Update extends StandardParameters {
|
|
15489
15591
|
/**
|
|
15490
15592
|
* When provided, this fingerprint must match the fingerprint of the transformation in storage.
|
|
15491
15593
|
*/
|
|
@@ -16519,8 +16621,7 @@ export namespace tagmanager_v2 {
|
|
|
16519
16621
|
}
|
|
16520
16622
|
}
|
|
16521
16623
|
|
|
16522
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Create
|
|
16523
|
-
extends StandardParameters {
|
|
16624
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Create extends StandardParameters {
|
|
16524
16625
|
/**
|
|
16525
16626
|
* GTM Workspace's API relative path.
|
|
16526
16627
|
*/
|
|
@@ -16531,22 +16632,19 @@ export namespace tagmanager_v2 {
|
|
|
16531
16632
|
*/
|
|
16532
16633
|
requestBody?: Schema$Trigger;
|
|
16533
16634
|
}
|
|
16534
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete
|
|
16535
|
-
extends StandardParameters {
|
|
16635
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete extends StandardParameters {
|
|
16536
16636
|
/**
|
|
16537
16637
|
* GTM Trigger's API relative path.
|
|
16538
16638
|
*/
|
|
16539
16639
|
path?: string;
|
|
16540
16640
|
}
|
|
16541
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Get
|
|
16542
|
-
extends StandardParameters {
|
|
16641
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Get extends StandardParameters {
|
|
16543
16642
|
/**
|
|
16544
16643
|
* GTM Trigger's API relative path.
|
|
16545
16644
|
*/
|
|
16546
16645
|
path?: string;
|
|
16547
16646
|
}
|
|
16548
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$List
|
|
16549
|
-
extends StandardParameters {
|
|
16647
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$List extends StandardParameters {
|
|
16550
16648
|
/**
|
|
16551
16649
|
* Continuation token for fetching the next page of results.
|
|
16552
16650
|
*/
|
|
@@ -16556,8 +16654,7 @@ export namespace tagmanager_v2 {
|
|
|
16556
16654
|
*/
|
|
16557
16655
|
parent?: string;
|
|
16558
16656
|
}
|
|
16559
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Revert
|
|
16560
|
-
extends StandardParameters {
|
|
16657
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Revert extends StandardParameters {
|
|
16561
16658
|
/**
|
|
16562
16659
|
* When provided, this fingerprint must match the fingerprint of the trigger in storage.
|
|
16563
16660
|
*/
|
|
@@ -16567,8 +16664,7 @@ export namespace tagmanager_v2 {
|
|
|
16567
16664
|
*/
|
|
16568
16665
|
path?: string;
|
|
16569
16666
|
}
|
|
16570
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Update
|
|
16571
|
-
extends StandardParameters {
|
|
16667
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Update extends StandardParameters {
|
|
16572
16668
|
/**
|
|
16573
16669
|
* When provided, this fingerprint must match the fingerprint of the trigger in storage.
|
|
16574
16670
|
*/
|
|
@@ -17527,8 +17623,7 @@ export namespace tagmanager_v2 {
|
|
|
17527
17623
|
}
|
|
17528
17624
|
}
|
|
17529
17625
|
|
|
17530
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Create
|
|
17531
|
-
extends StandardParameters {
|
|
17626
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Create extends StandardParameters {
|
|
17532
17627
|
/**
|
|
17533
17628
|
* GTM Workspace's API relative path.
|
|
17534
17629
|
*/
|
|
@@ -17539,22 +17634,19 @@ export namespace tagmanager_v2 {
|
|
|
17539
17634
|
*/
|
|
17540
17635
|
requestBody?: Schema$Variable;
|
|
17541
17636
|
}
|
|
17542
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Delete
|
|
17543
|
-
extends StandardParameters {
|
|
17637
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Delete extends StandardParameters {
|
|
17544
17638
|
/**
|
|
17545
17639
|
* GTM Variable's API relative path.
|
|
17546
17640
|
*/
|
|
17547
17641
|
path?: string;
|
|
17548
17642
|
}
|
|
17549
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Get
|
|
17550
|
-
extends StandardParameters {
|
|
17643
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Get extends StandardParameters {
|
|
17551
17644
|
/**
|
|
17552
17645
|
* GTM Variable's API relative path.
|
|
17553
17646
|
*/
|
|
17554
17647
|
path?: string;
|
|
17555
17648
|
}
|
|
17556
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$List
|
|
17557
|
-
extends StandardParameters {
|
|
17649
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$List extends StandardParameters {
|
|
17558
17650
|
/**
|
|
17559
17651
|
* Continuation token for fetching the next page of results.
|
|
17560
17652
|
*/
|
|
@@ -17564,8 +17656,7 @@ export namespace tagmanager_v2 {
|
|
|
17564
17656
|
*/
|
|
17565
17657
|
parent?: string;
|
|
17566
17658
|
}
|
|
17567
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Revert
|
|
17568
|
-
extends StandardParameters {
|
|
17659
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Revert extends StandardParameters {
|
|
17569
17660
|
/**
|
|
17570
17661
|
* When provided, this fingerprint must match the fingerprint of the variable in storage.
|
|
17571
17662
|
*/
|
|
@@ -17575,8 +17666,7 @@ export namespace tagmanager_v2 {
|
|
|
17575
17666
|
*/
|
|
17576
17667
|
path?: string;
|
|
17577
17668
|
}
|
|
17578
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Update
|
|
17579
|
-
extends StandardParameters {
|
|
17669
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Update extends StandardParameters {
|
|
17580
17670
|
/**
|
|
17581
17671
|
* When provided, this fingerprint must match the fingerprint of the variable in storage.
|
|
17582
17672
|
*/
|
|
@@ -18505,8 +18595,7 @@ export namespace tagmanager_v2 {
|
|
|
18505
18595
|
}
|
|
18506
18596
|
}
|
|
18507
18597
|
|
|
18508
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Create
|
|
18509
|
-
extends StandardParameters {
|
|
18598
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Create extends StandardParameters {
|
|
18510
18599
|
/**
|
|
18511
18600
|
* GTM Workspace's API relative path.
|
|
18512
18601
|
*/
|
|
@@ -18517,22 +18606,19 @@ export namespace tagmanager_v2 {
|
|
|
18517
18606
|
*/
|
|
18518
18607
|
requestBody?: Schema$Zone;
|
|
18519
18608
|
}
|
|
18520
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Delete
|
|
18521
|
-
extends StandardParameters {
|
|
18609
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Delete extends StandardParameters {
|
|
18522
18610
|
/**
|
|
18523
18611
|
* GTM Zone's API relative path.
|
|
18524
18612
|
*/
|
|
18525
18613
|
path?: string;
|
|
18526
18614
|
}
|
|
18527
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Get
|
|
18528
|
-
extends StandardParameters {
|
|
18615
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Get extends StandardParameters {
|
|
18529
18616
|
/**
|
|
18530
18617
|
* GTM Zone's API relative path.
|
|
18531
18618
|
*/
|
|
18532
18619
|
path?: string;
|
|
18533
18620
|
}
|
|
18534
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$List
|
|
18535
|
-
extends StandardParameters {
|
|
18621
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$List extends StandardParameters {
|
|
18536
18622
|
/**
|
|
18537
18623
|
* Continuation token for fetching the next page of results.
|
|
18538
18624
|
*/
|
|
@@ -18542,8 +18628,7 @@ export namespace tagmanager_v2 {
|
|
|
18542
18628
|
*/
|
|
18543
18629
|
parent?: string;
|
|
18544
18630
|
}
|
|
18545
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Revert
|
|
18546
|
-
extends StandardParameters {
|
|
18631
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Revert extends StandardParameters {
|
|
18547
18632
|
/**
|
|
18548
18633
|
* When provided, this fingerprint must match the fingerprint of the zone in storage.
|
|
18549
18634
|
*/
|
|
@@ -18553,8 +18638,7 @@ export namespace tagmanager_v2 {
|
|
|
18553
18638
|
*/
|
|
18554
18639
|
path?: string;
|
|
18555
18640
|
}
|
|
18556
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Update
|
|
18557
|
-
extends StandardParameters {
|
|
18641
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Update extends StandardParameters {
|
|
18558
18642
|
/**
|
|
18559
18643
|
* When provided, this fingerprint must match the fingerprint of the zone in storage.
|
|
18560
18644
|
*/
|
|
@@ -19296,8 +19380,7 @@ export namespace tagmanager_v2 {
|
|
|
19296
19380
|
}
|
|
19297
19381
|
}
|
|
19298
19382
|
|
|
19299
|
-
export interface Params$Resource$Accounts$User_permissions$Create
|
|
19300
|
-
extends StandardParameters {
|
|
19383
|
+
export interface Params$Resource$Accounts$User_permissions$Create extends StandardParameters {
|
|
19301
19384
|
/**
|
|
19302
19385
|
* GTM Account's API relative path.
|
|
19303
19386
|
*/
|
|
@@ -19308,22 +19391,19 @@ export namespace tagmanager_v2 {
|
|
|
19308
19391
|
*/
|
|
19309
19392
|
requestBody?: Schema$UserPermission;
|
|
19310
19393
|
}
|
|
19311
|
-
export interface Params$Resource$Accounts$User_permissions$Delete
|
|
19312
|
-
extends StandardParameters {
|
|
19394
|
+
export interface Params$Resource$Accounts$User_permissions$Delete extends StandardParameters {
|
|
19313
19395
|
/**
|
|
19314
19396
|
* GTM UserPermission's API relative path.
|
|
19315
19397
|
*/
|
|
19316
19398
|
path?: string;
|
|
19317
19399
|
}
|
|
19318
|
-
export interface Params$Resource$Accounts$User_permissions$Get
|
|
19319
|
-
extends StandardParameters {
|
|
19400
|
+
export interface Params$Resource$Accounts$User_permissions$Get extends StandardParameters {
|
|
19320
19401
|
/**
|
|
19321
19402
|
* GTM UserPermission's API relative path.
|
|
19322
19403
|
*/
|
|
19323
19404
|
path?: string;
|
|
19324
19405
|
}
|
|
19325
|
-
export interface Params$Resource$Accounts$User_permissions$List
|
|
19326
|
-
extends StandardParameters {
|
|
19406
|
+
export interface Params$Resource$Accounts$User_permissions$List extends StandardParameters {
|
|
19327
19407
|
/**
|
|
19328
19408
|
* Continuation token for fetching the next page of results.
|
|
19329
19409
|
*/
|
|
@@ -19333,8 +19413,7 @@ export namespace tagmanager_v2 {
|
|
|
19333
19413
|
*/
|
|
19334
19414
|
parent?: string;
|
|
19335
19415
|
}
|
|
19336
|
-
export interface Params$Resource$Accounts$User_permissions$Update
|
|
19337
|
-
extends StandardParameters {
|
|
19416
|
+
export interface Params$Resource$Accounts$User_permissions$Update extends StandardParameters {
|
|
19338
19417
|
/**
|
|
19339
19418
|
* GTM UserPermission's API relative path.
|
|
19340
19419
|
*/
|