@googleapis/tagmanager 9.0.0 → 11.0.1
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 +29 -0
- package/build/index.d.ts +1 -1
- package/build/index.js.map +1 -1
- package/build/v1.d.ts +99 -213
- package/build/v1.js.map +1 -1
- package/build/v2.d.ts +211 -227
- package/build/v2.js.map +1 -1
- package/index.ts +0 -1
- package/package.json +2 -2
- package/v1.ts +275 -272
- package/v2.ts +569 -365
package/build/v1.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
|
-
import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient,
|
|
2
|
+
import { OAuth2Client, JWT, Compute, UserRefreshClient, BaseExternalAccountClient, GaxiosResponseWithHTTP2, GoogleConfigurable, MethodOptions, StreamMethodOptions, GlobalOptions, GoogleAuth, BodyResponseCallback, APIRequestContext } from 'googleapis-common';
|
|
3
3
|
import { Readable } from 'stream';
|
|
4
4
|
export declare namespace tagmanager_v1 {
|
|
5
5
|
export interface Options extends GlobalOptions {
|
|
@@ -208,10 +208,6 @@ export declare namespace tagmanager_v1 {
|
|
|
208
208
|
* The folders in the container that this version was taken from.
|
|
209
209
|
*/
|
|
210
210
|
folder?: Schema$Folder[];
|
|
211
|
-
/**
|
|
212
|
-
* The macros in the container that this version was taken from.
|
|
213
|
-
*/
|
|
214
|
-
macro?: Schema$Macro[];
|
|
215
211
|
/**
|
|
216
212
|
* Container version display name.
|
|
217
213
|
*/
|
|
@@ -220,10 +216,6 @@ export declare namespace tagmanager_v1 {
|
|
|
220
216
|
* User notes on how to apply this container version in the container.
|
|
221
217
|
*/
|
|
222
218
|
notes?: string | null;
|
|
223
|
-
/**
|
|
224
|
-
* The rules in the container that this version was taken from.
|
|
225
|
-
*/
|
|
226
|
-
rule?: Schema$Rule[];
|
|
227
219
|
/**
|
|
228
220
|
* The tags in the container that this version was taken from.
|
|
229
221
|
*/
|
|
@@ -261,14 +253,6 @@ export declare namespace tagmanager_v1 {
|
|
|
261
253
|
* Container version display name.
|
|
262
254
|
*/
|
|
263
255
|
name?: string | null;
|
|
264
|
-
/**
|
|
265
|
-
* Number of macros in the container version.
|
|
266
|
-
*/
|
|
267
|
-
numMacros?: string | null;
|
|
268
|
-
/**
|
|
269
|
-
* Number of rules in the container version.
|
|
270
|
-
*/
|
|
271
|
-
numRules?: string | null;
|
|
272
256
|
/**
|
|
273
257
|
* Number of tags in the container version.
|
|
274
258
|
*/
|
|
@@ -489,63 +473,6 @@ export declare namespace tagmanager_v1 {
|
|
|
489
473
|
*/
|
|
490
474
|
variables?: Schema$Variable[];
|
|
491
475
|
}
|
|
492
|
-
/**
|
|
493
|
-
* Represents a Google Tag Manager Macro.
|
|
494
|
-
*/
|
|
495
|
-
export interface Schema$Macro {
|
|
496
|
-
/**
|
|
497
|
-
* GTM Account ID.
|
|
498
|
-
*/
|
|
499
|
-
accountId?: string | null;
|
|
500
|
-
/**
|
|
501
|
-
* GTM Container ID.
|
|
502
|
-
*/
|
|
503
|
-
containerId?: string | null;
|
|
504
|
-
/**
|
|
505
|
-
* For mobile containers only: A list of rule IDs for disabling conditional macros; the macro is enabled if one of the enabling rules is true while all the disabling rules are false. Treated as an unordered set.
|
|
506
|
-
*/
|
|
507
|
-
disablingRuleId?: string[] | null;
|
|
508
|
-
/**
|
|
509
|
-
* For mobile containers only: A list of rule IDs for enabling conditional macros; the macro is enabled if one of the enabling rules is true while all the disabling rules are false. Treated as an unordered set.
|
|
510
|
-
*/
|
|
511
|
-
enablingRuleId?: string[] | null;
|
|
512
|
-
/**
|
|
513
|
-
* The fingerprint of the GTM Macro as computed at storage time. This value is recomputed whenever the macro is modified.
|
|
514
|
-
*/
|
|
515
|
-
fingerprint?: string | null;
|
|
516
|
-
/**
|
|
517
|
-
* The Macro ID uniquely identifies the GTM Macro.
|
|
518
|
-
*/
|
|
519
|
-
macroId?: string | null;
|
|
520
|
-
/**
|
|
521
|
-
* Macro display name.
|
|
522
|
-
*/
|
|
523
|
-
name?: string | null;
|
|
524
|
-
/**
|
|
525
|
-
* User notes on how to apply this macro in the container.
|
|
526
|
-
*/
|
|
527
|
-
notes?: string | null;
|
|
528
|
-
/**
|
|
529
|
-
* The macro's parameters.
|
|
530
|
-
*/
|
|
531
|
-
parameter?: Schema$Parameter[];
|
|
532
|
-
/**
|
|
533
|
-
* Parent folder id.
|
|
534
|
-
*/
|
|
535
|
-
parentFolderId?: string | null;
|
|
536
|
-
/**
|
|
537
|
-
* The end timestamp in milliseconds to schedule a macro.
|
|
538
|
-
*/
|
|
539
|
-
scheduleEndMs?: string | null;
|
|
540
|
-
/**
|
|
541
|
-
* The start timestamp in milliseconds to schedule a macro.
|
|
542
|
-
*/
|
|
543
|
-
scheduleStartMs?: string | null;
|
|
544
|
-
/**
|
|
545
|
-
* GTM Macro Type.
|
|
546
|
-
*/
|
|
547
|
-
type?: string | null;
|
|
548
|
-
}
|
|
549
476
|
/**
|
|
550
477
|
* Represents a Google Tag Manager Parameter.
|
|
551
478
|
*/
|
|
@@ -584,39 +511,6 @@ export declare namespace tagmanager_v1 {
|
|
|
584
511
|
*/
|
|
585
512
|
containerVersion?: Schema$ContainerVersion;
|
|
586
513
|
}
|
|
587
|
-
/**
|
|
588
|
-
* Represents a Google Tag Manager Rule.
|
|
589
|
-
*/
|
|
590
|
-
export interface Schema$Rule {
|
|
591
|
-
/**
|
|
592
|
-
* GTM Account ID.
|
|
593
|
-
*/
|
|
594
|
-
accountId?: string | null;
|
|
595
|
-
/**
|
|
596
|
-
* The list of conditions that make up this rule (implicit AND between them).
|
|
597
|
-
*/
|
|
598
|
-
condition?: Schema$Condition[];
|
|
599
|
-
/**
|
|
600
|
-
* GTM Container ID.
|
|
601
|
-
*/
|
|
602
|
-
containerId?: string | null;
|
|
603
|
-
/**
|
|
604
|
-
* The fingerprint of the GTM Rule as computed at storage time. This value is recomputed whenever the rule is modified.
|
|
605
|
-
*/
|
|
606
|
-
fingerprint?: string | null;
|
|
607
|
-
/**
|
|
608
|
-
* Rule display name.
|
|
609
|
-
*/
|
|
610
|
-
name?: string | null;
|
|
611
|
-
/**
|
|
612
|
-
* User notes on how to apply this rule in the container.
|
|
613
|
-
*/
|
|
614
|
-
notes?: string | null;
|
|
615
|
-
/**
|
|
616
|
-
* The Rule ID uniquely identifies the GTM Rule.
|
|
617
|
-
*/
|
|
618
|
-
ruleId?: string | null;
|
|
619
|
-
}
|
|
620
514
|
export interface Schema$SetupTag {
|
|
621
515
|
/**
|
|
622
516
|
* If true, fire the main tag if and only if the setup tag fires successfully. If false, fire the main tag regardless of setup tag firing status.
|
|
@@ -635,10 +529,6 @@ export declare namespace tagmanager_v1 {
|
|
|
635
529
|
* GTM Account ID.
|
|
636
530
|
*/
|
|
637
531
|
accountId?: string | null;
|
|
638
|
-
/**
|
|
639
|
-
* Blocking rule IDs. If any of the listed rules evaluate to true, the tag will not fire.
|
|
640
|
-
*/
|
|
641
|
-
blockingRuleId?: string[] | null;
|
|
642
532
|
/**
|
|
643
533
|
* Blocking trigger IDs. If any of the listed triggers evaluate to true, the tag will not fire.
|
|
644
534
|
*/
|
|
@@ -651,10 +541,6 @@ export declare namespace tagmanager_v1 {
|
|
|
651
541
|
* The fingerprint of the GTM Tag as computed at storage time. This value is recomputed whenever the tag is modified.
|
|
652
542
|
*/
|
|
653
543
|
fingerprint?: string | null;
|
|
654
|
-
/**
|
|
655
|
-
* Firing rule IDs. A tag will fire when any of the listed rules are true and all of its blockingRuleIds (if any specified) are false.
|
|
656
|
-
*/
|
|
657
|
-
firingRuleId?: string[] | null;
|
|
658
544
|
/**
|
|
659
545
|
* Firing trigger IDs. A tag will fire when any of the listed triggers are true and all of its blockingTriggerIds (if any specified) are false.
|
|
660
546
|
*/
|
|
@@ -938,8 +824,8 @@ export declare namespace tagmanager_v1 {
|
|
|
938
824
|
* @param callback - Optional callback that handles the response.
|
|
939
825
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
940
826
|
*/
|
|
941
|
-
get(params: Params$Resource$Accounts$Get, options: StreamMethodOptions):
|
|
942
|
-
get(params?: Params$Resource$Accounts$Get, options?: MethodOptions):
|
|
827
|
+
get(params: Params$Resource$Accounts$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
828
|
+
get(params?: Params$Resource$Accounts$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Account>>;
|
|
943
829
|
get(params: Params$Resource$Accounts$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
944
830
|
get(params: Params$Resource$Accounts$Get, options: MethodOptions | BodyResponseCallback<Schema$Account>, callback: BodyResponseCallback<Schema$Account>): void;
|
|
945
831
|
get(params: Params$Resource$Accounts$Get, callback: BodyResponseCallback<Schema$Account>): void;
|
|
@@ -952,8 +838,8 @@ export declare namespace tagmanager_v1 {
|
|
|
952
838
|
* @param callback - Optional callback that handles the response.
|
|
953
839
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
954
840
|
*/
|
|
955
|
-
list(params: Params$Resource$Accounts$List, options: StreamMethodOptions):
|
|
956
|
-
list(params?: Params$Resource$Accounts$List, options?: MethodOptions):
|
|
841
|
+
list(params: Params$Resource$Accounts$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
842
|
+
list(params?: Params$Resource$Accounts$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListAccountsResponse>>;
|
|
957
843
|
list(params: Params$Resource$Accounts$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
958
844
|
list(params: Params$Resource$Accounts$List, options: MethodOptions | BodyResponseCallback<Schema$ListAccountsResponse>, callback: BodyResponseCallback<Schema$ListAccountsResponse>): void;
|
|
959
845
|
list(params: Params$Resource$Accounts$List, callback: BodyResponseCallback<Schema$ListAccountsResponse>): void;
|
|
@@ -966,8 +852,8 @@ export declare namespace tagmanager_v1 {
|
|
|
966
852
|
* @param callback - Optional callback that handles the response.
|
|
967
853
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
968
854
|
*/
|
|
969
|
-
update(params: Params$Resource$Accounts$Update, options: StreamMethodOptions):
|
|
970
|
-
update(params?: Params$Resource$Accounts$Update, options?: MethodOptions):
|
|
855
|
+
update(params: Params$Resource$Accounts$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
856
|
+
update(params?: Params$Resource$Accounts$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Account>>;
|
|
971
857
|
update(params: Params$Resource$Accounts$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
972
858
|
update(params: Params$Resource$Accounts$Update, options: MethodOptions | BodyResponseCallback<Schema$Account>, callback: BodyResponseCallback<Schema$Account>): void;
|
|
973
859
|
update(params: Params$Resource$Accounts$Update, callback: BodyResponseCallback<Schema$Account>): void;
|
|
@@ -1014,8 +900,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1014
900
|
* @param callback - Optional callback that handles the response.
|
|
1015
901
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1016
902
|
*/
|
|
1017
|
-
create(params: Params$Resource$Accounts$Containers$Create, options: StreamMethodOptions):
|
|
1018
|
-
create(params?: Params$Resource$Accounts$Containers$Create, options?: MethodOptions):
|
|
903
|
+
create(params: Params$Resource$Accounts$Containers$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
904
|
+
create(params?: Params$Resource$Accounts$Containers$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Container>>;
|
|
1019
905
|
create(params: Params$Resource$Accounts$Containers$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1020
906
|
create(params: Params$Resource$Accounts$Containers$Create, options: MethodOptions | BodyResponseCallback<Schema$Container>, callback: BodyResponseCallback<Schema$Container>): void;
|
|
1021
907
|
create(params: Params$Resource$Accounts$Containers$Create, callback: BodyResponseCallback<Schema$Container>): void;
|
|
@@ -1028,8 +914,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1028
914
|
* @param callback - Optional callback that handles the response.
|
|
1029
915
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1030
916
|
*/
|
|
1031
|
-
delete(params: Params$Resource$Accounts$Containers$Delete, options: StreamMethodOptions):
|
|
1032
|
-
delete(params?: Params$Resource$Accounts$Containers$Delete, options?: MethodOptions):
|
|
917
|
+
delete(params: Params$Resource$Accounts$Containers$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
918
|
+
delete(params?: Params$Resource$Accounts$Containers$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
1033
919
|
delete(params: Params$Resource$Accounts$Containers$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1034
920
|
delete(params: Params$Resource$Accounts$Containers$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
1035
921
|
delete(params: Params$Resource$Accounts$Containers$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -1042,8 +928,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1042
928
|
* @param callback - Optional callback that handles the response.
|
|
1043
929
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1044
930
|
*/
|
|
1045
|
-
get(params: Params$Resource$Accounts$Containers$Get, options: StreamMethodOptions):
|
|
1046
|
-
get(params?: Params$Resource$Accounts$Containers$Get, options?: MethodOptions):
|
|
931
|
+
get(params: Params$Resource$Accounts$Containers$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
932
|
+
get(params?: Params$Resource$Accounts$Containers$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Container>>;
|
|
1047
933
|
get(params: Params$Resource$Accounts$Containers$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1048
934
|
get(params: Params$Resource$Accounts$Containers$Get, options: MethodOptions | BodyResponseCallback<Schema$Container>, callback: BodyResponseCallback<Schema$Container>): void;
|
|
1049
935
|
get(params: Params$Resource$Accounts$Containers$Get, callback: BodyResponseCallback<Schema$Container>): void;
|
|
@@ -1056,8 +942,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1056
942
|
* @param callback - Optional callback that handles the response.
|
|
1057
943
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1058
944
|
*/
|
|
1059
|
-
list(params: Params$Resource$Accounts$Containers$List, options: StreamMethodOptions):
|
|
1060
|
-
list(params?: Params$Resource$Accounts$Containers$List, options?: MethodOptions):
|
|
945
|
+
list(params: Params$Resource$Accounts$Containers$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
946
|
+
list(params?: Params$Resource$Accounts$Containers$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListContainersResponse>>;
|
|
1061
947
|
list(params: Params$Resource$Accounts$Containers$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1062
948
|
list(params: Params$Resource$Accounts$Containers$List, options: MethodOptions | BodyResponseCallback<Schema$ListContainersResponse>, callback: BodyResponseCallback<Schema$ListContainersResponse>): void;
|
|
1063
949
|
list(params: Params$Resource$Accounts$Containers$List, callback: BodyResponseCallback<Schema$ListContainersResponse>): void;
|
|
@@ -1070,8 +956,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1070
956
|
* @param callback - Optional callback that handles the response.
|
|
1071
957
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1072
958
|
*/
|
|
1073
|
-
update(params: Params$Resource$Accounts$Containers$Update, options: StreamMethodOptions):
|
|
1074
|
-
update(params?: Params$Resource$Accounts$Containers$Update, options?: MethodOptions):
|
|
959
|
+
update(params: Params$Resource$Accounts$Containers$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
960
|
+
update(params?: Params$Resource$Accounts$Containers$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Container>>;
|
|
1075
961
|
update(params: Params$Resource$Accounts$Containers$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1076
962
|
update(params: Params$Resource$Accounts$Containers$Update, options: MethodOptions | BodyResponseCallback<Schema$Container>, callback: BodyResponseCallback<Schema$Container>): void;
|
|
1077
963
|
update(params: Params$Resource$Accounts$Containers$Update, callback: BodyResponseCallback<Schema$Container>): void;
|
|
@@ -1142,8 +1028,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1142
1028
|
* @param callback - Optional callback that handles the response.
|
|
1143
1029
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1144
1030
|
*/
|
|
1145
|
-
create(params: Params$Resource$Accounts$Containers$Environments$Create, options: StreamMethodOptions):
|
|
1146
|
-
create(params?: Params$Resource$Accounts$Containers$Environments$Create, options?: MethodOptions):
|
|
1031
|
+
create(params: Params$Resource$Accounts$Containers$Environments$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1032
|
+
create(params?: Params$Resource$Accounts$Containers$Environments$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Environment>>;
|
|
1147
1033
|
create(params: Params$Resource$Accounts$Containers$Environments$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1148
1034
|
create(params: Params$Resource$Accounts$Containers$Environments$Create, options: MethodOptions | BodyResponseCallback<Schema$Environment>, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
1149
1035
|
create(params: Params$Resource$Accounts$Containers$Environments$Create, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
@@ -1156,8 +1042,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1156
1042
|
* @param callback - Optional callback that handles the response.
|
|
1157
1043
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1158
1044
|
*/
|
|
1159
|
-
delete(params: Params$Resource$Accounts$Containers$Environments$Delete, options: StreamMethodOptions):
|
|
1160
|
-
delete(params?: Params$Resource$Accounts$Containers$Environments$Delete, options?: MethodOptions):
|
|
1045
|
+
delete(params: Params$Resource$Accounts$Containers$Environments$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1046
|
+
delete(params?: Params$Resource$Accounts$Containers$Environments$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
1161
1047
|
delete(params: Params$Resource$Accounts$Containers$Environments$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1162
1048
|
delete(params: Params$Resource$Accounts$Containers$Environments$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
1163
1049
|
delete(params: Params$Resource$Accounts$Containers$Environments$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -1170,8 +1056,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1170
1056
|
* @param callback - Optional callback that handles the response.
|
|
1171
1057
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1172
1058
|
*/
|
|
1173
|
-
get(params: Params$Resource$Accounts$Containers$Environments$Get, options: StreamMethodOptions):
|
|
1174
|
-
get(params?: Params$Resource$Accounts$Containers$Environments$Get, options?: MethodOptions):
|
|
1059
|
+
get(params: Params$Resource$Accounts$Containers$Environments$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1060
|
+
get(params?: Params$Resource$Accounts$Containers$Environments$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Environment>>;
|
|
1175
1061
|
get(params: Params$Resource$Accounts$Containers$Environments$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1176
1062
|
get(params: Params$Resource$Accounts$Containers$Environments$Get, options: MethodOptions | BodyResponseCallback<Schema$Environment>, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
1177
1063
|
get(params: Params$Resource$Accounts$Containers$Environments$Get, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
@@ -1184,8 +1070,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1184
1070
|
* @param callback - Optional callback that handles the response.
|
|
1185
1071
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1186
1072
|
*/
|
|
1187
|
-
list(params: Params$Resource$Accounts$Containers$Environments$List, options: StreamMethodOptions):
|
|
1188
|
-
list(params?: Params$Resource$Accounts$Containers$Environments$List, options?: MethodOptions):
|
|
1073
|
+
list(params: Params$Resource$Accounts$Containers$Environments$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1074
|
+
list(params?: Params$Resource$Accounts$Containers$Environments$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListEnvironmentsResponse>>;
|
|
1189
1075
|
list(params: Params$Resource$Accounts$Containers$Environments$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1190
1076
|
list(params: Params$Resource$Accounts$Containers$Environments$List, options: MethodOptions | BodyResponseCallback<Schema$ListEnvironmentsResponse>, callback: BodyResponseCallback<Schema$ListEnvironmentsResponse>): void;
|
|
1191
1077
|
list(params: Params$Resource$Accounts$Containers$Environments$List, callback: BodyResponseCallback<Schema$ListEnvironmentsResponse>): void;
|
|
@@ -1198,8 +1084,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1198
1084
|
* @param callback - Optional callback that handles the response.
|
|
1199
1085
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1200
1086
|
*/
|
|
1201
|
-
update(params: Params$Resource$Accounts$Containers$Environments$Update, options: StreamMethodOptions):
|
|
1202
|
-
update(params?: Params$Resource$Accounts$Containers$Environments$Update, options?: MethodOptions):
|
|
1087
|
+
update(params: Params$Resource$Accounts$Containers$Environments$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1088
|
+
update(params?: Params$Resource$Accounts$Containers$Environments$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Environment>>;
|
|
1203
1089
|
update(params: Params$Resource$Accounts$Containers$Environments$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1204
1090
|
update(params: Params$Resource$Accounts$Containers$Environments$Update, options: MethodOptions | BodyResponseCallback<Schema$Environment>, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
1205
1091
|
update(params: Params$Resource$Accounts$Containers$Environments$Update, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
@@ -1291,8 +1177,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1291
1177
|
* @param callback - Optional callback that handles the response.
|
|
1292
1178
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1293
1179
|
*/
|
|
1294
|
-
create(params: Params$Resource$Accounts$Containers$Folders$Create, options: StreamMethodOptions):
|
|
1295
|
-
create(params?: Params$Resource$Accounts$Containers$Folders$Create, options?: MethodOptions):
|
|
1180
|
+
create(params: Params$Resource$Accounts$Containers$Folders$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1181
|
+
create(params?: Params$Resource$Accounts$Containers$Folders$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Folder>>;
|
|
1296
1182
|
create(params: Params$Resource$Accounts$Containers$Folders$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1297
1183
|
create(params: Params$Resource$Accounts$Containers$Folders$Create, options: MethodOptions | BodyResponseCallback<Schema$Folder>, callback: BodyResponseCallback<Schema$Folder>): void;
|
|
1298
1184
|
create(params: Params$Resource$Accounts$Containers$Folders$Create, callback: BodyResponseCallback<Schema$Folder>): void;
|
|
@@ -1305,8 +1191,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1305
1191
|
* @param callback - Optional callback that handles the response.
|
|
1306
1192
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1307
1193
|
*/
|
|
1308
|
-
delete(params: Params$Resource$Accounts$Containers$Folders$Delete, options: StreamMethodOptions):
|
|
1309
|
-
delete(params?: Params$Resource$Accounts$Containers$Folders$Delete, options?: MethodOptions):
|
|
1194
|
+
delete(params: Params$Resource$Accounts$Containers$Folders$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1195
|
+
delete(params?: Params$Resource$Accounts$Containers$Folders$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
1310
1196
|
delete(params: Params$Resource$Accounts$Containers$Folders$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1311
1197
|
delete(params: Params$Resource$Accounts$Containers$Folders$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
1312
1198
|
delete(params: Params$Resource$Accounts$Containers$Folders$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -1319,8 +1205,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1319
1205
|
* @param callback - Optional callback that handles the response.
|
|
1320
1206
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1321
1207
|
*/
|
|
1322
|
-
get(params: Params$Resource$Accounts$Containers$Folders$Get, options: StreamMethodOptions):
|
|
1323
|
-
get(params?: Params$Resource$Accounts$Containers$Folders$Get, options?: MethodOptions):
|
|
1208
|
+
get(params: Params$Resource$Accounts$Containers$Folders$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1209
|
+
get(params?: Params$Resource$Accounts$Containers$Folders$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Folder>>;
|
|
1324
1210
|
get(params: Params$Resource$Accounts$Containers$Folders$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1325
1211
|
get(params: Params$Resource$Accounts$Containers$Folders$Get, options: MethodOptions | BodyResponseCallback<Schema$Folder>, callback: BodyResponseCallback<Schema$Folder>): void;
|
|
1326
1212
|
get(params: Params$Resource$Accounts$Containers$Folders$Get, callback: BodyResponseCallback<Schema$Folder>): void;
|
|
@@ -1333,8 +1219,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1333
1219
|
* @param callback - Optional callback that handles the response.
|
|
1334
1220
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1335
1221
|
*/
|
|
1336
|
-
list(params: Params$Resource$Accounts$Containers$Folders$List, options: StreamMethodOptions):
|
|
1337
|
-
list(params?: Params$Resource$Accounts$Containers$Folders$List, options?: MethodOptions):
|
|
1222
|
+
list(params: Params$Resource$Accounts$Containers$Folders$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1223
|
+
list(params?: Params$Resource$Accounts$Containers$Folders$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListFoldersResponse>>;
|
|
1338
1224
|
list(params: Params$Resource$Accounts$Containers$Folders$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1339
1225
|
list(params: Params$Resource$Accounts$Containers$Folders$List, options: MethodOptions | BodyResponseCallback<Schema$ListFoldersResponse>, callback: BodyResponseCallback<Schema$ListFoldersResponse>): void;
|
|
1340
1226
|
list(params: Params$Resource$Accounts$Containers$Folders$List, callback: BodyResponseCallback<Schema$ListFoldersResponse>): void;
|
|
@@ -1347,8 +1233,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1347
1233
|
* @param callback - Optional callback that handles the response.
|
|
1348
1234
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1349
1235
|
*/
|
|
1350
|
-
update(params: Params$Resource$Accounts$Containers$Folders$Update, options: StreamMethodOptions):
|
|
1351
|
-
update(params?: Params$Resource$Accounts$Containers$Folders$Update, options?: MethodOptions):
|
|
1236
|
+
update(params: Params$Resource$Accounts$Containers$Folders$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1237
|
+
update(params?: Params$Resource$Accounts$Containers$Folders$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Folder>>;
|
|
1352
1238
|
update(params: Params$Resource$Accounts$Containers$Folders$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1353
1239
|
update(params: Params$Resource$Accounts$Containers$Folders$Update, options: MethodOptions | BodyResponseCallback<Schema$Folder>, callback: BodyResponseCallback<Schema$Folder>): void;
|
|
1354
1240
|
update(params: Params$Resource$Accounts$Containers$Folders$Update, callback: BodyResponseCallback<Schema$Folder>): void;
|
|
@@ -1439,8 +1325,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1439
1325
|
* @param callback - Optional callback that handles the response.
|
|
1440
1326
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1441
1327
|
*/
|
|
1442
|
-
list(params: Params$Resource$Accounts$Containers$Folders$Entities$List, options: StreamMethodOptions):
|
|
1443
|
-
list(params?: Params$Resource$Accounts$Containers$Folders$Entities$List, options?: MethodOptions):
|
|
1328
|
+
list(params: Params$Resource$Accounts$Containers$Folders$Entities$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1329
|
+
list(params?: Params$Resource$Accounts$Containers$Folders$Entities$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$FolderEntities>>;
|
|
1444
1330
|
list(params: Params$Resource$Accounts$Containers$Folders$Entities$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1445
1331
|
list(params: Params$Resource$Accounts$Containers$Folders$Entities$List, options: MethodOptions | BodyResponseCallback<Schema$FolderEntities>, callback: BodyResponseCallback<Schema$FolderEntities>): void;
|
|
1446
1332
|
list(params: Params$Resource$Accounts$Containers$Folders$Entities$List, callback: BodyResponseCallback<Schema$FolderEntities>): void;
|
|
@@ -1471,8 +1357,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1471
1357
|
* @param callback - Optional callback that handles the response.
|
|
1472
1358
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1473
1359
|
*/
|
|
1474
|
-
update(params: Params$Resource$Accounts$Containers$Move_folders$Update, options: StreamMethodOptions):
|
|
1475
|
-
update(params?: Params$Resource$Accounts$Containers$Move_folders$Update, options?: MethodOptions):
|
|
1360
|
+
update(params: Params$Resource$Accounts$Containers$Move_folders$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1361
|
+
update(params?: Params$Resource$Accounts$Containers$Move_folders$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
1476
1362
|
update(params: Params$Resource$Accounts$Containers$Move_folders$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1477
1363
|
update(params: Params$Resource$Accounts$Containers$Move_folders$Update, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
1478
1364
|
update(params: Params$Resource$Accounts$Containers$Move_folders$Update, callback: BodyResponseCallback<void>): void;
|
|
@@ -1519,8 +1405,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1519
1405
|
* @param callback - Optional callback that handles the response.
|
|
1520
1406
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1521
1407
|
*/
|
|
1522
|
-
update(params: Params$Resource$Accounts$Containers$Reauthorize_environments$Update, options: StreamMethodOptions):
|
|
1523
|
-
update(params?: Params$Resource$Accounts$Containers$Reauthorize_environments$Update, options?: MethodOptions):
|
|
1408
|
+
update(params: Params$Resource$Accounts$Containers$Reauthorize_environments$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1409
|
+
update(params?: Params$Resource$Accounts$Containers$Reauthorize_environments$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Environment>>;
|
|
1524
1410
|
update(params: Params$Resource$Accounts$Containers$Reauthorize_environments$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1525
1411
|
update(params: Params$Resource$Accounts$Containers$Reauthorize_environments$Update, options: MethodOptions | BodyResponseCallback<Schema$Environment>, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
1526
1412
|
update(params: Params$Resource$Accounts$Containers$Reauthorize_environments$Update, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
@@ -1555,8 +1441,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1555
1441
|
* @param callback - Optional callback that handles the response.
|
|
1556
1442
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1557
1443
|
*/
|
|
1558
|
-
create(params: Params$Resource$Accounts$Containers$Tags$Create, options: StreamMethodOptions):
|
|
1559
|
-
create(params?: Params$Resource$Accounts$Containers$Tags$Create, options?: MethodOptions):
|
|
1444
|
+
create(params: Params$Resource$Accounts$Containers$Tags$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1445
|
+
create(params?: Params$Resource$Accounts$Containers$Tags$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Tag>>;
|
|
1560
1446
|
create(params: Params$Resource$Accounts$Containers$Tags$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1561
1447
|
create(params: Params$Resource$Accounts$Containers$Tags$Create, options: MethodOptions | BodyResponseCallback<Schema$Tag>, callback: BodyResponseCallback<Schema$Tag>): void;
|
|
1562
1448
|
create(params: Params$Resource$Accounts$Containers$Tags$Create, callback: BodyResponseCallback<Schema$Tag>): void;
|
|
@@ -1569,8 +1455,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1569
1455
|
* @param callback - Optional callback that handles the response.
|
|
1570
1456
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1571
1457
|
*/
|
|
1572
|
-
delete(params: Params$Resource$Accounts$Containers$Tags$Delete, options: StreamMethodOptions):
|
|
1573
|
-
delete(params?: Params$Resource$Accounts$Containers$Tags$Delete, options?: MethodOptions):
|
|
1458
|
+
delete(params: Params$Resource$Accounts$Containers$Tags$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1459
|
+
delete(params?: Params$Resource$Accounts$Containers$Tags$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
1574
1460
|
delete(params: Params$Resource$Accounts$Containers$Tags$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1575
1461
|
delete(params: Params$Resource$Accounts$Containers$Tags$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
1576
1462
|
delete(params: Params$Resource$Accounts$Containers$Tags$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -1583,8 +1469,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1583
1469
|
* @param callback - Optional callback that handles the response.
|
|
1584
1470
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1585
1471
|
*/
|
|
1586
|
-
get(params: Params$Resource$Accounts$Containers$Tags$Get, options: StreamMethodOptions):
|
|
1587
|
-
get(params?: Params$Resource$Accounts$Containers$Tags$Get, options?: MethodOptions):
|
|
1472
|
+
get(params: Params$Resource$Accounts$Containers$Tags$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1473
|
+
get(params?: Params$Resource$Accounts$Containers$Tags$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Tag>>;
|
|
1588
1474
|
get(params: Params$Resource$Accounts$Containers$Tags$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1589
1475
|
get(params: Params$Resource$Accounts$Containers$Tags$Get, options: MethodOptions | BodyResponseCallback<Schema$Tag>, callback: BodyResponseCallback<Schema$Tag>): void;
|
|
1590
1476
|
get(params: Params$Resource$Accounts$Containers$Tags$Get, callback: BodyResponseCallback<Schema$Tag>): void;
|
|
@@ -1597,8 +1483,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1597
1483
|
* @param callback - Optional callback that handles the response.
|
|
1598
1484
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1599
1485
|
*/
|
|
1600
|
-
list(params: Params$Resource$Accounts$Containers$Tags$List, options: StreamMethodOptions):
|
|
1601
|
-
list(params?: Params$Resource$Accounts$Containers$Tags$List, options?: MethodOptions):
|
|
1486
|
+
list(params: Params$Resource$Accounts$Containers$Tags$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1487
|
+
list(params?: Params$Resource$Accounts$Containers$Tags$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListTagsResponse>>;
|
|
1602
1488
|
list(params: Params$Resource$Accounts$Containers$Tags$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1603
1489
|
list(params: Params$Resource$Accounts$Containers$Tags$List, options: MethodOptions | BodyResponseCallback<Schema$ListTagsResponse>, callback: BodyResponseCallback<Schema$ListTagsResponse>): void;
|
|
1604
1490
|
list(params: Params$Resource$Accounts$Containers$Tags$List, callback: BodyResponseCallback<Schema$ListTagsResponse>): void;
|
|
@@ -1611,8 +1497,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1611
1497
|
* @param callback - Optional callback that handles the response.
|
|
1612
1498
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1613
1499
|
*/
|
|
1614
|
-
update(params: Params$Resource$Accounts$Containers$Tags$Update, options: StreamMethodOptions):
|
|
1615
|
-
update(params?: Params$Resource$Accounts$Containers$Tags$Update, options?: MethodOptions):
|
|
1500
|
+
update(params: Params$Resource$Accounts$Containers$Tags$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1501
|
+
update(params?: Params$Resource$Accounts$Containers$Tags$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Tag>>;
|
|
1616
1502
|
update(params: Params$Resource$Accounts$Containers$Tags$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1617
1503
|
update(params: Params$Resource$Accounts$Containers$Tags$Update, options: MethodOptions | BodyResponseCallback<Schema$Tag>, callback: BodyResponseCallback<Schema$Tag>): void;
|
|
1618
1504
|
update(params: Params$Resource$Accounts$Containers$Tags$Update, callback: BodyResponseCallback<Schema$Tag>): void;
|
|
@@ -1703,8 +1589,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1703
1589
|
* @param callback - Optional callback that handles the response.
|
|
1704
1590
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1705
1591
|
*/
|
|
1706
|
-
create(params: Params$Resource$Accounts$Containers$Triggers$Create, options: StreamMethodOptions):
|
|
1707
|
-
create(params?: Params$Resource$Accounts$Containers$Triggers$Create, options?: MethodOptions):
|
|
1592
|
+
create(params: Params$Resource$Accounts$Containers$Triggers$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1593
|
+
create(params?: Params$Resource$Accounts$Containers$Triggers$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Trigger>>;
|
|
1708
1594
|
create(params: Params$Resource$Accounts$Containers$Triggers$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1709
1595
|
create(params: Params$Resource$Accounts$Containers$Triggers$Create, options: MethodOptions | BodyResponseCallback<Schema$Trigger>, callback: BodyResponseCallback<Schema$Trigger>): void;
|
|
1710
1596
|
create(params: Params$Resource$Accounts$Containers$Triggers$Create, callback: BodyResponseCallback<Schema$Trigger>): void;
|
|
@@ -1717,8 +1603,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1717
1603
|
* @param callback - Optional callback that handles the response.
|
|
1718
1604
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1719
1605
|
*/
|
|
1720
|
-
delete(params: Params$Resource$Accounts$Containers$Triggers$Delete, options: StreamMethodOptions):
|
|
1721
|
-
delete(params?: Params$Resource$Accounts$Containers$Triggers$Delete, options?: MethodOptions):
|
|
1606
|
+
delete(params: Params$Resource$Accounts$Containers$Triggers$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1607
|
+
delete(params?: Params$Resource$Accounts$Containers$Triggers$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
1722
1608
|
delete(params: Params$Resource$Accounts$Containers$Triggers$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1723
1609
|
delete(params: Params$Resource$Accounts$Containers$Triggers$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
1724
1610
|
delete(params: Params$Resource$Accounts$Containers$Triggers$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -1731,8 +1617,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1731
1617
|
* @param callback - Optional callback that handles the response.
|
|
1732
1618
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1733
1619
|
*/
|
|
1734
|
-
get(params: Params$Resource$Accounts$Containers$Triggers$Get, options: StreamMethodOptions):
|
|
1735
|
-
get(params?: Params$Resource$Accounts$Containers$Triggers$Get, options?: MethodOptions):
|
|
1620
|
+
get(params: Params$Resource$Accounts$Containers$Triggers$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1621
|
+
get(params?: Params$Resource$Accounts$Containers$Triggers$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Trigger>>;
|
|
1736
1622
|
get(params: Params$Resource$Accounts$Containers$Triggers$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1737
1623
|
get(params: Params$Resource$Accounts$Containers$Triggers$Get, options: MethodOptions | BodyResponseCallback<Schema$Trigger>, callback: BodyResponseCallback<Schema$Trigger>): void;
|
|
1738
1624
|
get(params: Params$Resource$Accounts$Containers$Triggers$Get, callback: BodyResponseCallback<Schema$Trigger>): void;
|
|
@@ -1745,8 +1631,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1745
1631
|
* @param callback - Optional callback that handles the response.
|
|
1746
1632
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1747
1633
|
*/
|
|
1748
|
-
list(params: Params$Resource$Accounts$Containers$Triggers$List, options: StreamMethodOptions):
|
|
1749
|
-
list(params?: Params$Resource$Accounts$Containers$Triggers$List, options?: MethodOptions):
|
|
1634
|
+
list(params: Params$Resource$Accounts$Containers$Triggers$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1635
|
+
list(params?: Params$Resource$Accounts$Containers$Triggers$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListTriggersResponse>>;
|
|
1750
1636
|
list(params: Params$Resource$Accounts$Containers$Triggers$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1751
1637
|
list(params: Params$Resource$Accounts$Containers$Triggers$List, options: MethodOptions | BodyResponseCallback<Schema$ListTriggersResponse>, callback: BodyResponseCallback<Schema$ListTriggersResponse>): void;
|
|
1752
1638
|
list(params: Params$Resource$Accounts$Containers$Triggers$List, callback: BodyResponseCallback<Schema$ListTriggersResponse>): void;
|
|
@@ -1759,8 +1645,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1759
1645
|
* @param callback - Optional callback that handles the response.
|
|
1760
1646
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1761
1647
|
*/
|
|
1762
|
-
update(params: Params$Resource$Accounts$Containers$Triggers$Update, options: StreamMethodOptions):
|
|
1763
|
-
update(params?: Params$Resource$Accounts$Containers$Triggers$Update, options?: MethodOptions):
|
|
1648
|
+
update(params: Params$Resource$Accounts$Containers$Triggers$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1649
|
+
update(params?: Params$Resource$Accounts$Containers$Triggers$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Trigger>>;
|
|
1764
1650
|
update(params: Params$Resource$Accounts$Containers$Triggers$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1765
1651
|
update(params: Params$Resource$Accounts$Containers$Triggers$Update, options: MethodOptions | BodyResponseCallback<Schema$Trigger>, callback: BodyResponseCallback<Schema$Trigger>): void;
|
|
1766
1652
|
update(params: Params$Resource$Accounts$Containers$Triggers$Update, callback: BodyResponseCallback<Schema$Trigger>): void;
|
|
@@ -1851,8 +1737,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1851
1737
|
* @param callback - Optional callback that handles the response.
|
|
1852
1738
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1853
1739
|
*/
|
|
1854
|
-
create(params: Params$Resource$Accounts$Containers$Variables$Create, options: StreamMethodOptions):
|
|
1855
|
-
create(params?: Params$Resource$Accounts$Containers$Variables$Create, options?: MethodOptions):
|
|
1740
|
+
create(params: Params$Resource$Accounts$Containers$Variables$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1741
|
+
create(params?: Params$Resource$Accounts$Containers$Variables$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Variable>>;
|
|
1856
1742
|
create(params: Params$Resource$Accounts$Containers$Variables$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1857
1743
|
create(params: Params$Resource$Accounts$Containers$Variables$Create, options: MethodOptions | BodyResponseCallback<Schema$Variable>, callback: BodyResponseCallback<Schema$Variable>): void;
|
|
1858
1744
|
create(params: Params$Resource$Accounts$Containers$Variables$Create, callback: BodyResponseCallback<Schema$Variable>): void;
|
|
@@ -1865,8 +1751,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1865
1751
|
* @param callback - Optional callback that handles the response.
|
|
1866
1752
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1867
1753
|
*/
|
|
1868
|
-
delete(params: Params$Resource$Accounts$Containers$Variables$Delete, options: StreamMethodOptions):
|
|
1869
|
-
delete(params?: Params$Resource$Accounts$Containers$Variables$Delete, options?: MethodOptions):
|
|
1754
|
+
delete(params: Params$Resource$Accounts$Containers$Variables$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1755
|
+
delete(params?: Params$Resource$Accounts$Containers$Variables$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
1870
1756
|
delete(params: Params$Resource$Accounts$Containers$Variables$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1871
1757
|
delete(params: Params$Resource$Accounts$Containers$Variables$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
1872
1758
|
delete(params: Params$Resource$Accounts$Containers$Variables$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -1879,8 +1765,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1879
1765
|
* @param callback - Optional callback that handles the response.
|
|
1880
1766
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1881
1767
|
*/
|
|
1882
|
-
get(params: Params$Resource$Accounts$Containers$Variables$Get, options: StreamMethodOptions):
|
|
1883
|
-
get(params?: Params$Resource$Accounts$Containers$Variables$Get, options?: MethodOptions):
|
|
1768
|
+
get(params: Params$Resource$Accounts$Containers$Variables$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1769
|
+
get(params?: Params$Resource$Accounts$Containers$Variables$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Variable>>;
|
|
1884
1770
|
get(params: Params$Resource$Accounts$Containers$Variables$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1885
1771
|
get(params: Params$Resource$Accounts$Containers$Variables$Get, options: MethodOptions | BodyResponseCallback<Schema$Variable>, callback: BodyResponseCallback<Schema$Variable>): void;
|
|
1886
1772
|
get(params: Params$Resource$Accounts$Containers$Variables$Get, callback: BodyResponseCallback<Schema$Variable>): void;
|
|
@@ -1893,8 +1779,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1893
1779
|
* @param callback - Optional callback that handles the response.
|
|
1894
1780
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1895
1781
|
*/
|
|
1896
|
-
list(params: Params$Resource$Accounts$Containers$Variables$List, options: StreamMethodOptions):
|
|
1897
|
-
list(params?: Params$Resource$Accounts$Containers$Variables$List, options?: MethodOptions):
|
|
1782
|
+
list(params: Params$Resource$Accounts$Containers$Variables$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1783
|
+
list(params?: Params$Resource$Accounts$Containers$Variables$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListVariablesResponse>>;
|
|
1898
1784
|
list(params: Params$Resource$Accounts$Containers$Variables$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1899
1785
|
list(params: Params$Resource$Accounts$Containers$Variables$List, options: MethodOptions | BodyResponseCallback<Schema$ListVariablesResponse>, callback: BodyResponseCallback<Schema$ListVariablesResponse>): void;
|
|
1900
1786
|
list(params: Params$Resource$Accounts$Containers$Variables$List, callback: BodyResponseCallback<Schema$ListVariablesResponse>): void;
|
|
@@ -1907,8 +1793,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1907
1793
|
* @param callback - Optional callback that handles the response.
|
|
1908
1794
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1909
1795
|
*/
|
|
1910
|
-
update(params: Params$Resource$Accounts$Containers$Variables$Update, options: StreamMethodOptions):
|
|
1911
|
-
update(params?: Params$Resource$Accounts$Containers$Variables$Update, options?: MethodOptions):
|
|
1796
|
+
update(params: Params$Resource$Accounts$Containers$Variables$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1797
|
+
update(params?: Params$Resource$Accounts$Containers$Variables$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Variable>>;
|
|
1912
1798
|
update(params: Params$Resource$Accounts$Containers$Variables$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1913
1799
|
update(params: Params$Resource$Accounts$Containers$Variables$Update, options: MethodOptions | BodyResponseCallback<Schema$Variable>, callback: BodyResponseCallback<Schema$Variable>): void;
|
|
1914
1800
|
update(params: Params$Resource$Accounts$Containers$Variables$Update, callback: BodyResponseCallback<Schema$Variable>): void;
|
|
@@ -1999,8 +1885,8 @@ export declare namespace tagmanager_v1 {
|
|
|
1999
1885
|
* @param callback - Optional callback that handles the response.
|
|
2000
1886
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2001
1887
|
*/
|
|
2002
|
-
create(params: Params$Resource$Accounts$Containers$Versions$Create, options: StreamMethodOptions):
|
|
2003
|
-
create(params?: Params$Resource$Accounts$Containers$Versions$Create, options?: MethodOptions):
|
|
1888
|
+
create(params: Params$Resource$Accounts$Containers$Versions$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1889
|
+
create(params?: Params$Resource$Accounts$Containers$Versions$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$CreateContainerVersionResponse>>;
|
|
2004
1890
|
create(params: Params$Resource$Accounts$Containers$Versions$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2005
1891
|
create(params: Params$Resource$Accounts$Containers$Versions$Create, options: MethodOptions | BodyResponseCallback<Schema$CreateContainerVersionResponse>, callback: BodyResponseCallback<Schema$CreateContainerVersionResponse>): void;
|
|
2006
1892
|
create(params: Params$Resource$Accounts$Containers$Versions$Create, callback: BodyResponseCallback<Schema$CreateContainerVersionResponse>): void;
|
|
@@ -2013,8 +1899,8 @@ export declare namespace tagmanager_v1 {
|
|
|
2013
1899
|
* @param callback - Optional callback that handles the response.
|
|
2014
1900
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2015
1901
|
*/
|
|
2016
|
-
delete(params: Params$Resource$Accounts$Containers$Versions$Delete, options: StreamMethodOptions):
|
|
2017
|
-
delete(params?: Params$Resource$Accounts$Containers$Versions$Delete, options?: MethodOptions):
|
|
1902
|
+
delete(params: Params$Resource$Accounts$Containers$Versions$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1903
|
+
delete(params?: Params$Resource$Accounts$Containers$Versions$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
2018
1904
|
delete(params: Params$Resource$Accounts$Containers$Versions$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2019
1905
|
delete(params: Params$Resource$Accounts$Containers$Versions$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
2020
1906
|
delete(params: Params$Resource$Accounts$Containers$Versions$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -2027,8 +1913,8 @@ export declare namespace tagmanager_v1 {
|
|
|
2027
1913
|
* @param callback - Optional callback that handles the response.
|
|
2028
1914
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2029
1915
|
*/
|
|
2030
|
-
get(params: Params$Resource$Accounts$Containers$Versions$Get, options: StreamMethodOptions):
|
|
2031
|
-
get(params?: Params$Resource$Accounts$Containers$Versions$Get, options?: MethodOptions):
|
|
1916
|
+
get(params: Params$Resource$Accounts$Containers$Versions$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1917
|
+
get(params?: Params$Resource$Accounts$Containers$Versions$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ContainerVersion>>;
|
|
2032
1918
|
get(params: Params$Resource$Accounts$Containers$Versions$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2033
1919
|
get(params: Params$Resource$Accounts$Containers$Versions$Get, options: MethodOptions | BodyResponseCallback<Schema$ContainerVersion>, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
2034
1920
|
get(params: Params$Resource$Accounts$Containers$Versions$Get, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
@@ -2041,8 +1927,8 @@ export declare namespace tagmanager_v1 {
|
|
|
2041
1927
|
* @param callback - Optional callback that handles the response.
|
|
2042
1928
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2043
1929
|
*/
|
|
2044
|
-
list(params: Params$Resource$Accounts$Containers$Versions$List, options: StreamMethodOptions):
|
|
2045
|
-
list(params?: Params$Resource$Accounts$Containers$Versions$List, options?: MethodOptions):
|
|
1930
|
+
list(params: Params$Resource$Accounts$Containers$Versions$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1931
|
+
list(params?: Params$Resource$Accounts$Containers$Versions$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListContainerVersionsResponse>>;
|
|
2046
1932
|
list(params: Params$Resource$Accounts$Containers$Versions$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2047
1933
|
list(params: Params$Resource$Accounts$Containers$Versions$List, options: MethodOptions | BodyResponseCallback<Schema$ListContainerVersionsResponse>, callback: BodyResponseCallback<Schema$ListContainerVersionsResponse>): void;
|
|
2048
1934
|
list(params: Params$Resource$Accounts$Containers$Versions$List, callback: BodyResponseCallback<Schema$ListContainerVersionsResponse>): void;
|
|
@@ -2055,8 +1941,8 @@ export declare namespace tagmanager_v1 {
|
|
|
2055
1941
|
* @param callback - Optional callback that handles the response.
|
|
2056
1942
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2057
1943
|
*/
|
|
2058
|
-
publish(params: Params$Resource$Accounts$Containers$Versions$Publish, options: StreamMethodOptions):
|
|
2059
|
-
publish(params?: Params$Resource$Accounts$Containers$Versions$Publish, options?: MethodOptions):
|
|
1944
|
+
publish(params: Params$Resource$Accounts$Containers$Versions$Publish, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1945
|
+
publish(params?: Params$Resource$Accounts$Containers$Versions$Publish, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$PublishContainerVersionResponse>>;
|
|
2060
1946
|
publish(params: Params$Resource$Accounts$Containers$Versions$Publish, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2061
1947
|
publish(params: Params$Resource$Accounts$Containers$Versions$Publish, options: MethodOptions | BodyResponseCallback<Schema$PublishContainerVersionResponse>, callback: BodyResponseCallback<Schema$PublishContainerVersionResponse>): void;
|
|
2062
1948
|
publish(params: Params$Resource$Accounts$Containers$Versions$Publish, callback: BodyResponseCallback<Schema$PublishContainerVersionResponse>): void;
|
|
@@ -2069,8 +1955,8 @@ export declare namespace tagmanager_v1 {
|
|
|
2069
1955
|
* @param callback - Optional callback that handles the response.
|
|
2070
1956
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2071
1957
|
*/
|
|
2072
|
-
restore(params: Params$Resource$Accounts$Containers$Versions$Restore, options: StreamMethodOptions):
|
|
2073
|
-
restore(params?: Params$Resource$Accounts$Containers$Versions$Restore, options?: MethodOptions):
|
|
1958
|
+
restore(params: Params$Resource$Accounts$Containers$Versions$Restore, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1959
|
+
restore(params?: Params$Resource$Accounts$Containers$Versions$Restore, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ContainerVersion>>;
|
|
2074
1960
|
restore(params: Params$Resource$Accounts$Containers$Versions$Restore, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2075
1961
|
restore(params: Params$Resource$Accounts$Containers$Versions$Restore, options: MethodOptions | BodyResponseCallback<Schema$ContainerVersion>, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
2076
1962
|
restore(params: Params$Resource$Accounts$Containers$Versions$Restore, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
@@ -2083,8 +1969,8 @@ export declare namespace tagmanager_v1 {
|
|
|
2083
1969
|
* @param callback - Optional callback that handles the response.
|
|
2084
1970
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2085
1971
|
*/
|
|
2086
|
-
undelete(params: Params$Resource$Accounts$Containers$Versions$Undelete, options: StreamMethodOptions):
|
|
2087
|
-
undelete(params?: Params$Resource$Accounts$Containers$Versions$Undelete, options?: MethodOptions):
|
|
1972
|
+
undelete(params: Params$Resource$Accounts$Containers$Versions$Undelete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1973
|
+
undelete(params?: Params$Resource$Accounts$Containers$Versions$Undelete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ContainerVersion>>;
|
|
2088
1974
|
undelete(params: Params$Resource$Accounts$Containers$Versions$Undelete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2089
1975
|
undelete(params: Params$Resource$Accounts$Containers$Versions$Undelete, options: MethodOptions | BodyResponseCallback<Schema$ContainerVersion>, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
2090
1976
|
undelete(params: Params$Resource$Accounts$Containers$Versions$Undelete, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
@@ -2097,8 +1983,8 @@ export declare namespace tagmanager_v1 {
|
|
|
2097
1983
|
* @param callback - Optional callback that handles the response.
|
|
2098
1984
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2099
1985
|
*/
|
|
2100
|
-
update(params: Params$Resource$Accounts$Containers$Versions$Update, options: StreamMethodOptions):
|
|
2101
|
-
update(params?: Params$Resource$Accounts$Containers$Versions$Update, options?: MethodOptions):
|
|
1986
|
+
update(params: Params$Resource$Accounts$Containers$Versions$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1987
|
+
update(params?: Params$Resource$Accounts$Containers$Versions$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ContainerVersion>>;
|
|
2102
1988
|
update(params: Params$Resource$Accounts$Containers$Versions$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2103
1989
|
update(params: Params$Resource$Accounts$Containers$Versions$Update, options: MethodOptions | BodyResponseCallback<Schema$ContainerVersion>, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
2104
1990
|
update(params: Params$Resource$Accounts$Containers$Versions$Update, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
@@ -2243,8 +2129,8 @@ export declare namespace tagmanager_v1 {
|
|
|
2243
2129
|
* @param callback - Optional callback that handles the response.
|
|
2244
2130
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2245
2131
|
*/
|
|
2246
|
-
create(params: Params$Resource$Accounts$Permissions$Create, options: StreamMethodOptions):
|
|
2247
|
-
create(params?: Params$Resource$Accounts$Permissions$Create, options?: MethodOptions):
|
|
2132
|
+
create(params: Params$Resource$Accounts$Permissions$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2133
|
+
create(params?: Params$Resource$Accounts$Permissions$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$UserAccess>>;
|
|
2248
2134
|
create(params: Params$Resource$Accounts$Permissions$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2249
2135
|
create(params: Params$Resource$Accounts$Permissions$Create, options: MethodOptions | BodyResponseCallback<Schema$UserAccess>, callback: BodyResponseCallback<Schema$UserAccess>): void;
|
|
2250
2136
|
create(params: Params$Resource$Accounts$Permissions$Create, callback: BodyResponseCallback<Schema$UserAccess>): void;
|
|
@@ -2257,8 +2143,8 @@ export declare namespace tagmanager_v1 {
|
|
|
2257
2143
|
* @param callback - Optional callback that handles the response.
|
|
2258
2144
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2259
2145
|
*/
|
|
2260
|
-
delete(params: Params$Resource$Accounts$Permissions$Delete, options: StreamMethodOptions):
|
|
2261
|
-
delete(params?: Params$Resource$Accounts$Permissions$Delete, options?: MethodOptions):
|
|
2146
|
+
delete(params: Params$Resource$Accounts$Permissions$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2147
|
+
delete(params?: Params$Resource$Accounts$Permissions$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
2262
2148
|
delete(params: Params$Resource$Accounts$Permissions$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2263
2149
|
delete(params: Params$Resource$Accounts$Permissions$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
2264
2150
|
delete(params: Params$Resource$Accounts$Permissions$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -2271,8 +2157,8 @@ export declare namespace tagmanager_v1 {
|
|
|
2271
2157
|
* @param callback - Optional callback that handles the response.
|
|
2272
2158
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2273
2159
|
*/
|
|
2274
|
-
get(params: Params$Resource$Accounts$Permissions$Get, options: StreamMethodOptions):
|
|
2275
|
-
get(params?: Params$Resource$Accounts$Permissions$Get, options?: MethodOptions):
|
|
2160
|
+
get(params: Params$Resource$Accounts$Permissions$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2161
|
+
get(params?: Params$Resource$Accounts$Permissions$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$UserAccess>>;
|
|
2276
2162
|
get(params: Params$Resource$Accounts$Permissions$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2277
2163
|
get(params: Params$Resource$Accounts$Permissions$Get, options: MethodOptions | BodyResponseCallback<Schema$UserAccess>, callback: BodyResponseCallback<Schema$UserAccess>): void;
|
|
2278
2164
|
get(params: Params$Resource$Accounts$Permissions$Get, callback: BodyResponseCallback<Schema$UserAccess>): void;
|
|
@@ -2285,8 +2171,8 @@ export declare namespace tagmanager_v1 {
|
|
|
2285
2171
|
* @param callback - Optional callback that handles the response.
|
|
2286
2172
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2287
2173
|
*/
|
|
2288
|
-
list(params: Params$Resource$Accounts$Permissions$List, options: StreamMethodOptions):
|
|
2289
|
-
list(params?: Params$Resource$Accounts$Permissions$List, options?: MethodOptions):
|
|
2174
|
+
list(params: Params$Resource$Accounts$Permissions$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2175
|
+
list(params?: Params$Resource$Accounts$Permissions$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListAccountUsersResponse>>;
|
|
2290
2176
|
list(params: Params$Resource$Accounts$Permissions$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2291
2177
|
list(params: Params$Resource$Accounts$Permissions$List, options: MethodOptions | BodyResponseCallback<Schema$ListAccountUsersResponse>, callback: BodyResponseCallback<Schema$ListAccountUsersResponse>): void;
|
|
2292
2178
|
list(params: Params$Resource$Accounts$Permissions$List, callback: BodyResponseCallback<Schema$ListAccountUsersResponse>): void;
|
|
@@ -2299,8 +2185,8 @@ export declare namespace tagmanager_v1 {
|
|
|
2299
2185
|
* @param callback - Optional callback that handles the response.
|
|
2300
2186
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2301
2187
|
*/
|
|
2302
|
-
update(params: Params$Resource$Accounts$Permissions$Update, options: StreamMethodOptions):
|
|
2303
|
-
update(params?: Params$Resource$Accounts$Permissions$Update, options?: MethodOptions):
|
|
2188
|
+
update(params: Params$Resource$Accounts$Permissions$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2189
|
+
update(params?: Params$Resource$Accounts$Permissions$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$UserAccess>>;
|
|
2304
2190
|
update(params: Params$Resource$Accounts$Permissions$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2305
2191
|
update(params: Params$Resource$Accounts$Permissions$Update, options: MethodOptions | BodyResponseCallback<Schema$UserAccess>, callback: BodyResponseCallback<Schema$UserAccess>): void;
|
|
2306
2192
|
update(params: Params$Resource$Accounts$Permissions$Update, callback: BodyResponseCallback<Schema$UserAccess>): void;
|