@googleapis/tagmanager 13.0.0 → 14.1.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 +18 -0
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/v1.js.map +1 -1
- package/build/v2.d.ts +90 -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 +275 -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
|
*/
|
|
@@ -3804,8 +3816,7 @@ export namespace tagmanager_v2 {
|
|
|
3804
3816
|
}
|
|
3805
3817
|
}
|
|
3806
3818
|
|
|
3807
|
-
export interface Params$Resource$Accounts$Containers$Combine
|
|
3808
|
-
extends StandardParameters {
|
|
3819
|
+
export interface Params$Resource$Accounts$Containers$Combine extends StandardParameters {
|
|
3809
3820
|
/**
|
|
3810
3821
|
* 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
3822
|
*/
|
|
@@ -3823,8 +3834,7 @@ export namespace tagmanager_v2 {
|
|
|
3823
3834
|
*/
|
|
3824
3835
|
settingSource?: string;
|
|
3825
3836
|
}
|
|
3826
|
-
export interface Params$Resource$Accounts$Containers$Create
|
|
3827
|
-
extends StandardParameters {
|
|
3837
|
+
export interface Params$Resource$Accounts$Containers$Create extends StandardParameters {
|
|
3828
3838
|
/**
|
|
3829
3839
|
* GTM Account's API relative path.
|
|
3830
3840
|
*/
|
|
@@ -3835,22 +3845,19 @@ export namespace tagmanager_v2 {
|
|
|
3835
3845
|
*/
|
|
3836
3846
|
requestBody?: Schema$Container;
|
|
3837
3847
|
}
|
|
3838
|
-
export interface Params$Resource$Accounts$Containers$Delete
|
|
3839
|
-
extends StandardParameters {
|
|
3848
|
+
export interface Params$Resource$Accounts$Containers$Delete extends StandardParameters {
|
|
3840
3849
|
/**
|
|
3841
3850
|
* GTM Container's API relative path.
|
|
3842
3851
|
*/
|
|
3843
3852
|
path?: string;
|
|
3844
3853
|
}
|
|
3845
|
-
export interface Params$Resource$Accounts$Containers$Get
|
|
3846
|
-
extends StandardParameters {
|
|
3854
|
+
export interface Params$Resource$Accounts$Containers$Get extends StandardParameters {
|
|
3847
3855
|
/**
|
|
3848
3856
|
* GTM Container's API relative path.
|
|
3849
3857
|
*/
|
|
3850
3858
|
path?: string;
|
|
3851
3859
|
}
|
|
3852
|
-
export interface Params$Resource$Accounts$Containers$List
|
|
3853
|
-
extends StandardParameters {
|
|
3860
|
+
export interface Params$Resource$Accounts$Containers$List extends StandardParameters {
|
|
3854
3861
|
/**
|
|
3855
3862
|
* Continuation token for fetching the next page of results.
|
|
3856
3863
|
*/
|
|
@@ -3860,8 +3867,7 @@ export namespace tagmanager_v2 {
|
|
|
3860
3867
|
*/
|
|
3861
3868
|
parent?: string;
|
|
3862
3869
|
}
|
|
3863
|
-
export interface Params$Resource$Accounts$Containers$Lookup
|
|
3864
|
-
extends StandardParameters {
|
|
3870
|
+
export interface Params$Resource$Accounts$Containers$Lookup extends StandardParameters {
|
|
3865
3871
|
/**
|
|
3866
3872
|
* Destination ID linked to a GTM Container, e.g. AW-123456789. Only one of destination_id or tag_id should be set.
|
|
3867
3873
|
*/
|
|
@@ -3871,8 +3877,7 @@ export namespace tagmanager_v2 {
|
|
|
3871
3877
|
*/
|
|
3872
3878
|
tagId?: string;
|
|
3873
3879
|
}
|
|
3874
|
-
export interface Params$Resource$Accounts$Containers$Move_tag_id
|
|
3875
|
-
extends StandardParameters {
|
|
3880
|
+
export interface Params$Resource$Accounts$Containers$Move_tag_id extends StandardParameters {
|
|
3876
3881
|
/**
|
|
3877
3882
|
* 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
3883
|
*/
|
|
@@ -3902,15 +3907,13 @@ export namespace tagmanager_v2 {
|
|
|
3902
3907
|
*/
|
|
3903
3908
|
tagName?: string;
|
|
3904
3909
|
}
|
|
3905
|
-
export interface Params$Resource$Accounts$Containers$Snippet
|
|
3906
|
-
extends StandardParameters {
|
|
3910
|
+
export interface Params$Resource$Accounts$Containers$Snippet extends StandardParameters {
|
|
3907
3911
|
/**
|
|
3908
3912
|
* Container snippet's API relative path.
|
|
3909
3913
|
*/
|
|
3910
3914
|
path?: string;
|
|
3911
3915
|
}
|
|
3912
|
-
export interface Params$Resource$Accounts$Containers$Update
|
|
3913
|
-
extends StandardParameters {
|
|
3916
|
+
export interface Params$Resource$Accounts$Containers$Update extends StandardParameters {
|
|
3914
3917
|
/**
|
|
3915
3918
|
* When provided, this fingerprint must match the fingerprint of the container in storage.
|
|
3916
3919
|
*/
|
|
@@ -4370,15 +4373,13 @@ export namespace tagmanager_v2 {
|
|
|
4370
4373
|
}
|
|
4371
4374
|
}
|
|
4372
4375
|
|
|
4373
|
-
export interface Params$Resource$Accounts$Containers$Destinations$Get
|
|
4374
|
-
extends StandardParameters {
|
|
4376
|
+
export interface Params$Resource$Accounts$Containers$Destinations$Get extends StandardParameters {
|
|
4375
4377
|
/**
|
|
4376
4378
|
* Google Tag Destination's API relative path.
|
|
4377
4379
|
*/
|
|
4378
4380
|
path?: string;
|
|
4379
4381
|
}
|
|
4380
|
-
export interface Params$Resource$Accounts$Containers$Destinations$Link
|
|
4381
|
-
extends StandardParameters {
|
|
4382
|
+
export interface Params$Resource$Accounts$Containers$Destinations$Link extends StandardParameters {
|
|
4382
4383
|
/**
|
|
4383
4384
|
* 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
4385
|
*/
|
|
@@ -4392,8 +4393,7 @@ export namespace tagmanager_v2 {
|
|
|
4392
4393
|
*/
|
|
4393
4394
|
parent?: string;
|
|
4394
4395
|
}
|
|
4395
|
-
export interface Params$Resource$Accounts$Containers$Destinations$List
|
|
4396
|
-
extends StandardParameters {
|
|
4396
|
+
export interface Params$Resource$Accounts$Containers$Destinations$List extends StandardParameters {
|
|
4397
4397
|
/**
|
|
4398
4398
|
* GTM parent Container's API relative path.
|
|
4399
4399
|
*/
|
|
@@ -5358,8 +5358,7 @@ export namespace tagmanager_v2 {
|
|
|
5358
5358
|
}
|
|
5359
5359
|
}
|
|
5360
5360
|
|
|
5361
|
-
export interface Params$Resource$Accounts$Containers$Environments$Create
|
|
5362
|
-
extends StandardParameters {
|
|
5361
|
+
export interface Params$Resource$Accounts$Containers$Environments$Create extends StandardParameters {
|
|
5363
5362
|
/**
|
|
5364
5363
|
* GTM Container's API relative path.
|
|
5365
5364
|
*/
|
|
@@ -5370,22 +5369,19 @@ export namespace tagmanager_v2 {
|
|
|
5370
5369
|
*/
|
|
5371
5370
|
requestBody?: Schema$Environment;
|
|
5372
5371
|
}
|
|
5373
|
-
export interface Params$Resource$Accounts$Containers$Environments$Delete
|
|
5374
|
-
extends StandardParameters {
|
|
5372
|
+
export interface Params$Resource$Accounts$Containers$Environments$Delete extends StandardParameters {
|
|
5375
5373
|
/**
|
|
5376
5374
|
* GTM Environment's API relative path.
|
|
5377
5375
|
*/
|
|
5378
5376
|
path?: string;
|
|
5379
5377
|
}
|
|
5380
|
-
export interface Params$Resource$Accounts$Containers$Environments$Get
|
|
5381
|
-
extends StandardParameters {
|
|
5378
|
+
export interface Params$Resource$Accounts$Containers$Environments$Get extends StandardParameters {
|
|
5382
5379
|
/**
|
|
5383
5380
|
* GTM Environment's API relative path.
|
|
5384
5381
|
*/
|
|
5385
5382
|
path?: string;
|
|
5386
5383
|
}
|
|
5387
|
-
export interface Params$Resource$Accounts$Containers$Environments$List
|
|
5388
|
-
extends StandardParameters {
|
|
5384
|
+
export interface Params$Resource$Accounts$Containers$Environments$List extends StandardParameters {
|
|
5389
5385
|
/**
|
|
5390
5386
|
* Continuation token for fetching the next page of results.
|
|
5391
5387
|
*/
|
|
@@ -5395,8 +5391,7 @@ export namespace tagmanager_v2 {
|
|
|
5395
5391
|
*/
|
|
5396
5392
|
parent?: string;
|
|
5397
5393
|
}
|
|
5398
|
-
export interface Params$Resource$Accounts$Containers$Environments$Reauthorize
|
|
5399
|
-
extends StandardParameters {
|
|
5394
|
+
export interface Params$Resource$Accounts$Containers$Environments$Reauthorize extends StandardParameters {
|
|
5400
5395
|
/**
|
|
5401
5396
|
* GTM Environment's API relative path.
|
|
5402
5397
|
*/
|
|
@@ -5407,8 +5402,7 @@ export namespace tagmanager_v2 {
|
|
|
5407
5402
|
*/
|
|
5408
5403
|
requestBody?: Schema$Environment;
|
|
5409
5404
|
}
|
|
5410
|
-
export interface Params$Resource$Accounts$Containers$Environments$Update
|
|
5411
|
-
extends StandardParameters {
|
|
5405
|
+
export interface Params$Resource$Accounts$Containers$Environments$Update extends StandardParameters {
|
|
5412
5406
|
/**
|
|
5413
5407
|
* When provided, this fingerprint must match the fingerprint of the environment in storage.
|
|
5414
5408
|
*/
|
|
@@ -6531,15 +6525,13 @@ export namespace tagmanager_v2 {
|
|
|
6531
6525
|
}
|
|
6532
6526
|
}
|
|
6533
6527
|
|
|
6534
|
-
export interface Params$Resource$Accounts$Containers$Versions$Delete
|
|
6535
|
-
extends StandardParameters {
|
|
6528
|
+
export interface Params$Resource$Accounts$Containers$Versions$Delete extends StandardParameters {
|
|
6536
6529
|
/**
|
|
6537
6530
|
* GTM ContainerVersion's API relative path.
|
|
6538
6531
|
*/
|
|
6539
6532
|
path?: string;
|
|
6540
6533
|
}
|
|
6541
|
-
export interface Params$Resource$Accounts$Containers$Versions$Get
|
|
6542
|
-
extends StandardParameters {
|
|
6534
|
+
export interface Params$Resource$Accounts$Containers$Versions$Get extends StandardParameters {
|
|
6543
6535
|
/**
|
|
6544
6536
|
* The GTM ContainerVersion ID. Specify published to retrieve the currently published version.
|
|
6545
6537
|
*/
|
|
@@ -6549,15 +6541,13 @@ export namespace tagmanager_v2 {
|
|
|
6549
6541
|
*/
|
|
6550
6542
|
path?: string;
|
|
6551
6543
|
}
|
|
6552
|
-
export interface Params$Resource$Accounts$Containers$Versions$Live
|
|
6553
|
-
extends StandardParameters {
|
|
6544
|
+
export interface Params$Resource$Accounts$Containers$Versions$Live extends StandardParameters {
|
|
6554
6545
|
/**
|
|
6555
6546
|
* GTM Container's API relative path.
|
|
6556
6547
|
*/
|
|
6557
6548
|
parent?: string;
|
|
6558
6549
|
}
|
|
6559
|
-
export interface Params$Resource$Accounts$Containers$Versions$Publish
|
|
6560
|
-
extends StandardParameters {
|
|
6550
|
+
export interface Params$Resource$Accounts$Containers$Versions$Publish extends StandardParameters {
|
|
6561
6551
|
/**
|
|
6562
6552
|
* When provided, this fingerprint must match the fingerprint of the container version in storage.
|
|
6563
6553
|
*/
|
|
@@ -6567,22 +6557,19 @@ export namespace tagmanager_v2 {
|
|
|
6567
6557
|
*/
|
|
6568
6558
|
path?: string;
|
|
6569
6559
|
}
|
|
6570
|
-
export interface Params$Resource$Accounts$Containers$Versions$Set_latest
|
|
6571
|
-
extends StandardParameters {
|
|
6560
|
+
export interface Params$Resource$Accounts$Containers$Versions$Set_latest extends StandardParameters {
|
|
6572
6561
|
/**
|
|
6573
6562
|
* GTM ContainerVersion's API relative path.
|
|
6574
6563
|
*/
|
|
6575
6564
|
path?: string;
|
|
6576
6565
|
}
|
|
6577
|
-
export interface Params$Resource$Accounts$Containers$Versions$Undelete
|
|
6578
|
-
extends StandardParameters {
|
|
6566
|
+
export interface Params$Resource$Accounts$Containers$Versions$Undelete extends StandardParameters {
|
|
6579
6567
|
/**
|
|
6580
6568
|
* GTM ContainerVersion's API relative path.
|
|
6581
6569
|
*/
|
|
6582
6570
|
path?: string;
|
|
6583
6571
|
}
|
|
6584
|
-
export interface Params$Resource$Accounts$Containers$Versions$Update
|
|
6585
|
-
extends StandardParameters {
|
|
6572
|
+
export interface Params$Resource$Accounts$Containers$Versions$Update extends StandardParameters {
|
|
6586
6573
|
/**
|
|
6587
6574
|
* When provided, this fingerprint must match the fingerprint of the container version in storage.
|
|
6588
6575
|
*/
|
|
@@ -6912,15 +6899,13 @@ export namespace tagmanager_v2 {
|
|
|
6912
6899
|
}
|
|
6913
6900
|
}
|
|
6914
6901
|
|
|
6915
|
-
export interface Params$Resource$Accounts$Containers$Version_headers$Latest
|
|
6916
|
-
extends StandardParameters {
|
|
6902
|
+
export interface Params$Resource$Accounts$Containers$Version_headers$Latest extends StandardParameters {
|
|
6917
6903
|
/**
|
|
6918
6904
|
* GTM Container's API relative path.
|
|
6919
6905
|
*/
|
|
6920
6906
|
parent?: string;
|
|
6921
6907
|
}
|
|
6922
|
-
export interface Params$Resource$Accounts$Containers$Version_headers$List
|
|
6923
|
-
extends StandardParameters {
|
|
6908
|
+
export interface Params$Resource$Accounts$Containers$Version_headers$List extends StandardParameters {
|
|
6924
6909
|
/**
|
|
6925
6910
|
* Also retrieve deleted (archived) versions when true.
|
|
6926
6911
|
*/
|
|
@@ -6982,6 +6967,156 @@ export namespace tagmanager_v2 {
|
|
|
6982
6967
|
);
|
|
6983
6968
|
}
|
|
6984
6969
|
|
|
6970
|
+
/**
|
|
6971
|
+
* 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" \} ] ```
|
|
6972
|
+
* @example
|
|
6973
|
+
* ```js
|
|
6974
|
+
* // Before running the sample:
|
|
6975
|
+
* // - Enable the API at:
|
|
6976
|
+
* // https://console.developers.google.com/apis/api/tagmanager.googleapis.com
|
|
6977
|
+
* // - Login into gcloud by running:
|
|
6978
|
+
* // ```sh
|
|
6979
|
+
* // $ gcloud auth application-default login
|
|
6980
|
+
* // ```
|
|
6981
|
+
* // - Install the npm module by running:
|
|
6982
|
+
* // ```sh
|
|
6983
|
+
* // $ npm install googleapis
|
|
6984
|
+
* // ```
|
|
6985
|
+
*
|
|
6986
|
+
* const {google} = require('googleapis');
|
|
6987
|
+
* const tagmanager = google.tagmanager('v2');
|
|
6988
|
+
*
|
|
6989
|
+
* async function main() {
|
|
6990
|
+
* const auth = new google.auth.GoogleAuth({
|
|
6991
|
+
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
6992
|
+
* scopes: ['https://www.googleapis.com/auth/tagmanager.edit.containers'],
|
|
6993
|
+
* });
|
|
6994
|
+
*
|
|
6995
|
+
* // Acquire an auth client, and bind it to all future calls
|
|
6996
|
+
* const authClient = await auth.getClient();
|
|
6997
|
+
* google.options({auth: authClient});
|
|
6998
|
+
*
|
|
6999
|
+
* // Do the magic
|
|
7000
|
+
* const res = await tagmanager.accounts.containers.workspaces.bulk_update({
|
|
7001
|
+
* // GTM Workspace's API relative path.
|
|
7002
|
+
* path: 'accounts/my-account/containers/my-container/workspaces/my-workspace',
|
|
7003
|
+
*
|
|
7004
|
+
* // Request body metadata
|
|
7005
|
+
* requestBody: {
|
|
7006
|
+
* // request body parameters
|
|
7007
|
+
* // {
|
|
7008
|
+
* // "changes": []
|
|
7009
|
+
* // }
|
|
7010
|
+
* },
|
|
7011
|
+
* });
|
|
7012
|
+
* console.log(res.data);
|
|
7013
|
+
*
|
|
7014
|
+
* // Example response
|
|
7015
|
+
* // {
|
|
7016
|
+
* // "changes": []
|
|
7017
|
+
* // }
|
|
7018
|
+
* }
|
|
7019
|
+
*
|
|
7020
|
+
* main().catch(e => {
|
|
7021
|
+
* console.error(e);
|
|
7022
|
+
* throw e;
|
|
7023
|
+
* });
|
|
7024
|
+
*
|
|
7025
|
+
* ```
|
|
7026
|
+
*
|
|
7027
|
+
* @param params - Parameters for request
|
|
7028
|
+
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
|
|
7029
|
+
* @param callback - Optional callback that handles the response.
|
|
7030
|
+
* @returns A promise if used with async/await, or void if used with a callback.
|
|
7031
|
+
*/
|
|
7032
|
+
bulk_update(
|
|
7033
|
+
params: Params$Resource$Accounts$Containers$Workspaces$Bulk_update,
|
|
7034
|
+
options: StreamMethodOptions
|
|
7035
|
+
): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
7036
|
+
bulk_update(
|
|
7037
|
+
params?: Params$Resource$Accounts$Containers$Workspaces$Bulk_update,
|
|
7038
|
+
options?: MethodOptions
|
|
7039
|
+
): Promise<GaxiosResponseWithHTTP2<Schema$BulkUpdateWorkspaceResponse>>;
|
|
7040
|
+
bulk_update(
|
|
7041
|
+
params: Params$Resource$Accounts$Containers$Workspaces$Bulk_update,
|
|
7042
|
+
options: StreamMethodOptions | BodyResponseCallback<Readable>,
|
|
7043
|
+
callback: BodyResponseCallback<Readable>
|
|
7044
|
+
): void;
|
|
7045
|
+
bulk_update(
|
|
7046
|
+
params: Params$Resource$Accounts$Containers$Workspaces$Bulk_update,
|
|
7047
|
+
options:
|
|
7048
|
+
| MethodOptions
|
|
7049
|
+
| BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>,
|
|
7050
|
+
callback: BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>
|
|
7051
|
+
): void;
|
|
7052
|
+
bulk_update(
|
|
7053
|
+
params: Params$Resource$Accounts$Containers$Workspaces$Bulk_update,
|
|
7054
|
+
callback: BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>
|
|
7055
|
+
): void;
|
|
7056
|
+
bulk_update(
|
|
7057
|
+
callback: BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>
|
|
7058
|
+
): void;
|
|
7059
|
+
bulk_update(
|
|
7060
|
+
paramsOrCallback?:
|
|
7061
|
+
| Params$Resource$Accounts$Containers$Workspaces$Bulk_update
|
|
7062
|
+
| BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>
|
|
7063
|
+
| BodyResponseCallback<Readable>,
|
|
7064
|
+
optionsOrCallback?:
|
|
7065
|
+
| MethodOptions
|
|
7066
|
+
| StreamMethodOptions
|
|
7067
|
+
| BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>
|
|
7068
|
+
| BodyResponseCallback<Readable>,
|
|
7069
|
+
callback?:
|
|
7070
|
+
| BodyResponseCallback<Schema$BulkUpdateWorkspaceResponse>
|
|
7071
|
+
| BodyResponseCallback<Readable>
|
|
7072
|
+
):
|
|
7073
|
+
| void
|
|
7074
|
+
| Promise<GaxiosResponseWithHTTP2<Schema$BulkUpdateWorkspaceResponse>>
|
|
7075
|
+
| Promise<GaxiosResponseWithHTTP2<Readable>> {
|
|
7076
|
+
let params = (paramsOrCallback ||
|
|
7077
|
+
{}) as Params$Resource$Accounts$Containers$Workspaces$Bulk_update;
|
|
7078
|
+
let options = (optionsOrCallback || {}) as MethodOptions;
|
|
7079
|
+
|
|
7080
|
+
if (typeof paramsOrCallback === 'function') {
|
|
7081
|
+
callback = paramsOrCallback;
|
|
7082
|
+
params =
|
|
7083
|
+
{} as Params$Resource$Accounts$Containers$Workspaces$Bulk_update;
|
|
7084
|
+
options = {};
|
|
7085
|
+
}
|
|
7086
|
+
|
|
7087
|
+
if (typeof optionsOrCallback === 'function') {
|
|
7088
|
+
callback = optionsOrCallback;
|
|
7089
|
+
options = {};
|
|
7090
|
+
}
|
|
7091
|
+
|
|
7092
|
+
const rootUrl = options.rootUrl || 'https://tagmanager.googleapis.com/';
|
|
7093
|
+
const parameters = {
|
|
7094
|
+
options: Object.assign(
|
|
7095
|
+
{
|
|
7096
|
+
url: (rootUrl + '/tagmanager/v2/{+path}/bulk_update').replace(
|
|
7097
|
+
/([^:]\/)\/+/g,
|
|
7098
|
+
'$1'
|
|
7099
|
+
),
|
|
7100
|
+
method: 'POST',
|
|
7101
|
+
apiVersion: '',
|
|
7102
|
+
},
|
|
7103
|
+
options
|
|
7104
|
+
),
|
|
7105
|
+
params,
|
|
7106
|
+
requiredParams: ['path'],
|
|
7107
|
+
pathParams: ['path'],
|
|
7108
|
+
context: this.context,
|
|
7109
|
+
};
|
|
7110
|
+
if (callback) {
|
|
7111
|
+
createAPIRequest<Schema$BulkUpdateWorkspaceResponse>(
|
|
7112
|
+
parameters,
|
|
7113
|
+
callback as BodyResponseCallback<unknown>
|
|
7114
|
+
);
|
|
7115
|
+
} else {
|
|
7116
|
+
return createAPIRequest<Schema$BulkUpdateWorkspaceResponse>(parameters);
|
|
7117
|
+
}
|
|
7118
|
+
}
|
|
7119
|
+
|
|
6985
7120
|
/**
|
|
6986
7121
|
* Creates a Workspace.
|
|
6987
7122
|
* @example
|
|
@@ -8465,8 +8600,18 @@ export namespace tagmanager_v2 {
|
|
|
8465
8600
|
}
|
|
8466
8601
|
}
|
|
8467
8602
|
|
|
8468
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$
|
|
8469
|
-
|
|
8603
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Bulk_update extends StandardParameters {
|
|
8604
|
+
/**
|
|
8605
|
+
* GTM Workspace's API relative path.
|
|
8606
|
+
*/
|
|
8607
|
+
path?: string;
|
|
8608
|
+
|
|
8609
|
+
/**
|
|
8610
|
+
* Request body metadata
|
|
8611
|
+
*/
|
|
8612
|
+
requestBody?: Schema$ProposedChange;
|
|
8613
|
+
}
|
|
8614
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Create extends StandardParameters {
|
|
8470
8615
|
/**
|
|
8471
8616
|
* GTM parent Container's API relative path.
|
|
8472
8617
|
*/
|
|
@@ -8477,8 +8622,7 @@ export namespace tagmanager_v2 {
|
|
|
8477
8622
|
*/
|
|
8478
8623
|
requestBody?: Schema$Workspace;
|
|
8479
8624
|
}
|
|
8480
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Create_version
|
|
8481
|
-
extends StandardParameters {
|
|
8625
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Create_version extends StandardParameters {
|
|
8482
8626
|
/**
|
|
8483
8627
|
* GTM Workspace's API relative path.
|
|
8484
8628
|
*/
|
|
@@ -8489,29 +8633,25 @@ export namespace tagmanager_v2 {
|
|
|
8489
8633
|
*/
|
|
8490
8634
|
requestBody?: Schema$CreateContainerVersionRequestVersionOptions;
|
|
8491
8635
|
}
|
|
8492
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Delete
|
|
8493
|
-
extends StandardParameters {
|
|
8636
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Delete extends StandardParameters {
|
|
8494
8637
|
/**
|
|
8495
8638
|
* GTM Workspace's API relative path.
|
|
8496
8639
|
*/
|
|
8497
8640
|
path?: string;
|
|
8498
8641
|
}
|
|
8499
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Get
|
|
8500
|
-
extends StandardParameters {
|
|
8642
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Get extends StandardParameters {
|
|
8501
8643
|
/**
|
|
8502
8644
|
* GTM Workspace's API relative path.
|
|
8503
8645
|
*/
|
|
8504
8646
|
path?: string;
|
|
8505
8647
|
}
|
|
8506
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Getstatus
|
|
8507
|
-
extends StandardParameters {
|
|
8648
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Getstatus extends StandardParameters {
|
|
8508
8649
|
/**
|
|
8509
8650
|
* GTM Workspace's API relative path.
|
|
8510
8651
|
*/
|
|
8511
8652
|
path?: string;
|
|
8512
8653
|
}
|
|
8513
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$List
|
|
8514
|
-
extends StandardParameters {
|
|
8654
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$List extends StandardParameters {
|
|
8515
8655
|
/**
|
|
8516
8656
|
* Continuation token for fetching the next page of results.
|
|
8517
8657
|
*/
|
|
@@ -8521,15 +8661,13 @@ export namespace tagmanager_v2 {
|
|
|
8521
8661
|
*/
|
|
8522
8662
|
parent?: string;
|
|
8523
8663
|
}
|
|
8524
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Quick_preview
|
|
8525
|
-
extends StandardParameters {
|
|
8664
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Quick_preview extends StandardParameters {
|
|
8526
8665
|
/**
|
|
8527
8666
|
* GTM Workspace's API relative path.
|
|
8528
8667
|
*/
|
|
8529
8668
|
path?: string;
|
|
8530
8669
|
}
|
|
8531
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Resolve_conflict
|
|
8532
|
-
extends StandardParameters {
|
|
8670
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Resolve_conflict extends StandardParameters {
|
|
8533
8671
|
/**
|
|
8534
8672
|
* When provided, this fingerprint must match the fingerprint of the entity_in_workspace in the merge conflict.
|
|
8535
8673
|
*/
|
|
@@ -8544,15 +8682,13 @@ export namespace tagmanager_v2 {
|
|
|
8544
8682
|
*/
|
|
8545
8683
|
requestBody?: Schema$Entity;
|
|
8546
8684
|
}
|
|
8547
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Sync
|
|
8548
|
-
extends StandardParameters {
|
|
8685
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Sync extends StandardParameters {
|
|
8549
8686
|
/**
|
|
8550
8687
|
* GTM Workspace's API relative path.
|
|
8551
8688
|
*/
|
|
8552
8689
|
path?: string;
|
|
8553
8690
|
}
|
|
8554
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Update
|
|
8555
|
-
extends StandardParameters {
|
|
8691
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Update extends StandardParameters {
|
|
8556
8692
|
/**
|
|
8557
8693
|
* When provided, this fingerprint must match the fingerprint of the workspace in storage.
|
|
8558
8694
|
*/
|
|
@@ -9157,8 +9293,7 @@ export namespace tagmanager_v2 {
|
|
|
9157
9293
|
}
|
|
9158
9294
|
}
|
|
9159
9295
|
|
|
9160
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create
|
|
9161
|
-
extends StandardParameters {
|
|
9296
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create extends StandardParameters {
|
|
9162
9297
|
/**
|
|
9163
9298
|
* GTM Workspace's API relative path.
|
|
9164
9299
|
*/
|
|
@@ -9168,8 +9303,7 @@ export namespace tagmanager_v2 {
|
|
|
9168
9303
|
*/
|
|
9169
9304
|
type?: string[];
|
|
9170
9305
|
}
|
|
9171
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete
|
|
9172
|
-
extends StandardParameters {
|
|
9306
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete extends StandardParameters {
|
|
9173
9307
|
/**
|
|
9174
9308
|
* GTM BuiltInVariable's API relative path.
|
|
9175
9309
|
*/
|
|
@@ -9179,8 +9313,7 @@ export namespace tagmanager_v2 {
|
|
|
9179
9313
|
*/
|
|
9180
9314
|
type?: string[];
|
|
9181
9315
|
}
|
|
9182
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$List
|
|
9183
|
-
extends StandardParameters {
|
|
9316
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$List extends StandardParameters {
|
|
9184
9317
|
/**
|
|
9185
9318
|
* Continuation token for fetching the next page of results.
|
|
9186
9319
|
*/
|
|
@@ -9190,8 +9323,7 @@ export namespace tagmanager_v2 {
|
|
|
9190
9323
|
*/
|
|
9191
9324
|
parent?: string;
|
|
9192
9325
|
}
|
|
9193
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert
|
|
9194
|
-
extends StandardParameters {
|
|
9326
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert extends StandardParameters {
|
|
9195
9327
|
/**
|
|
9196
9328
|
* GTM BuiltInVariable's API relative path.
|
|
9197
9329
|
*/
|
|
@@ -10123,8 +10255,7 @@ export namespace tagmanager_v2 {
|
|
|
10123
10255
|
}
|
|
10124
10256
|
}
|
|
10125
10257
|
|
|
10126
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Create
|
|
10127
|
-
extends StandardParameters {
|
|
10258
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Create extends StandardParameters {
|
|
10128
10259
|
/**
|
|
10129
10260
|
* GTM Workspace's API relative path.
|
|
10130
10261
|
*/
|
|
@@ -10135,22 +10266,19 @@ export namespace tagmanager_v2 {
|
|
|
10135
10266
|
*/
|
|
10136
10267
|
requestBody?: Schema$Client;
|
|
10137
10268
|
}
|
|
10138
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Delete
|
|
10139
|
-
extends StandardParameters {
|
|
10269
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Delete extends StandardParameters {
|
|
10140
10270
|
/**
|
|
10141
10271
|
* GTM Client's API relative path.
|
|
10142
10272
|
*/
|
|
10143
10273
|
path?: string;
|
|
10144
10274
|
}
|
|
10145
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Get
|
|
10146
|
-
extends StandardParameters {
|
|
10275
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Get extends StandardParameters {
|
|
10147
10276
|
/**
|
|
10148
10277
|
* GTM Client's API relative path.
|
|
10149
10278
|
*/
|
|
10150
10279
|
path?: string;
|
|
10151
10280
|
}
|
|
10152
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$List
|
|
10153
|
-
extends StandardParameters {
|
|
10281
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$List extends StandardParameters {
|
|
10154
10282
|
/**
|
|
10155
10283
|
* Continuation token for fetching the next page of results.
|
|
10156
10284
|
*/
|
|
@@ -10160,8 +10288,7 @@ export namespace tagmanager_v2 {
|
|
|
10160
10288
|
*/
|
|
10161
10289
|
parent?: string;
|
|
10162
10290
|
}
|
|
10163
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Revert
|
|
10164
|
-
extends StandardParameters {
|
|
10291
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Revert extends StandardParameters {
|
|
10165
10292
|
/**
|
|
10166
10293
|
* When provided, this fingerprint must match the fingerprint of the client in storage.
|
|
10167
10294
|
*/
|
|
@@ -10171,8 +10298,7 @@ export namespace tagmanager_v2 {
|
|
|
10171
10298
|
*/
|
|
10172
10299
|
path?: string;
|
|
10173
10300
|
}
|
|
10174
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Update
|
|
10175
|
-
extends StandardParameters {
|
|
10301
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Clients$Update extends StandardParameters {
|
|
10176
10302
|
/**
|
|
10177
10303
|
* When provided, this fingerprint must match the fingerprint of the client in storage.
|
|
10178
10304
|
*/
|
|
@@ -11390,8 +11516,7 @@ export namespace tagmanager_v2 {
|
|
|
11390
11516
|
}
|
|
11391
11517
|
}
|
|
11392
11518
|
|
|
11393
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Create
|
|
11394
|
-
extends StandardParameters {
|
|
11519
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Create extends StandardParameters {
|
|
11395
11520
|
/**
|
|
11396
11521
|
* GTM Workspace's API relative path.
|
|
11397
11522
|
*/
|
|
@@ -11402,15 +11527,13 @@ export namespace tagmanager_v2 {
|
|
|
11402
11527
|
*/
|
|
11403
11528
|
requestBody?: Schema$Folder;
|
|
11404
11529
|
}
|
|
11405
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Delete
|
|
11406
|
-
extends StandardParameters {
|
|
11530
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Delete extends StandardParameters {
|
|
11407
11531
|
/**
|
|
11408
11532
|
* GTM Folder's API relative path.
|
|
11409
11533
|
*/
|
|
11410
11534
|
path?: string;
|
|
11411
11535
|
}
|
|
11412
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Entities
|
|
11413
|
-
extends StandardParameters {
|
|
11536
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Entities extends StandardParameters {
|
|
11414
11537
|
/**
|
|
11415
11538
|
* Continuation token for fetching the next page of results.
|
|
11416
11539
|
*/
|
|
@@ -11420,15 +11543,13 @@ export namespace tagmanager_v2 {
|
|
|
11420
11543
|
*/
|
|
11421
11544
|
path?: string;
|
|
11422
11545
|
}
|
|
11423
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Get
|
|
11424
|
-
extends StandardParameters {
|
|
11546
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Get extends StandardParameters {
|
|
11425
11547
|
/**
|
|
11426
11548
|
* GTM Folder's API relative path.
|
|
11427
11549
|
*/
|
|
11428
11550
|
path?: string;
|
|
11429
11551
|
}
|
|
11430
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$List
|
|
11431
|
-
extends StandardParameters {
|
|
11552
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$List extends StandardParameters {
|
|
11432
11553
|
/**
|
|
11433
11554
|
* Continuation token for fetching the next page of results.
|
|
11434
11555
|
*/
|
|
@@ -11438,8 +11559,7 @@ export namespace tagmanager_v2 {
|
|
|
11438
11559
|
*/
|
|
11439
11560
|
parent?: string;
|
|
11440
11561
|
}
|
|
11441
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder
|
|
11442
|
-
extends StandardParameters {
|
|
11562
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder extends StandardParameters {
|
|
11443
11563
|
/**
|
|
11444
11564
|
* GTM Folder's API relative path.
|
|
11445
11565
|
*/
|
|
@@ -11462,8 +11582,7 @@ export namespace tagmanager_v2 {
|
|
|
11462
11582
|
*/
|
|
11463
11583
|
requestBody?: Schema$Folder;
|
|
11464
11584
|
}
|
|
11465
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Revert
|
|
11466
|
-
extends StandardParameters {
|
|
11585
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Revert extends StandardParameters {
|
|
11467
11586
|
/**
|
|
11468
11587
|
* When provided, this fingerprint must match the fingerprint of the tag in storage.
|
|
11469
11588
|
*/
|
|
@@ -11473,8 +11592,7 @@ export namespace tagmanager_v2 {
|
|
|
11473
11592
|
*/
|
|
11474
11593
|
path?: string;
|
|
11475
11594
|
}
|
|
11476
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Update
|
|
11477
|
-
extends StandardParameters {
|
|
11595
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Folders$Update extends StandardParameters {
|
|
11478
11596
|
/**
|
|
11479
11597
|
* When provided, this fingerprint must match the fingerprint of the folder in storage.
|
|
11480
11598
|
*/
|
|
@@ -12254,8 +12372,7 @@ export namespace tagmanager_v2 {
|
|
|
12254
12372
|
}
|
|
12255
12373
|
}
|
|
12256
12374
|
|
|
12257
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create
|
|
12258
|
-
extends StandardParameters {
|
|
12375
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create extends StandardParameters {
|
|
12259
12376
|
/**
|
|
12260
12377
|
* Workspace's API relative path.
|
|
12261
12378
|
*/
|
|
@@ -12266,22 +12383,19 @@ export namespace tagmanager_v2 {
|
|
|
12266
12383
|
*/
|
|
12267
12384
|
requestBody?: Schema$GtagConfig;
|
|
12268
12385
|
}
|
|
12269
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete
|
|
12270
|
-
extends StandardParameters {
|
|
12386
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete extends StandardParameters {
|
|
12271
12387
|
/**
|
|
12272
12388
|
* Google tag config's API relative path.
|
|
12273
12389
|
*/
|
|
12274
12390
|
path?: string;
|
|
12275
12391
|
}
|
|
12276
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get
|
|
12277
|
-
extends StandardParameters {
|
|
12392
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get extends StandardParameters {
|
|
12278
12393
|
/**
|
|
12279
12394
|
* Google tag config's API relative path.
|
|
12280
12395
|
*/
|
|
12281
12396
|
path?: string;
|
|
12282
12397
|
}
|
|
12283
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$List
|
|
12284
|
-
extends StandardParameters {
|
|
12398
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$List extends StandardParameters {
|
|
12285
12399
|
/**
|
|
12286
12400
|
* Continuation token for fetching the next page of results.
|
|
12287
12401
|
*/
|
|
@@ -12291,8 +12405,7 @@ export namespace tagmanager_v2 {
|
|
|
12291
12405
|
*/
|
|
12292
12406
|
parent?: string;
|
|
12293
12407
|
}
|
|
12294
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Update
|
|
12295
|
-
extends StandardParameters {
|
|
12408
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Update extends StandardParameters {
|
|
12296
12409
|
/**
|
|
12297
12410
|
* When provided, this fingerprint must match the fingerprint of the config in storage.
|
|
12298
12411
|
*/
|
|
@@ -13285,8 +13398,7 @@ export namespace tagmanager_v2 {
|
|
|
13285
13398
|
}
|
|
13286
13399
|
}
|
|
13287
13400
|
|
|
13288
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Create
|
|
13289
|
-
extends StandardParameters {
|
|
13401
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Create extends StandardParameters {
|
|
13290
13402
|
/**
|
|
13291
13403
|
* GTM Workspace's API relative path.
|
|
13292
13404
|
*/
|
|
@@ -13297,22 +13409,19 @@ export namespace tagmanager_v2 {
|
|
|
13297
13409
|
*/
|
|
13298
13410
|
requestBody?: Schema$Tag;
|
|
13299
13411
|
}
|
|
13300
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Delete
|
|
13301
|
-
extends StandardParameters {
|
|
13412
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Delete extends StandardParameters {
|
|
13302
13413
|
/**
|
|
13303
13414
|
* GTM Tag's API relative path.
|
|
13304
13415
|
*/
|
|
13305
13416
|
path?: string;
|
|
13306
13417
|
}
|
|
13307
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Get
|
|
13308
|
-
extends StandardParameters {
|
|
13418
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Get extends StandardParameters {
|
|
13309
13419
|
/**
|
|
13310
13420
|
* GTM Tag's API relative path.
|
|
13311
13421
|
*/
|
|
13312
13422
|
path?: string;
|
|
13313
13423
|
}
|
|
13314
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$List
|
|
13315
|
-
extends StandardParameters {
|
|
13424
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$List extends StandardParameters {
|
|
13316
13425
|
/**
|
|
13317
13426
|
* Continuation token for fetching the next page of results.
|
|
13318
13427
|
*/
|
|
@@ -13322,8 +13431,7 @@ export namespace tagmanager_v2 {
|
|
|
13322
13431
|
*/
|
|
13323
13432
|
parent?: string;
|
|
13324
13433
|
}
|
|
13325
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Revert
|
|
13326
|
-
extends StandardParameters {
|
|
13434
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Revert extends StandardParameters {
|
|
13327
13435
|
/**
|
|
13328
13436
|
* When provided, this fingerprint must match the fingerprint of thetag in storage.
|
|
13329
13437
|
*/
|
|
@@ -13333,8 +13441,7 @@ export namespace tagmanager_v2 {
|
|
|
13333
13441
|
*/
|
|
13334
13442
|
path?: string;
|
|
13335
13443
|
}
|
|
13336
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Update
|
|
13337
|
-
extends StandardParameters {
|
|
13444
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Tags$Update extends StandardParameters {
|
|
13338
13445
|
/**
|
|
13339
13446
|
* When provided, this fingerprint must match the fingerprint of the tag in storage.
|
|
13340
13447
|
*/
|
|
@@ -14418,8 +14525,7 @@ export namespace tagmanager_v2 {
|
|
|
14418
14525
|
}
|
|
14419
14526
|
}
|
|
14420
14527
|
|
|
14421
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Create
|
|
14422
|
-
extends StandardParameters {
|
|
14528
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Create extends StandardParameters {
|
|
14423
14529
|
/**
|
|
14424
14530
|
* GTM Workspace's API relative path.
|
|
14425
14531
|
*/
|
|
@@ -14430,22 +14536,19 @@ export namespace tagmanager_v2 {
|
|
|
14430
14536
|
*/
|
|
14431
14537
|
requestBody?: Schema$CustomTemplate;
|
|
14432
14538
|
}
|
|
14433
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Delete
|
|
14434
|
-
extends StandardParameters {
|
|
14539
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Delete extends StandardParameters {
|
|
14435
14540
|
/**
|
|
14436
14541
|
* GTM Custom Template's API relative path.
|
|
14437
14542
|
*/
|
|
14438
14543
|
path?: string;
|
|
14439
14544
|
}
|
|
14440
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Get
|
|
14441
|
-
extends StandardParameters {
|
|
14545
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Get extends StandardParameters {
|
|
14442
14546
|
/**
|
|
14443
14547
|
* GTM Custom Template's API relative path.
|
|
14444
14548
|
*/
|
|
14445
14549
|
path?: string;
|
|
14446
14550
|
}
|
|
14447
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery
|
|
14448
|
-
extends StandardParameters {
|
|
14551
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery extends StandardParameters {
|
|
14449
14552
|
/**
|
|
14450
14553
|
* 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
14554
|
*/
|
|
@@ -14467,8 +14570,7 @@ export namespace tagmanager_v2 {
|
|
|
14467
14570
|
*/
|
|
14468
14571
|
parent?: string;
|
|
14469
14572
|
}
|
|
14470
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$List
|
|
14471
|
-
extends StandardParameters {
|
|
14573
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$List extends StandardParameters {
|
|
14472
14574
|
/**
|
|
14473
14575
|
* Continuation token for fetching the next page of results.
|
|
14474
14576
|
*/
|
|
@@ -14478,8 +14580,7 @@ export namespace tagmanager_v2 {
|
|
|
14478
14580
|
*/
|
|
14479
14581
|
parent?: string;
|
|
14480
14582
|
}
|
|
14481
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Revert
|
|
14482
|
-
extends StandardParameters {
|
|
14583
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Revert extends StandardParameters {
|
|
14483
14584
|
/**
|
|
14484
14585
|
* When provided, this fingerprint must match the fingerprint of the template in storage.
|
|
14485
14586
|
*/
|
|
@@ -14489,8 +14590,7 @@ export namespace tagmanager_v2 {
|
|
|
14489
14590
|
*/
|
|
14490
14591
|
path?: string;
|
|
14491
14592
|
}
|
|
14492
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Update
|
|
14493
|
-
extends StandardParameters {
|
|
14593
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Templates$Update extends StandardParameters {
|
|
14494
14594
|
/**
|
|
14495
14595
|
* When provided, this fingerprint must match the fingerprint of the templates in storage.
|
|
14496
14596
|
*/
|
|
@@ -15436,8 +15536,7 @@ export namespace tagmanager_v2 {
|
|
|
15436
15536
|
}
|
|
15437
15537
|
}
|
|
15438
15538
|
|
|
15439
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Create
|
|
15440
|
-
extends StandardParameters {
|
|
15539
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Create extends StandardParameters {
|
|
15441
15540
|
/**
|
|
15442
15541
|
* GTM Workspace's API relative path.
|
|
15443
15542
|
*/
|
|
@@ -15448,22 +15547,19 @@ export namespace tagmanager_v2 {
|
|
|
15448
15547
|
*/
|
|
15449
15548
|
requestBody?: Schema$Transformation;
|
|
15450
15549
|
}
|
|
15451
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete
|
|
15452
|
-
extends StandardParameters {
|
|
15550
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete extends StandardParameters {
|
|
15453
15551
|
/**
|
|
15454
15552
|
* GTM Transformation's API relative path.
|
|
15455
15553
|
*/
|
|
15456
15554
|
path?: string;
|
|
15457
15555
|
}
|
|
15458
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Get
|
|
15459
|
-
extends StandardParameters {
|
|
15556
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Get extends StandardParameters {
|
|
15460
15557
|
/**
|
|
15461
15558
|
* GTM Transformation's API relative path.
|
|
15462
15559
|
*/
|
|
15463
15560
|
path?: string;
|
|
15464
15561
|
}
|
|
15465
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$List
|
|
15466
|
-
extends StandardParameters {
|
|
15562
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$List extends StandardParameters {
|
|
15467
15563
|
/**
|
|
15468
15564
|
* Continuation token for fetching the next page of results.
|
|
15469
15565
|
*/
|
|
@@ -15473,8 +15569,7 @@ export namespace tagmanager_v2 {
|
|
|
15473
15569
|
*/
|
|
15474
15570
|
parent?: string;
|
|
15475
15571
|
}
|
|
15476
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Revert
|
|
15477
|
-
extends StandardParameters {
|
|
15572
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Revert extends StandardParameters {
|
|
15478
15573
|
/**
|
|
15479
15574
|
* When provided, this fingerprint must match the fingerprint of the transformation in storage.
|
|
15480
15575
|
*/
|
|
@@ -15484,8 +15579,7 @@ export namespace tagmanager_v2 {
|
|
|
15484
15579
|
*/
|
|
15485
15580
|
path?: string;
|
|
15486
15581
|
}
|
|
15487
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Update
|
|
15488
|
-
extends StandardParameters {
|
|
15582
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Transformations$Update extends StandardParameters {
|
|
15489
15583
|
/**
|
|
15490
15584
|
* When provided, this fingerprint must match the fingerprint of the transformation in storage.
|
|
15491
15585
|
*/
|
|
@@ -16519,8 +16613,7 @@ export namespace tagmanager_v2 {
|
|
|
16519
16613
|
}
|
|
16520
16614
|
}
|
|
16521
16615
|
|
|
16522
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Create
|
|
16523
|
-
extends StandardParameters {
|
|
16616
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Create extends StandardParameters {
|
|
16524
16617
|
/**
|
|
16525
16618
|
* GTM Workspace's API relative path.
|
|
16526
16619
|
*/
|
|
@@ -16531,22 +16624,19 @@ export namespace tagmanager_v2 {
|
|
|
16531
16624
|
*/
|
|
16532
16625
|
requestBody?: Schema$Trigger;
|
|
16533
16626
|
}
|
|
16534
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete
|
|
16535
|
-
extends StandardParameters {
|
|
16627
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete extends StandardParameters {
|
|
16536
16628
|
/**
|
|
16537
16629
|
* GTM Trigger's API relative path.
|
|
16538
16630
|
*/
|
|
16539
16631
|
path?: string;
|
|
16540
16632
|
}
|
|
16541
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Get
|
|
16542
|
-
extends StandardParameters {
|
|
16633
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Get extends StandardParameters {
|
|
16543
16634
|
/**
|
|
16544
16635
|
* GTM Trigger's API relative path.
|
|
16545
16636
|
*/
|
|
16546
16637
|
path?: string;
|
|
16547
16638
|
}
|
|
16548
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$List
|
|
16549
|
-
extends StandardParameters {
|
|
16639
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$List extends StandardParameters {
|
|
16550
16640
|
/**
|
|
16551
16641
|
* Continuation token for fetching the next page of results.
|
|
16552
16642
|
*/
|
|
@@ -16556,8 +16646,7 @@ export namespace tagmanager_v2 {
|
|
|
16556
16646
|
*/
|
|
16557
16647
|
parent?: string;
|
|
16558
16648
|
}
|
|
16559
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Revert
|
|
16560
|
-
extends StandardParameters {
|
|
16649
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Revert extends StandardParameters {
|
|
16561
16650
|
/**
|
|
16562
16651
|
* When provided, this fingerprint must match the fingerprint of the trigger in storage.
|
|
16563
16652
|
*/
|
|
@@ -16567,8 +16656,7 @@ export namespace tagmanager_v2 {
|
|
|
16567
16656
|
*/
|
|
16568
16657
|
path?: string;
|
|
16569
16658
|
}
|
|
16570
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Update
|
|
16571
|
-
extends StandardParameters {
|
|
16659
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Triggers$Update extends StandardParameters {
|
|
16572
16660
|
/**
|
|
16573
16661
|
* When provided, this fingerprint must match the fingerprint of the trigger in storage.
|
|
16574
16662
|
*/
|
|
@@ -17527,8 +17615,7 @@ export namespace tagmanager_v2 {
|
|
|
17527
17615
|
}
|
|
17528
17616
|
}
|
|
17529
17617
|
|
|
17530
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Create
|
|
17531
|
-
extends StandardParameters {
|
|
17618
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Create extends StandardParameters {
|
|
17532
17619
|
/**
|
|
17533
17620
|
* GTM Workspace's API relative path.
|
|
17534
17621
|
*/
|
|
@@ -17539,22 +17626,19 @@ export namespace tagmanager_v2 {
|
|
|
17539
17626
|
*/
|
|
17540
17627
|
requestBody?: Schema$Variable;
|
|
17541
17628
|
}
|
|
17542
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Delete
|
|
17543
|
-
extends StandardParameters {
|
|
17629
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Delete extends StandardParameters {
|
|
17544
17630
|
/**
|
|
17545
17631
|
* GTM Variable's API relative path.
|
|
17546
17632
|
*/
|
|
17547
17633
|
path?: string;
|
|
17548
17634
|
}
|
|
17549
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Get
|
|
17550
|
-
extends StandardParameters {
|
|
17635
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Get extends StandardParameters {
|
|
17551
17636
|
/**
|
|
17552
17637
|
* GTM Variable's API relative path.
|
|
17553
17638
|
*/
|
|
17554
17639
|
path?: string;
|
|
17555
17640
|
}
|
|
17556
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$List
|
|
17557
|
-
extends StandardParameters {
|
|
17641
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$List extends StandardParameters {
|
|
17558
17642
|
/**
|
|
17559
17643
|
* Continuation token for fetching the next page of results.
|
|
17560
17644
|
*/
|
|
@@ -17564,8 +17648,7 @@ export namespace tagmanager_v2 {
|
|
|
17564
17648
|
*/
|
|
17565
17649
|
parent?: string;
|
|
17566
17650
|
}
|
|
17567
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Revert
|
|
17568
|
-
extends StandardParameters {
|
|
17651
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Revert extends StandardParameters {
|
|
17569
17652
|
/**
|
|
17570
17653
|
* When provided, this fingerprint must match the fingerprint of the variable in storage.
|
|
17571
17654
|
*/
|
|
@@ -17575,8 +17658,7 @@ export namespace tagmanager_v2 {
|
|
|
17575
17658
|
*/
|
|
17576
17659
|
path?: string;
|
|
17577
17660
|
}
|
|
17578
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Update
|
|
17579
|
-
extends StandardParameters {
|
|
17661
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Variables$Update extends StandardParameters {
|
|
17580
17662
|
/**
|
|
17581
17663
|
* When provided, this fingerprint must match the fingerprint of the variable in storage.
|
|
17582
17664
|
*/
|
|
@@ -18505,8 +18587,7 @@ export namespace tagmanager_v2 {
|
|
|
18505
18587
|
}
|
|
18506
18588
|
}
|
|
18507
18589
|
|
|
18508
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Create
|
|
18509
|
-
extends StandardParameters {
|
|
18590
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Create extends StandardParameters {
|
|
18510
18591
|
/**
|
|
18511
18592
|
* GTM Workspace's API relative path.
|
|
18512
18593
|
*/
|
|
@@ -18517,22 +18598,19 @@ export namespace tagmanager_v2 {
|
|
|
18517
18598
|
*/
|
|
18518
18599
|
requestBody?: Schema$Zone;
|
|
18519
18600
|
}
|
|
18520
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Delete
|
|
18521
|
-
extends StandardParameters {
|
|
18601
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Delete extends StandardParameters {
|
|
18522
18602
|
/**
|
|
18523
18603
|
* GTM Zone's API relative path.
|
|
18524
18604
|
*/
|
|
18525
18605
|
path?: string;
|
|
18526
18606
|
}
|
|
18527
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Get
|
|
18528
|
-
extends StandardParameters {
|
|
18607
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Get extends StandardParameters {
|
|
18529
18608
|
/**
|
|
18530
18609
|
* GTM Zone's API relative path.
|
|
18531
18610
|
*/
|
|
18532
18611
|
path?: string;
|
|
18533
18612
|
}
|
|
18534
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$List
|
|
18535
|
-
extends StandardParameters {
|
|
18613
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$List extends StandardParameters {
|
|
18536
18614
|
/**
|
|
18537
18615
|
* Continuation token for fetching the next page of results.
|
|
18538
18616
|
*/
|
|
@@ -18542,8 +18620,7 @@ export namespace tagmanager_v2 {
|
|
|
18542
18620
|
*/
|
|
18543
18621
|
parent?: string;
|
|
18544
18622
|
}
|
|
18545
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Revert
|
|
18546
|
-
extends StandardParameters {
|
|
18623
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Revert extends StandardParameters {
|
|
18547
18624
|
/**
|
|
18548
18625
|
* When provided, this fingerprint must match the fingerprint of the zone in storage.
|
|
18549
18626
|
*/
|
|
@@ -18553,8 +18630,7 @@ export namespace tagmanager_v2 {
|
|
|
18553
18630
|
*/
|
|
18554
18631
|
path?: string;
|
|
18555
18632
|
}
|
|
18556
|
-
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Update
|
|
18557
|
-
extends StandardParameters {
|
|
18633
|
+
export interface Params$Resource$Accounts$Containers$Workspaces$Zones$Update extends StandardParameters {
|
|
18558
18634
|
/**
|
|
18559
18635
|
* When provided, this fingerprint must match the fingerprint of the zone in storage.
|
|
18560
18636
|
*/
|
|
@@ -19296,8 +19372,7 @@ export namespace tagmanager_v2 {
|
|
|
19296
19372
|
}
|
|
19297
19373
|
}
|
|
19298
19374
|
|
|
19299
|
-
export interface Params$Resource$Accounts$User_permissions$Create
|
|
19300
|
-
extends StandardParameters {
|
|
19375
|
+
export interface Params$Resource$Accounts$User_permissions$Create extends StandardParameters {
|
|
19301
19376
|
/**
|
|
19302
19377
|
* GTM Account's API relative path.
|
|
19303
19378
|
*/
|
|
@@ -19308,22 +19383,19 @@ export namespace tagmanager_v2 {
|
|
|
19308
19383
|
*/
|
|
19309
19384
|
requestBody?: Schema$UserPermission;
|
|
19310
19385
|
}
|
|
19311
|
-
export interface Params$Resource$Accounts$User_permissions$Delete
|
|
19312
|
-
extends StandardParameters {
|
|
19386
|
+
export interface Params$Resource$Accounts$User_permissions$Delete extends StandardParameters {
|
|
19313
19387
|
/**
|
|
19314
19388
|
* GTM UserPermission's API relative path.
|
|
19315
19389
|
*/
|
|
19316
19390
|
path?: string;
|
|
19317
19391
|
}
|
|
19318
|
-
export interface Params$Resource$Accounts$User_permissions$Get
|
|
19319
|
-
extends StandardParameters {
|
|
19392
|
+
export interface Params$Resource$Accounts$User_permissions$Get extends StandardParameters {
|
|
19320
19393
|
/**
|
|
19321
19394
|
* GTM UserPermission's API relative path.
|
|
19322
19395
|
*/
|
|
19323
19396
|
path?: string;
|
|
19324
19397
|
}
|
|
19325
|
-
export interface Params$Resource$Accounts$User_permissions$List
|
|
19326
|
-
extends StandardParameters {
|
|
19398
|
+
export interface Params$Resource$Accounts$User_permissions$List extends StandardParameters {
|
|
19327
19399
|
/**
|
|
19328
19400
|
* Continuation token for fetching the next page of results.
|
|
19329
19401
|
*/
|
|
@@ -19333,8 +19405,7 @@ export namespace tagmanager_v2 {
|
|
|
19333
19405
|
*/
|
|
19334
19406
|
parent?: string;
|
|
19335
19407
|
}
|
|
19336
|
-
export interface Params$Resource$Accounts$User_permissions$Update
|
|
19337
|
-
extends StandardParameters {
|
|
19408
|
+
export interface Params$Resource$Accounts$User_permissions$Update extends StandardParameters {
|
|
19338
19409
|
/**
|
|
19339
19410
|
* GTM UserPermission's API relative path.
|
|
19340
19411
|
*/
|