@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/v2.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_v2 {
|
|
5
5
|
export interface Options extends GlobalOptions {
|
|
@@ -468,14 +468,6 @@ export declare namespace tagmanager_v2 {
|
|
|
468
468
|
* Number of Google tag configs in the container version.
|
|
469
469
|
*/
|
|
470
470
|
numGtagConfigs?: string | null;
|
|
471
|
-
/**
|
|
472
|
-
* Number of macros in the container version.
|
|
473
|
-
*/
|
|
474
|
-
numMacros?: string | null;
|
|
475
|
-
/**
|
|
476
|
-
* Number of rules in the container version.
|
|
477
|
-
*/
|
|
478
|
-
numRules?: string | null;
|
|
479
471
|
/**
|
|
480
472
|
* Number of tags in the container version.
|
|
481
473
|
*/
|
|
@@ -1303,10 +1295,6 @@ export declare namespace tagmanager_v2 {
|
|
|
1303
1295
|
* GTM Account ID.
|
|
1304
1296
|
*/
|
|
1305
1297
|
accountId?: string | null;
|
|
1306
|
-
/**
|
|
1307
|
-
* Blocking rule IDs. If any of the listed rules evaluate to true, the tag will not fire.
|
|
1308
|
-
*/
|
|
1309
|
-
blockingRuleId?: string[] | null;
|
|
1310
1298
|
/**
|
|
1311
1299
|
* Blocking trigger IDs. If any of the listed triggers evaluate to true, the tag will not fire.
|
|
1312
1300
|
*/
|
|
@@ -1323,10 +1311,6 @@ export declare namespace tagmanager_v2 {
|
|
|
1323
1311
|
* The fingerprint of the GTM Tag as computed at storage time. This value is recomputed whenever the tag is modified.
|
|
1324
1312
|
*/
|
|
1325
1313
|
fingerprint?: string | null;
|
|
1326
|
-
/**
|
|
1327
|
-
* Firing rule IDs. A tag will fire when any of the listed rules are true and all of its blockingRuleIds (if any specified) are false.
|
|
1328
|
-
*/
|
|
1329
|
-
firingRuleId?: string[] | null;
|
|
1330
1314
|
/**
|
|
1331
1315
|
* 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.
|
|
1332
1316
|
*/
|
|
@@ -1879,8 +1863,8 @@ export declare namespace tagmanager_v2 {
|
|
|
1879
1863
|
* @param callback - Optional callback that handles the response.
|
|
1880
1864
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1881
1865
|
*/
|
|
1882
|
-
get(params: Params$Resource$Accounts$Get, options: StreamMethodOptions):
|
|
1883
|
-
get(params?: Params$Resource$Accounts$Get, options?: MethodOptions):
|
|
1866
|
+
get(params: Params$Resource$Accounts$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1867
|
+
get(params?: Params$Resource$Accounts$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Account>>;
|
|
1884
1868
|
get(params: Params$Resource$Accounts$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1885
1869
|
get(params: Params$Resource$Accounts$Get, options: MethodOptions | BodyResponseCallback<Schema$Account>, callback: BodyResponseCallback<Schema$Account>): void;
|
|
1886
1870
|
get(params: Params$Resource$Accounts$Get, callback: BodyResponseCallback<Schema$Account>): void;
|
|
@@ -1893,8 +1877,8 @@ export declare namespace tagmanager_v2 {
|
|
|
1893
1877
|
* @param callback - Optional callback that handles the response.
|
|
1894
1878
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1895
1879
|
*/
|
|
1896
|
-
list(params: Params$Resource$Accounts$List, options: StreamMethodOptions):
|
|
1897
|
-
list(params?: Params$Resource$Accounts$List, options?: MethodOptions):
|
|
1880
|
+
list(params: Params$Resource$Accounts$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1881
|
+
list(params?: Params$Resource$Accounts$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListAccountsResponse>>;
|
|
1898
1882
|
list(params: Params$Resource$Accounts$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1899
1883
|
list(params: Params$Resource$Accounts$List, options: MethodOptions | BodyResponseCallback<Schema$ListAccountsResponse>, callback: BodyResponseCallback<Schema$ListAccountsResponse>): void;
|
|
1900
1884
|
list(params: Params$Resource$Accounts$List, callback: BodyResponseCallback<Schema$ListAccountsResponse>): void;
|
|
@@ -1907,8 +1891,8 @@ export declare namespace tagmanager_v2 {
|
|
|
1907
1891
|
* @param callback - Optional callback that handles the response.
|
|
1908
1892
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1909
1893
|
*/
|
|
1910
|
-
update(params: Params$Resource$Accounts$Update, options: StreamMethodOptions):
|
|
1911
|
-
update(params?: Params$Resource$Accounts$Update, options?: MethodOptions):
|
|
1894
|
+
update(params: Params$Resource$Accounts$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1895
|
+
update(params?: Params$Resource$Accounts$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Account>>;
|
|
1912
1896
|
update(params: Params$Resource$Accounts$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1913
1897
|
update(params: Params$Resource$Accounts$Update, options: MethodOptions | BodyResponseCallback<Schema$Account>, callback: BodyResponseCallback<Schema$Account>): void;
|
|
1914
1898
|
update(params: Params$Resource$Accounts$Update, callback: BodyResponseCallback<Schema$Account>): void;
|
|
@@ -1960,8 +1944,8 @@ export declare namespace tagmanager_v2 {
|
|
|
1960
1944
|
* @param callback - Optional callback that handles the response.
|
|
1961
1945
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1962
1946
|
*/
|
|
1963
|
-
combine(params: Params$Resource$Accounts$Containers$Combine, options: StreamMethodOptions):
|
|
1964
|
-
combine(params?: Params$Resource$Accounts$Containers$Combine, options?: MethodOptions):
|
|
1947
|
+
combine(params: Params$Resource$Accounts$Containers$Combine, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1948
|
+
combine(params?: Params$Resource$Accounts$Containers$Combine, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Container>>;
|
|
1965
1949
|
combine(params: Params$Resource$Accounts$Containers$Combine, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1966
1950
|
combine(params: Params$Resource$Accounts$Containers$Combine, options: MethodOptions | BodyResponseCallback<Schema$Container>, callback: BodyResponseCallback<Schema$Container>): void;
|
|
1967
1951
|
combine(params: Params$Resource$Accounts$Containers$Combine, callback: BodyResponseCallback<Schema$Container>): void;
|
|
@@ -1974,8 +1958,8 @@ export declare namespace tagmanager_v2 {
|
|
|
1974
1958
|
* @param callback - Optional callback that handles the response.
|
|
1975
1959
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1976
1960
|
*/
|
|
1977
|
-
create(params: Params$Resource$Accounts$Containers$Create, options: StreamMethodOptions):
|
|
1978
|
-
create(params?: Params$Resource$Accounts$Containers$Create, options?: MethodOptions):
|
|
1961
|
+
create(params: Params$Resource$Accounts$Containers$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1962
|
+
create(params?: Params$Resource$Accounts$Containers$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Container>>;
|
|
1979
1963
|
create(params: Params$Resource$Accounts$Containers$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1980
1964
|
create(params: Params$Resource$Accounts$Containers$Create, options: MethodOptions | BodyResponseCallback<Schema$Container>, callback: BodyResponseCallback<Schema$Container>): void;
|
|
1981
1965
|
create(params: Params$Resource$Accounts$Containers$Create, callback: BodyResponseCallback<Schema$Container>): void;
|
|
@@ -1988,8 +1972,8 @@ export declare namespace tagmanager_v2 {
|
|
|
1988
1972
|
* @param callback - Optional callback that handles the response.
|
|
1989
1973
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1990
1974
|
*/
|
|
1991
|
-
delete(params: Params$Resource$Accounts$Containers$Delete, options: StreamMethodOptions):
|
|
1992
|
-
delete(params?: Params$Resource$Accounts$Containers$Delete, options?: MethodOptions):
|
|
1975
|
+
delete(params: Params$Resource$Accounts$Containers$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1976
|
+
delete(params?: Params$Resource$Accounts$Containers$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
1993
1977
|
delete(params: Params$Resource$Accounts$Containers$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1994
1978
|
delete(params: Params$Resource$Accounts$Containers$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
1995
1979
|
delete(params: Params$Resource$Accounts$Containers$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -2002,8 +1986,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2002
1986
|
* @param callback - Optional callback that handles the response.
|
|
2003
1987
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2004
1988
|
*/
|
|
2005
|
-
get(params: Params$Resource$Accounts$Containers$Get, options: StreamMethodOptions):
|
|
2006
|
-
get(params?: Params$Resource$Accounts$Containers$Get, options?: MethodOptions):
|
|
1989
|
+
get(params: Params$Resource$Accounts$Containers$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
1990
|
+
get(params?: Params$Resource$Accounts$Containers$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Container>>;
|
|
2007
1991
|
get(params: Params$Resource$Accounts$Containers$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2008
1992
|
get(params: Params$Resource$Accounts$Containers$Get, options: MethodOptions | BodyResponseCallback<Schema$Container>, callback: BodyResponseCallback<Schema$Container>): void;
|
|
2009
1993
|
get(params: Params$Resource$Accounts$Containers$Get, callback: BodyResponseCallback<Schema$Container>): void;
|
|
@@ -2016,8 +2000,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2016
2000
|
* @param callback - Optional callback that handles the response.
|
|
2017
2001
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2018
2002
|
*/
|
|
2019
|
-
list(params: Params$Resource$Accounts$Containers$List, options: StreamMethodOptions):
|
|
2020
|
-
list(params?: Params$Resource$Accounts$Containers$List, options?: MethodOptions):
|
|
2003
|
+
list(params: Params$Resource$Accounts$Containers$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2004
|
+
list(params?: Params$Resource$Accounts$Containers$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListContainersResponse>>;
|
|
2021
2005
|
list(params: Params$Resource$Accounts$Containers$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2022
2006
|
list(params: Params$Resource$Accounts$Containers$List, options: MethodOptions | BodyResponseCallback<Schema$ListContainersResponse>, callback: BodyResponseCallback<Schema$ListContainersResponse>): void;
|
|
2023
2007
|
list(params: Params$Resource$Accounts$Containers$List, callback: BodyResponseCallback<Schema$ListContainersResponse>): void;
|
|
@@ -2030,8 +2014,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2030
2014
|
* @param callback - Optional callback that handles the response.
|
|
2031
2015
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2032
2016
|
*/
|
|
2033
|
-
lookup(params: Params$Resource$Accounts$Containers$Lookup, options: StreamMethodOptions):
|
|
2034
|
-
lookup(params?: Params$Resource$Accounts$Containers$Lookup, options?: MethodOptions):
|
|
2017
|
+
lookup(params: Params$Resource$Accounts$Containers$Lookup, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2018
|
+
lookup(params?: Params$Resource$Accounts$Containers$Lookup, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Container>>;
|
|
2035
2019
|
lookup(params: Params$Resource$Accounts$Containers$Lookup, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2036
2020
|
lookup(params: Params$Resource$Accounts$Containers$Lookup, options: MethodOptions | BodyResponseCallback<Schema$Container>, callback: BodyResponseCallback<Schema$Container>): void;
|
|
2037
2021
|
lookup(params: Params$Resource$Accounts$Containers$Lookup, callback: BodyResponseCallback<Schema$Container>): void;
|
|
@@ -2044,8 +2028,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2044
2028
|
* @param callback - Optional callback that handles the response.
|
|
2045
2029
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2046
2030
|
*/
|
|
2047
|
-
move_tag_id(params: Params$Resource$Accounts$Containers$Move_tag_id, options: StreamMethodOptions):
|
|
2048
|
-
move_tag_id(params?: Params$Resource$Accounts$Containers$Move_tag_id, options?: MethodOptions):
|
|
2031
|
+
move_tag_id(params: Params$Resource$Accounts$Containers$Move_tag_id, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2032
|
+
move_tag_id(params?: Params$Resource$Accounts$Containers$Move_tag_id, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Container>>;
|
|
2049
2033
|
move_tag_id(params: Params$Resource$Accounts$Containers$Move_tag_id, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2050
2034
|
move_tag_id(params: Params$Resource$Accounts$Containers$Move_tag_id, options: MethodOptions | BodyResponseCallback<Schema$Container>, callback: BodyResponseCallback<Schema$Container>): void;
|
|
2051
2035
|
move_tag_id(params: Params$Resource$Accounts$Containers$Move_tag_id, callback: BodyResponseCallback<Schema$Container>): void;
|
|
@@ -2058,8 +2042,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2058
2042
|
* @param callback - Optional callback that handles the response.
|
|
2059
2043
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2060
2044
|
*/
|
|
2061
|
-
snippet(params: Params$Resource$Accounts$Containers$Snippet, options: StreamMethodOptions):
|
|
2062
|
-
snippet(params?: Params$Resource$Accounts$Containers$Snippet, options?: MethodOptions):
|
|
2045
|
+
snippet(params: Params$Resource$Accounts$Containers$Snippet, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2046
|
+
snippet(params?: Params$Resource$Accounts$Containers$Snippet, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$GetContainerSnippetResponse>>;
|
|
2063
2047
|
snippet(params: Params$Resource$Accounts$Containers$Snippet, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2064
2048
|
snippet(params: Params$Resource$Accounts$Containers$Snippet, options: MethodOptions | BodyResponseCallback<Schema$GetContainerSnippetResponse>, callback: BodyResponseCallback<Schema$GetContainerSnippetResponse>): void;
|
|
2065
2049
|
snippet(params: Params$Resource$Accounts$Containers$Snippet, callback: BodyResponseCallback<Schema$GetContainerSnippetResponse>): void;
|
|
@@ -2072,8 +2056,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2072
2056
|
* @param callback - Optional callback that handles the response.
|
|
2073
2057
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2074
2058
|
*/
|
|
2075
|
-
update(params: Params$Resource$Accounts$Containers$Update, options: StreamMethodOptions):
|
|
2076
|
-
update(params?: Params$Resource$Accounts$Containers$Update, options?: MethodOptions):
|
|
2059
|
+
update(params: Params$Resource$Accounts$Containers$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2060
|
+
update(params?: Params$Resource$Accounts$Containers$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Container>>;
|
|
2077
2061
|
update(params: Params$Resource$Accounts$Containers$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2078
2062
|
update(params: Params$Resource$Accounts$Containers$Update, options: MethodOptions | BodyResponseCallback<Schema$Container>, callback: BodyResponseCallback<Schema$Container>): void;
|
|
2079
2063
|
update(params: Params$Resource$Accounts$Containers$Update, callback: BodyResponseCallback<Schema$Container>): void;
|
|
@@ -2200,8 +2184,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2200
2184
|
* @param callback - Optional callback that handles the response.
|
|
2201
2185
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2202
2186
|
*/
|
|
2203
|
-
get(params: Params$Resource$Accounts$Containers$Destinations$Get, options: StreamMethodOptions):
|
|
2204
|
-
get(params?: Params$Resource$Accounts$Containers$Destinations$Get, options?: MethodOptions):
|
|
2187
|
+
get(params: Params$Resource$Accounts$Containers$Destinations$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2188
|
+
get(params?: Params$Resource$Accounts$Containers$Destinations$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Destination>>;
|
|
2205
2189
|
get(params: Params$Resource$Accounts$Containers$Destinations$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2206
2190
|
get(params: Params$Resource$Accounts$Containers$Destinations$Get, options: MethodOptions | BodyResponseCallback<Schema$Destination>, callback: BodyResponseCallback<Schema$Destination>): void;
|
|
2207
2191
|
get(params: Params$Resource$Accounts$Containers$Destinations$Get, callback: BodyResponseCallback<Schema$Destination>): void;
|
|
@@ -2214,8 +2198,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2214
2198
|
* @param callback - Optional callback that handles the response.
|
|
2215
2199
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2216
2200
|
*/
|
|
2217
|
-
link(params: Params$Resource$Accounts$Containers$Destinations$Link, options: StreamMethodOptions):
|
|
2218
|
-
link(params?: Params$Resource$Accounts$Containers$Destinations$Link, options?: MethodOptions):
|
|
2201
|
+
link(params: Params$Resource$Accounts$Containers$Destinations$Link, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2202
|
+
link(params?: Params$Resource$Accounts$Containers$Destinations$Link, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Destination>>;
|
|
2219
2203
|
link(params: Params$Resource$Accounts$Containers$Destinations$Link, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2220
2204
|
link(params: Params$Resource$Accounts$Containers$Destinations$Link, options: MethodOptions | BodyResponseCallback<Schema$Destination>, callback: BodyResponseCallback<Schema$Destination>): void;
|
|
2221
2205
|
link(params: Params$Resource$Accounts$Containers$Destinations$Link, callback: BodyResponseCallback<Schema$Destination>): void;
|
|
@@ -2228,8 +2212,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2228
2212
|
* @param callback - Optional callback that handles the response.
|
|
2229
2213
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2230
2214
|
*/
|
|
2231
|
-
list(params: Params$Resource$Accounts$Containers$Destinations$List, options: StreamMethodOptions):
|
|
2232
|
-
list(params?: Params$Resource$Accounts$Containers$Destinations$List, options?: MethodOptions):
|
|
2215
|
+
list(params: Params$Resource$Accounts$Containers$Destinations$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2216
|
+
list(params?: Params$Resource$Accounts$Containers$Destinations$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListDestinationsResponse>>;
|
|
2233
2217
|
list(params: Params$Resource$Accounts$Containers$Destinations$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2234
2218
|
list(params: Params$Resource$Accounts$Containers$Destinations$List, options: MethodOptions | BodyResponseCallback<Schema$ListDestinationsResponse>, callback: BodyResponseCallback<Schema$ListDestinationsResponse>): void;
|
|
2235
2219
|
list(params: Params$Resource$Accounts$Containers$Destinations$List, callback: BodyResponseCallback<Schema$ListDestinationsResponse>): void;
|
|
@@ -2272,8 +2256,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2272
2256
|
* @param callback - Optional callback that handles the response.
|
|
2273
2257
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2274
2258
|
*/
|
|
2275
|
-
create(params: Params$Resource$Accounts$Containers$Environments$Create, options: StreamMethodOptions):
|
|
2276
|
-
create(params?: Params$Resource$Accounts$Containers$Environments$Create, options?: MethodOptions):
|
|
2259
|
+
create(params: Params$Resource$Accounts$Containers$Environments$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2260
|
+
create(params?: Params$Resource$Accounts$Containers$Environments$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Environment>>;
|
|
2277
2261
|
create(params: Params$Resource$Accounts$Containers$Environments$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2278
2262
|
create(params: Params$Resource$Accounts$Containers$Environments$Create, options: MethodOptions | BodyResponseCallback<Schema$Environment>, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
2279
2263
|
create(params: Params$Resource$Accounts$Containers$Environments$Create, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
@@ -2286,8 +2270,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2286
2270
|
* @param callback - Optional callback that handles the response.
|
|
2287
2271
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2288
2272
|
*/
|
|
2289
|
-
delete(params: Params$Resource$Accounts$Containers$Environments$Delete, options: StreamMethodOptions):
|
|
2290
|
-
delete(params?: Params$Resource$Accounts$Containers$Environments$Delete, options?: MethodOptions):
|
|
2273
|
+
delete(params: Params$Resource$Accounts$Containers$Environments$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2274
|
+
delete(params?: Params$Resource$Accounts$Containers$Environments$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
2291
2275
|
delete(params: Params$Resource$Accounts$Containers$Environments$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2292
2276
|
delete(params: Params$Resource$Accounts$Containers$Environments$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
2293
2277
|
delete(params: Params$Resource$Accounts$Containers$Environments$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -2300,8 +2284,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2300
2284
|
* @param callback - Optional callback that handles the response.
|
|
2301
2285
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2302
2286
|
*/
|
|
2303
|
-
get(params: Params$Resource$Accounts$Containers$Environments$Get, options: StreamMethodOptions):
|
|
2304
|
-
get(params?: Params$Resource$Accounts$Containers$Environments$Get, options?: MethodOptions):
|
|
2287
|
+
get(params: Params$Resource$Accounts$Containers$Environments$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2288
|
+
get(params?: Params$Resource$Accounts$Containers$Environments$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Environment>>;
|
|
2305
2289
|
get(params: Params$Resource$Accounts$Containers$Environments$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2306
2290
|
get(params: Params$Resource$Accounts$Containers$Environments$Get, options: MethodOptions | BodyResponseCallback<Schema$Environment>, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
2307
2291
|
get(params: Params$Resource$Accounts$Containers$Environments$Get, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
@@ -2314,8 +2298,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2314
2298
|
* @param callback - Optional callback that handles the response.
|
|
2315
2299
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2316
2300
|
*/
|
|
2317
|
-
list(params: Params$Resource$Accounts$Containers$Environments$List, options: StreamMethodOptions):
|
|
2318
|
-
list(params?: Params$Resource$Accounts$Containers$Environments$List, options?: MethodOptions):
|
|
2301
|
+
list(params: Params$Resource$Accounts$Containers$Environments$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2302
|
+
list(params?: Params$Resource$Accounts$Containers$Environments$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListEnvironmentsResponse>>;
|
|
2319
2303
|
list(params: Params$Resource$Accounts$Containers$Environments$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2320
2304
|
list(params: Params$Resource$Accounts$Containers$Environments$List, options: MethodOptions | BodyResponseCallback<Schema$ListEnvironmentsResponse>, callback: BodyResponseCallback<Schema$ListEnvironmentsResponse>): void;
|
|
2321
2305
|
list(params: Params$Resource$Accounts$Containers$Environments$List, callback: BodyResponseCallback<Schema$ListEnvironmentsResponse>): void;
|
|
@@ -2328,8 +2312,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2328
2312
|
* @param callback - Optional callback that handles the response.
|
|
2329
2313
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2330
2314
|
*/
|
|
2331
|
-
reauthorize(params: Params$Resource$Accounts$Containers$Environments$Reauthorize, options: StreamMethodOptions):
|
|
2332
|
-
reauthorize(params?: Params$Resource$Accounts$Containers$Environments$Reauthorize, options?: MethodOptions):
|
|
2315
|
+
reauthorize(params: Params$Resource$Accounts$Containers$Environments$Reauthorize, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2316
|
+
reauthorize(params?: Params$Resource$Accounts$Containers$Environments$Reauthorize, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Environment>>;
|
|
2333
2317
|
reauthorize(params: Params$Resource$Accounts$Containers$Environments$Reauthorize, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2334
2318
|
reauthorize(params: Params$Resource$Accounts$Containers$Environments$Reauthorize, options: MethodOptions | BodyResponseCallback<Schema$Environment>, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
2335
2319
|
reauthorize(params: Params$Resource$Accounts$Containers$Environments$Reauthorize, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
@@ -2342,8 +2326,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2342
2326
|
* @param callback - Optional callback that handles the response.
|
|
2343
2327
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2344
2328
|
*/
|
|
2345
|
-
update(params: Params$Resource$Accounts$Containers$Environments$Update, options: StreamMethodOptions):
|
|
2346
|
-
update(params?: Params$Resource$Accounts$Containers$Environments$Update, options?: MethodOptions):
|
|
2329
|
+
update(params: Params$Resource$Accounts$Containers$Environments$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2330
|
+
update(params?: Params$Resource$Accounts$Containers$Environments$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Environment>>;
|
|
2347
2331
|
update(params: Params$Resource$Accounts$Containers$Environments$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2348
2332
|
update(params: Params$Resource$Accounts$Containers$Environments$Update, options: MethodOptions | BodyResponseCallback<Schema$Environment>, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
2349
2333
|
update(params: Params$Resource$Accounts$Containers$Environments$Update, callback: BodyResponseCallback<Schema$Environment>): void;
|
|
@@ -2416,8 +2400,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2416
2400
|
* @param callback - Optional callback that handles the response.
|
|
2417
2401
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2418
2402
|
*/
|
|
2419
|
-
delete(params: Params$Resource$Accounts$Containers$Versions$Delete, options: StreamMethodOptions):
|
|
2420
|
-
delete(params?: Params$Resource$Accounts$Containers$Versions$Delete, options?: MethodOptions):
|
|
2403
|
+
delete(params: Params$Resource$Accounts$Containers$Versions$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2404
|
+
delete(params?: Params$Resource$Accounts$Containers$Versions$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
2421
2405
|
delete(params: Params$Resource$Accounts$Containers$Versions$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2422
2406
|
delete(params: Params$Resource$Accounts$Containers$Versions$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
2423
2407
|
delete(params: Params$Resource$Accounts$Containers$Versions$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -2430,8 +2414,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2430
2414
|
* @param callback - Optional callback that handles the response.
|
|
2431
2415
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2432
2416
|
*/
|
|
2433
|
-
get(params: Params$Resource$Accounts$Containers$Versions$Get, options: StreamMethodOptions):
|
|
2434
|
-
get(params?: Params$Resource$Accounts$Containers$Versions$Get, options?: MethodOptions):
|
|
2417
|
+
get(params: Params$Resource$Accounts$Containers$Versions$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2418
|
+
get(params?: Params$Resource$Accounts$Containers$Versions$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ContainerVersion>>;
|
|
2435
2419
|
get(params: Params$Resource$Accounts$Containers$Versions$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2436
2420
|
get(params: Params$Resource$Accounts$Containers$Versions$Get, options: MethodOptions | BodyResponseCallback<Schema$ContainerVersion>, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
2437
2421
|
get(params: Params$Resource$Accounts$Containers$Versions$Get, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
@@ -2444,8 +2428,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2444
2428
|
* @param callback - Optional callback that handles the response.
|
|
2445
2429
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2446
2430
|
*/
|
|
2447
|
-
live(params: Params$Resource$Accounts$Containers$Versions$Live, options: StreamMethodOptions):
|
|
2448
|
-
live(params?: Params$Resource$Accounts$Containers$Versions$Live, options?: MethodOptions):
|
|
2431
|
+
live(params: Params$Resource$Accounts$Containers$Versions$Live, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2432
|
+
live(params?: Params$Resource$Accounts$Containers$Versions$Live, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ContainerVersion>>;
|
|
2449
2433
|
live(params: Params$Resource$Accounts$Containers$Versions$Live, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2450
2434
|
live(params: Params$Resource$Accounts$Containers$Versions$Live, options: MethodOptions | BodyResponseCallback<Schema$ContainerVersion>, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
2451
2435
|
live(params: Params$Resource$Accounts$Containers$Versions$Live, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
@@ -2458,8 +2442,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2458
2442
|
* @param callback - Optional callback that handles the response.
|
|
2459
2443
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2460
2444
|
*/
|
|
2461
|
-
publish(params: Params$Resource$Accounts$Containers$Versions$Publish, options: StreamMethodOptions):
|
|
2462
|
-
publish(params?: Params$Resource$Accounts$Containers$Versions$Publish, options?: MethodOptions):
|
|
2445
|
+
publish(params: Params$Resource$Accounts$Containers$Versions$Publish, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2446
|
+
publish(params?: Params$Resource$Accounts$Containers$Versions$Publish, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$PublishContainerVersionResponse>>;
|
|
2463
2447
|
publish(params: Params$Resource$Accounts$Containers$Versions$Publish, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2464
2448
|
publish(params: Params$Resource$Accounts$Containers$Versions$Publish, options: MethodOptions | BodyResponseCallback<Schema$PublishContainerVersionResponse>, callback: BodyResponseCallback<Schema$PublishContainerVersionResponse>): void;
|
|
2465
2449
|
publish(params: Params$Resource$Accounts$Containers$Versions$Publish, callback: BodyResponseCallback<Schema$PublishContainerVersionResponse>): void;
|
|
@@ -2472,8 +2456,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2472
2456
|
* @param callback - Optional callback that handles the response.
|
|
2473
2457
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2474
2458
|
*/
|
|
2475
|
-
set_latest(params: Params$Resource$Accounts$Containers$Versions$Set_latest, options: StreamMethodOptions):
|
|
2476
|
-
set_latest(params?: Params$Resource$Accounts$Containers$Versions$Set_latest, options?: MethodOptions):
|
|
2459
|
+
set_latest(params: Params$Resource$Accounts$Containers$Versions$Set_latest, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2460
|
+
set_latest(params?: Params$Resource$Accounts$Containers$Versions$Set_latest, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ContainerVersion>>;
|
|
2477
2461
|
set_latest(params: Params$Resource$Accounts$Containers$Versions$Set_latest, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2478
2462
|
set_latest(params: Params$Resource$Accounts$Containers$Versions$Set_latest, options: MethodOptions | BodyResponseCallback<Schema$ContainerVersion>, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
2479
2463
|
set_latest(params: Params$Resource$Accounts$Containers$Versions$Set_latest, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
@@ -2486,8 +2470,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2486
2470
|
* @param callback - Optional callback that handles the response.
|
|
2487
2471
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2488
2472
|
*/
|
|
2489
|
-
undelete(params: Params$Resource$Accounts$Containers$Versions$Undelete, options: StreamMethodOptions):
|
|
2490
|
-
undelete(params?: Params$Resource$Accounts$Containers$Versions$Undelete, options?: MethodOptions):
|
|
2473
|
+
undelete(params: Params$Resource$Accounts$Containers$Versions$Undelete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2474
|
+
undelete(params?: Params$Resource$Accounts$Containers$Versions$Undelete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ContainerVersion>>;
|
|
2491
2475
|
undelete(params: Params$Resource$Accounts$Containers$Versions$Undelete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2492
2476
|
undelete(params: Params$Resource$Accounts$Containers$Versions$Undelete, options: MethodOptions | BodyResponseCallback<Schema$ContainerVersion>, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
2493
2477
|
undelete(params: Params$Resource$Accounts$Containers$Versions$Undelete, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
@@ -2500,8 +2484,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2500
2484
|
* @param callback - Optional callback that handles the response.
|
|
2501
2485
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2502
2486
|
*/
|
|
2503
|
-
update(params: Params$Resource$Accounts$Containers$Versions$Update, options: StreamMethodOptions):
|
|
2504
|
-
update(params?: Params$Resource$Accounts$Containers$Versions$Update, options?: MethodOptions):
|
|
2487
|
+
update(params: Params$Resource$Accounts$Containers$Versions$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2488
|
+
update(params?: Params$Resource$Accounts$Containers$Versions$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ContainerVersion>>;
|
|
2505
2489
|
update(params: Params$Resource$Accounts$Containers$Versions$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2506
2490
|
update(params: Params$Resource$Accounts$Containers$Versions$Update, options: MethodOptions | BodyResponseCallback<Schema$ContainerVersion>, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
2507
2491
|
update(params: Params$Resource$Accounts$Containers$Versions$Update, callback: BodyResponseCallback<Schema$ContainerVersion>): void;
|
|
@@ -2576,8 +2560,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2576
2560
|
* @param callback - Optional callback that handles the response.
|
|
2577
2561
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2578
2562
|
*/
|
|
2579
|
-
latest(params: Params$Resource$Accounts$Containers$Version_headers$Latest, options: StreamMethodOptions):
|
|
2580
|
-
latest(params?: Params$Resource$Accounts$Containers$Version_headers$Latest, options?: MethodOptions):
|
|
2563
|
+
latest(params: Params$Resource$Accounts$Containers$Version_headers$Latest, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2564
|
+
latest(params?: Params$Resource$Accounts$Containers$Version_headers$Latest, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ContainerVersionHeader>>;
|
|
2581
2565
|
latest(params: Params$Resource$Accounts$Containers$Version_headers$Latest, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2582
2566
|
latest(params: Params$Resource$Accounts$Containers$Version_headers$Latest, options: MethodOptions | BodyResponseCallback<Schema$ContainerVersionHeader>, callback: BodyResponseCallback<Schema$ContainerVersionHeader>): void;
|
|
2583
2567
|
latest(params: Params$Resource$Accounts$Containers$Version_headers$Latest, callback: BodyResponseCallback<Schema$ContainerVersionHeader>): void;
|
|
@@ -2590,8 +2574,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2590
2574
|
* @param callback - Optional callback that handles the response.
|
|
2591
2575
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2592
2576
|
*/
|
|
2593
|
-
list(params: Params$Resource$Accounts$Containers$Version_headers$List, options: StreamMethodOptions):
|
|
2594
|
-
list(params?: Params$Resource$Accounts$Containers$Version_headers$List, options?: MethodOptions):
|
|
2577
|
+
list(params: Params$Resource$Accounts$Containers$Version_headers$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2578
|
+
list(params?: Params$Resource$Accounts$Containers$Version_headers$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListContainerVersionsResponse>>;
|
|
2595
2579
|
list(params: Params$Resource$Accounts$Containers$Version_headers$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2596
2580
|
list(params: Params$Resource$Accounts$Containers$Version_headers$List, options: MethodOptions | BodyResponseCallback<Schema$ListContainerVersionsResponse>, callback: BodyResponseCallback<Schema$ListContainerVersionsResponse>): void;
|
|
2597
2581
|
list(params: Params$Resource$Accounts$Containers$Version_headers$List, callback: BodyResponseCallback<Schema$ListContainerVersionsResponse>): void;
|
|
@@ -2638,8 +2622,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2638
2622
|
* @param callback - Optional callback that handles the response.
|
|
2639
2623
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2640
2624
|
*/
|
|
2641
|
-
create(params: Params$Resource$Accounts$Containers$Workspaces$Create, options: StreamMethodOptions):
|
|
2642
|
-
create(params?: Params$Resource$Accounts$Containers$Workspaces$Create, options?: MethodOptions):
|
|
2625
|
+
create(params: Params$Resource$Accounts$Containers$Workspaces$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2626
|
+
create(params?: Params$Resource$Accounts$Containers$Workspaces$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Workspace>>;
|
|
2643
2627
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2644
2628
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Create, options: MethodOptions | BodyResponseCallback<Schema$Workspace>, callback: BodyResponseCallback<Schema$Workspace>): void;
|
|
2645
2629
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Create, callback: BodyResponseCallback<Schema$Workspace>): void;
|
|
@@ -2652,8 +2636,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2652
2636
|
* @param callback - Optional callback that handles the response.
|
|
2653
2637
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2654
2638
|
*/
|
|
2655
|
-
create_version(params: Params$Resource$Accounts$Containers$Workspaces$Create_version, options: StreamMethodOptions):
|
|
2656
|
-
create_version(params?: Params$Resource$Accounts$Containers$Workspaces$Create_version, options?: MethodOptions):
|
|
2639
|
+
create_version(params: Params$Resource$Accounts$Containers$Workspaces$Create_version, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2640
|
+
create_version(params?: Params$Resource$Accounts$Containers$Workspaces$Create_version, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$CreateContainerVersionResponse>>;
|
|
2657
2641
|
create_version(params: Params$Resource$Accounts$Containers$Workspaces$Create_version, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2658
2642
|
create_version(params: Params$Resource$Accounts$Containers$Workspaces$Create_version, options: MethodOptions | BodyResponseCallback<Schema$CreateContainerVersionResponse>, callback: BodyResponseCallback<Schema$CreateContainerVersionResponse>): void;
|
|
2659
2643
|
create_version(params: Params$Resource$Accounts$Containers$Workspaces$Create_version, callback: BodyResponseCallback<Schema$CreateContainerVersionResponse>): void;
|
|
@@ -2666,8 +2650,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2666
2650
|
* @param callback - Optional callback that handles the response.
|
|
2667
2651
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2668
2652
|
*/
|
|
2669
|
-
delete(params: Params$Resource$Accounts$Containers$Workspaces$Delete, options: StreamMethodOptions):
|
|
2670
|
-
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Delete, options?: MethodOptions):
|
|
2653
|
+
delete(params: Params$Resource$Accounts$Containers$Workspaces$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2654
|
+
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
2671
2655
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2672
2656
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
2673
2657
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -2680,8 +2664,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2680
2664
|
* @param callback - Optional callback that handles the response.
|
|
2681
2665
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2682
2666
|
*/
|
|
2683
|
-
get(params: Params$Resource$Accounts$Containers$Workspaces$Get, options: StreamMethodOptions):
|
|
2684
|
-
get(params?: Params$Resource$Accounts$Containers$Workspaces$Get, options?: MethodOptions):
|
|
2667
|
+
get(params: Params$Resource$Accounts$Containers$Workspaces$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2668
|
+
get(params?: Params$Resource$Accounts$Containers$Workspaces$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Workspace>>;
|
|
2685
2669
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2686
2670
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Get, options: MethodOptions | BodyResponseCallback<Schema$Workspace>, callback: BodyResponseCallback<Schema$Workspace>): void;
|
|
2687
2671
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Get, callback: BodyResponseCallback<Schema$Workspace>): void;
|
|
@@ -2694,8 +2678,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2694
2678
|
* @param callback - Optional callback that handles the response.
|
|
2695
2679
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2696
2680
|
*/
|
|
2697
|
-
getStatus(params: Params$Resource$Accounts$Containers$Workspaces$Getstatus, options: StreamMethodOptions):
|
|
2698
|
-
getStatus(params?: Params$Resource$Accounts$Containers$Workspaces$Getstatus, options?: MethodOptions):
|
|
2681
|
+
getStatus(params: Params$Resource$Accounts$Containers$Workspaces$Getstatus, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2682
|
+
getStatus(params?: Params$Resource$Accounts$Containers$Workspaces$Getstatus, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$GetWorkspaceStatusResponse>>;
|
|
2699
2683
|
getStatus(params: Params$Resource$Accounts$Containers$Workspaces$Getstatus, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2700
2684
|
getStatus(params: Params$Resource$Accounts$Containers$Workspaces$Getstatus, options: MethodOptions | BodyResponseCallback<Schema$GetWorkspaceStatusResponse>, callback: BodyResponseCallback<Schema$GetWorkspaceStatusResponse>): void;
|
|
2701
2685
|
getStatus(params: Params$Resource$Accounts$Containers$Workspaces$Getstatus, callback: BodyResponseCallback<Schema$GetWorkspaceStatusResponse>): void;
|
|
@@ -2708,8 +2692,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2708
2692
|
* @param callback - Optional callback that handles the response.
|
|
2709
2693
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2710
2694
|
*/
|
|
2711
|
-
list(params: Params$Resource$Accounts$Containers$Workspaces$List, options: StreamMethodOptions):
|
|
2712
|
-
list(params?: Params$Resource$Accounts$Containers$Workspaces$List, options?: MethodOptions):
|
|
2695
|
+
list(params: Params$Resource$Accounts$Containers$Workspaces$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2696
|
+
list(params?: Params$Resource$Accounts$Containers$Workspaces$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListWorkspacesResponse>>;
|
|
2713
2697
|
list(params: Params$Resource$Accounts$Containers$Workspaces$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2714
2698
|
list(params: Params$Resource$Accounts$Containers$Workspaces$List, options: MethodOptions | BodyResponseCallback<Schema$ListWorkspacesResponse>, callback: BodyResponseCallback<Schema$ListWorkspacesResponse>): void;
|
|
2715
2699
|
list(params: Params$Resource$Accounts$Containers$Workspaces$List, callback: BodyResponseCallback<Schema$ListWorkspacesResponse>): void;
|
|
@@ -2722,8 +2706,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2722
2706
|
* @param callback - Optional callback that handles the response.
|
|
2723
2707
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2724
2708
|
*/
|
|
2725
|
-
quick_preview(params: Params$Resource$Accounts$Containers$Workspaces$Quick_preview, options: StreamMethodOptions):
|
|
2726
|
-
quick_preview(params?: Params$Resource$Accounts$Containers$Workspaces$Quick_preview, options?: MethodOptions):
|
|
2709
|
+
quick_preview(params: Params$Resource$Accounts$Containers$Workspaces$Quick_preview, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2710
|
+
quick_preview(params?: Params$Resource$Accounts$Containers$Workspaces$Quick_preview, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$QuickPreviewResponse>>;
|
|
2727
2711
|
quick_preview(params: Params$Resource$Accounts$Containers$Workspaces$Quick_preview, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2728
2712
|
quick_preview(params: Params$Resource$Accounts$Containers$Workspaces$Quick_preview, options: MethodOptions | BodyResponseCallback<Schema$QuickPreviewResponse>, callback: BodyResponseCallback<Schema$QuickPreviewResponse>): void;
|
|
2729
2713
|
quick_preview(params: Params$Resource$Accounts$Containers$Workspaces$Quick_preview, callback: BodyResponseCallback<Schema$QuickPreviewResponse>): void;
|
|
@@ -2736,8 +2720,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2736
2720
|
* @param callback - Optional callback that handles the response.
|
|
2737
2721
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2738
2722
|
*/
|
|
2739
|
-
resolve_conflict(params: Params$Resource$Accounts$Containers$Workspaces$Resolve_conflict, options: StreamMethodOptions):
|
|
2740
|
-
resolve_conflict(params?: Params$Resource$Accounts$Containers$Workspaces$Resolve_conflict, options?: MethodOptions):
|
|
2723
|
+
resolve_conflict(params: Params$Resource$Accounts$Containers$Workspaces$Resolve_conflict, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2724
|
+
resolve_conflict(params?: Params$Resource$Accounts$Containers$Workspaces$Resolve_conflict, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
2741
2725
|
resolve_conflict(params: Params$Resource$Accounts$Containers$Workspaces$Resolve_conflict, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2742
2726
|
resolve_conflict(params: Params$Resource$Accounts$Containers$Workspaces$Resolve_conflict, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
2743
2727
|
resolve_conflict(params: Params$Resource$Accounts$Containers$Workspaces$Resolve_conflict, callback: BodyResponseCallback<void>): void;
|
|
@@ -2750,8 +2734,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2750
2734
|
* @param callback - Optional callback that handles the response.
|
|
2751
2735
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2752
2736
|
*/
|
|
2753
|
-
sync(params: Params$Resource$Accounts$Containers$Workspaces$Sync, options: StreamMethodOptions):
|
|
2754
|
-
sync(params?: Params$Resource$Accounts$Containers$Workspaces$Sync, options?: MethodOptions):
|
|
2737
|
+
sync(params: Params$Resource$Accounts$Containers$Workspaces$Sync, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2738
|
+
sync(params?: Params$Resource$Accounts$Containers$Workspaces$Sync, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$SyncWorkspaceResponse>>;
|
|
2755
2739
|
sync(params: Params$Resource$Accounts$Containers$Workspaces$Sync, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2756
2740
|
sync(params: Params$Resource$Accounts$Containers$Workspaces$Sync, options: MethodOptions | BodyResponseCallback<Schema$SyncWorkspaceResponse>, callback: BodyResponseCallback<Schema$SyncWorkspaceResponse>): void;
|
|
2757
2741
|
sync(params: Params$Resource$Accounts$Containers$Workspaces$Sync, callback: BodyResponseCallback<Schema$SyncWorkspaceResponse>): void;
|
|
@@ -2764,8 +2748,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2764
2748
|
* @param callback - Optional callback that handles the response.
|
|
2765
2749
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2766
2750
|
*/
|
|
2767
|
-
update(params: Params$Resource$Accounts$Containers$Workspaces$Update, options: StreamMethodOptions):
|
|
2768
|
-
update(params?: Params$Resource$Accounts$Containers$Workspaces$Update, options?: MethodOptions):
|
|
2751
|
+
update(params: Params$Resource$Accounts$Containers$Workspaces$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2752
|
+
update(params?: Params$Resource$Accounts$Containers$Workspaces$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Workspace>>;
|
|
2769
2753
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2770
2754
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Update, options: MethodOptions | BodyResponseCallback<Schema$Workspace>, callback: BodyResponseCallback<Schema$Workspace>): void;
|
|
2771
2755
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Update, callback: BodyResponseCallback<Schema$Workspace>): void;
|
|
@@ -2870,8 +2854,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2870
2854
|
* @param callback - Optional callback that handles the response.
|
|
2871
2855
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2872
2856
|
*/
|
|
2873
|
-
create(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create, options: StreamMethodOptions):
|
|
2874
|
-
create(params?: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create, options?: MethodOptions):
|
|
2857
|
+
create(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2858
|
+
create(params?: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$CreateBuiltInVariableResponse>>;
|
|
2875
2859
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2876
2860
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create, options: MethodOptions | BodyResponseCallback<Schema$CreateBuiltInVariableResponse>, callback: BodyResponseCallback<Schema$CreateBuiltInVariableResponse>): void;
|
|
2877
2861
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Create, callback: BodyResponseCallback<Schema$CreateBuiltInVariableResponse>): void;
|
|
@@ -2884,8 +2868,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2884
2868
|
* @param callback - Optional callback that handles the response.
|
|
2885
2869
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2886
2870
|
*/
|
|
2887
|
-
delete(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete, options: StreamMethodOptions):
|
|
2888
|
-
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete, options?: MethodOptions):
|
|
2871
|
+
delete(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2872
|
+
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
2889
2873
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2890
2874
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
2891
2875
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -2898,8 +2882,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2898
2882
|
* @param callback - Optional callback that handles the response.
|
|
2899
2883
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2900
2884
|
*/
|
|
2901
|
-
list(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$List, options: StreamMethodOptions):
|
|
2902
|
-
list(params?: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$List, options?: MethodOptions):
|
|
2885
|
+
list(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2886
|
+
list(params?: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListEnabledBuiltInVariablesResponse>>;
|
|
2903
2887
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2904
2888
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$List, options: MethodOptions | BodyResponseCallback<Schema$ListEnabledBuiltInVariablesResponse>, callback: BodyResponseCallback<Schema$ListEnabledBuiltInVariablesResponse>): void;
|
|
2905
2889
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$List, callback: BodyResponseCallback<Schema$ListEnabledBuiltInVariablesResponse>): void;
|
|
@@ -2912,8 +2896,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2912
2896
|
* @param callback - Optional callback that handles the response.
|
|
2913
2897
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2914
2898
|
*/
|
|
2915
|
-
revert(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert, options: StreamMethodOptions):
|
|
2916
|
-
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert, options?: MethodOptions):
|
|
2899
|
+
revert(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2900
|
+
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$RevertBuiltInVariableResponse>>;
|
|
2917
2901
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2918
2902
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert, options: MethodOptions | BodyResponseCallback<Schema$RevertBuiltInVariableResponse>, callback: BodyResponseCallback<Schema$RevertBuiltInVariableResponse>): void;
|
|
2919
2903
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Built_in_variables$Revert, callback: BodyResponseCallback<Schema$RevertBuiltInVariableResponse>): void;
|
|
@@ -2970,8 +2954,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2970
2954
|
* @param callback - Optional callback that handles the response.
|
|
2971
2955
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2972
2956
|
*/
|
|
2973
|
-
create(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Create, options: StreamMethodOptions):
|
|
2974
|
-
create(params?: Params$Resource$Accounts$Containers$Workspaces$Clients$Create, options?: MethodOptions):
|
|
2957
|
+
create(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2958
|
+
create(params?: Params$Resource$Accounts$Containers$Workspaces$Clients$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Client>>;
|
|
2975
2959
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2976
2960
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Create, options: MethodOptions | BodyResponseCallback<Schema$Client>, callback: BodyResponseCallback<Schema$Client>): void;
|
|
2977
2961
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Create, callback: BodyResponseCallback<Schema$Client>): void;
|
|
@@ -2984,8 +2968,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2984
2968
|
* @param callback - Optional callback that handles the response.
|
|
2985
2969
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
2986
2970
|
*/
|
|
2987
|
-
delete(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Delete, options: StreamMethodOptions):
|
|
2988
|
-
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Clients$Delete, options?: MethodOptions):
|
|
2971
|
+
delete(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2972
|
+
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Clients$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
2989
2973
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
2990
2974
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
2991
2975
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -2998,8 +2982,8 @@ export declare namespace tagmanager_v2 {
|
|
|
2998
2982
|
* @param callback - Optional callback that handles the response.
|
|
2999
2983
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3000
2984
|
*/
|
|
3001
|
-
get(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Get, options: StreamMethodOptions):
|
|
3002
|
-
get(params?: Params$Resource$Accounts$Containers$Workspaces$Clients$Get, options?: MethodOptions):
|
|
2985
|
+
get(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
2986
|
+
get(params?: Params$Resource$Accounts$Containers$Workspaces$Clients$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Client>>;
|
|
3003
2987
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3004
2988
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Get, options: MethodOptions | BodyResponseCallback<Schema$Client>, callback: BodyResponseCallback<Schema$Client>): void;
|
|
3005
2989
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Get, callback: BodyResponseCallback<Schema$Client>): void;
|
|
@@ -3012,8 +2996,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3012
2996
|
* @param callback - Optional callback that handles the response.
|
|
3013
2997
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3014
2998
|
*/
|
|
3015
|
-
list(params: Params$Resource$Accounts$Containers$Workspaces$Clients$List, options: StreamMethodOptions):
|
|
3016
|
-
list(params?: Params$Resource$Accounts$Containers$Workspaces$Clients$List, options?: MethodOptions):
|
|
2999
|
+
list(params: Params$Resource$Accounts$Containers$Workspaces$Clients$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3000
|
+
list(params?: Params$Resource$Accounts$Containers$Workspaces$Clients$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListClientsResponse>>;
|
|
3017
3001
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Clients$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3018
3002
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Clients$List, options: MethodOptions | BodyResponseCallback<Schema$ListClientsResponse>, callback: BodyResponseCallback<Schema$ListClientsResponse>): void;
|
|
3019
3003
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Clients$List, callback: BodyResponseCallback<Schema$ListClientsResponse>): void;
|
|
@@ -3026,8 +3010,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3026
3010
|
* @param callback - Optional callback that handles the response.
|
|
3027
3011
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3028
3012
|
*/
|
|
3029
|
-
revert(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Revert, options: StreamMethodOptions):
|
|
3030
|
-
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Clients$Revert, options?: MethodOptions):
|
|
3013
|
+
revert(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Revert, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3014
|
+
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Clients$Revert, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$RevertClientResponse>>;
|
|
3031
3015
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Revert, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3032
3016
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Revert, options: MethodOptions | BodyResponseCallback<Schema$RevertClientResponse>, callback: BodyResponseCallback<Schema$RevertClientResponse>): void;
|
|
3033
3017
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Revert, callback: BodyResponseCallback<Schema$RevertClientResponse>): void;
|
|
@@ -3040,8 +3024,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3040
3024
|
* @param callback - Optional callback that handles the response.
|
|
3041
3025
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3042
3026
|
*/
|
|
3043
|
-
update(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Update, options: StreamMethodOptions):
|
|
3044
|
-
update(params?: Params$Resource$Accounts$Containers$Workspaces$Clients$Update, options?: MethodOptions):
|
|
3027
|
+
update(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3028
|
+
update(params?: Params$Resource$Accounts$Containers$Workspaces$Clients$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Client>>;
|
|
3045
3029
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3046
3030
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Update, options: MethodOptions | BodyResponseCallback<Schema$Client>, callback: BodyResponseCallback<Schema$Client>): void;
|
|
3047
3031
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Clients$Update, callback: BodyResponseCallback<Schema$Client>): void;
|
|
@@ -3114,8 +3098,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3114
3098
|
* @param callback - Optional callback that handles the response.
|
|
3115
3099
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3116
3100
|
*/
|
|
3117
|
-
create(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Create, options: StreamMethodOptions):
|
|
3118
|
-
create(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Create, options?: MethodOptions):
|
|
3101
|
+
create(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3102
|
+
create(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Folder>>;
|
|
3119
3103
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3120
3104
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Create, options: MethodOptions | BodyResponseCallback<Schema$Folder>, callback: BodyResponseCallback<Schema$Folder>): void;
|
|
3121
3105
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Create, callback: BodyResponseCallback<Schema$Folder>): void;
|
|
@@ -3128,8 +3112,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3128
3112
|
* @param callback - Optional callback that handles the response.
|
|
3129
3113
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3130
3114
|
*/
|
|
3131
|
-
delete(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Delete, options: StreamMethodOptions):
|
|
3132
|
-
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Delete, options?: MethodOptions):
|
|
3115
|
+
delete(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3116
|
+
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
3133
3117
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3134
3118
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
3135
3119
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -3142,8 +3126,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3142
3126
|
* @param callback - Optional callback that handles the response.
|
|
3143
3127
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3144
3128
|
*/
|
|
3145
|
-
entities(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Entities, options: StreamMethodOptions):
|
|
3146
|
-
entities(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Entities, options?: MethodOptions):
|
|
3129
|
+
entities(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Entities, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3130
|
+
entities(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Entities, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$FolderEntities>>;
|
|
3147
3131
|
entities(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Entities, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3148
3132
|
entities(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Entities, options: MethodOptions | BodyResponseCallback<Schema$FolderEntities>, callback: BodyResponseCallback<Schema$FolderEntities>): void;
|
|
3149
3133
|
entities(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Entities, callback: BodyResponseCallback<Schema$FolderEntities>): void;
|
|
@@ -3156,8 +3140,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3156
3140
|
* @param callback - Optional callback that handles the response.
|
|
3157
3141
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3158
3142
|
*/
|
|
3159
|
-
get(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Get, options: StreamMethodOptions):
|
|
3160
|
-
get(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Get, options?: MethodOptions):
|
|
3143
|
+
get(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3144
|
+
get(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Folder>>;
|
|
3161
3145
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3162
3146
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Get, options: MethodOptions | BodyResponseCallback<Schema$Folder>, callback: BodyResponseCallback<Schema$Folder>): void;
|
|
3163
3147
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Get, callback: BodyResponseCallback<Schema$Folder>): void;
|
|
@@ -3170,8 +3154,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3170
3154
|
* @param callback - Optional callback that handles the response.
|
|
3171
3155
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3172
3156
|
*/
|
|
3173
|
-
list(params: Params$Resource$Accounts$Containers$Workspaces$Folders$List, options: StreamMethodOptions):
|
|
3174
|
-
list(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$List, options?: MethodOptions):
|
|
3157
|
+
list(params: Params$Resource$Accounts$Containers$Workspaces$Folders$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3158
|
+
list(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListFoldersResponse>>;
|
|
3175
3159
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Folders$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3176
3160
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Folders$List, options: MethodOptions | BodyResponseCallback<Schema$ListFoldersResponse>, callback: BodyResponseCallback<Schema$ListFoldersResponse>): void;
|
|
3177
3161
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Folders$List, callback: BodyResponseCallback<Schema$ListFoldersResponse>): void;
|
|
@@ -3184,8 +3168,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3184
3168
|
* @param callback - Optional callback that handles the response.
|
|
3185
3169
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3186
3170
|
*/
|
|
3187
|
-
move_entities_to_folder(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder, options: StreamMethodOptions):
|
|
3188
|
-
move_entities_to_folder(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder, options?: MethodOptions):
|
|
3171
|
+
move_entities_to_folder(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3172
|
+
move_entities_to_folder(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
3189
3173
|
move_entities_to_folder(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3190
3174
|
move_entities_to_folder(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
3191
3175
|
move_entities_to_folder(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Move_entities_to_folder, callback: BodyResponseCallback<void>): void;
|
|
@@ -3198,8 +3182,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3198
3182
|
* @param callback - Optional callback that handles the response.
|
|
3199
3183
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3200
3184
|
*/
|
|
3201
|
-
revert(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Revert, options: StreamMethodOptions):
|
|
3202
|
-
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Revert, options?: MethodOptions):
|
|
3185
|
+
revert(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Revert, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3186
|
+
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Revert, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$RevertFolderResponse>>;
|
|
3203
3187
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Revert, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3204
3188
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Revert, options: MethodOptions | BodyResponseCallback<Schema$RevertFolderResponse>, callback: BodyResponseCallback<Schema$RevertFolderResponse>): void;
|
|
3205
3189
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Revert, callback: BodyResponseCallback<Schema$RevertFolderResponse>): void;
|
|
@@ -3212,8 +3196,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3212
3196
|
* @param callback - Optional callback that handles the response.
|
|
3213
3197
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3214
3198
|
*/
|
|
3215
|
-
update(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Update, options: StreamMethodOptions):
|
|
3216
|
-
update(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Update, options?: MethodOptions):
|
|
3199
|
+
update(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3200
|
+
update(params?: Params$Resource$Accounts$Containers$Workspaces$Folders$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Folder>>;
|
|
3217
3201
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3218
3202
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Update, options: MethodOptions | BodyResponseCallback<Schema$Folder>, callback: BodyResponseCallback<Schema$Folder>): void;
|
|
3219
3203
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Folders$Update, callback: BodyResponseCallback<Schema$Folder>): void;
|
|
@@ -3318,8 +3302,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3318
3302
|
* @param callback - Optional callback that handles the response.
|
|
3319
3303
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3320
3304
|
*/
|
|
3321
|
-
create(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create, options: StreamMethodOptions):
|
|
3322
|
-
create(params?: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create, options?: MethodOptions):
|
|
3305
|
+
create(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3306
|
+
create(params?: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$GtagConfig>>;
|
|
3323
3307
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3324
3308
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create, options: MethodOptions | BodyResponseCallback<Schema$GtagConfig>, callback: BodyResponseCallback<Schema$GtagConfig>): void;
|
|
3325
3309
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Create, callback: BodyResponseCallback<Schema$GtagConfig>): void;
|
|
@@ -3332,8 +3316,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3332
3316
|
* @param callback - Optional callback that handles the response.
|
|
3333
3317
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3334
3318
|
*/
|
|
3335
|
-
delete(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete, options: StreamMethodOptions):
|
|
3336
|
-
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete, options?: MethodOptions):
|
|
3319
|
+
delete(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3320
|
+
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
3337
3321
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3338
3322
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
3339
3323
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -3346,8 +3330,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3346
3330
|
* @param callback - Optional callback that handles the response.
|
|
3347
3331
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3348
3332
|
*/
|
|
3349
|
-
get(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get, options: StreamMethodOptions):
|
|
3350
|
-
get(params?: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get, options?: MethodOptions):
|
|
3333
|
+
get(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3334
|
+
get(params?: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$GtagConfig>>;
|
|
3351
3335
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3352
3336
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get, options: MethodOptions | BodyResponseCallback<Schema$GtagConfig>, callback: BodyResponseCallback<Schema$GtagConfig>): void;
|
|
3353
3337
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Get, callback: BodyResponseCallback<Schema$GtagConfig>): void;
|
|
@@ -3360,8 +3344,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3360
3344
|
* @param callback - Optional callback that handles the response.
|
|
3361
3345
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3362
3346
|
*/
|
|
3363
|
-
list(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$List, options: StreamMethodOptions):
|
|
3364
|
-
list(params?: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$List, options?: MethodOptions):
|
|
3347
|
+
list(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3348
|
+
list(params?: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListGtagConfigResponse>>;
|
|
3365
3349
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3366
3350
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$List, options: MethodOptions | BodyResponseCallback<Schema$ListGtagConfigResponse>, callback: BodyResponseCallback<Schema$ListGtagConfigResponse>): void;
|
|
3367
3351
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$List, callback: BodyResponseCallback<Schema$ListGtagConfigResponse>): void;
|
|
@@ -3374,8 +3358,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3374
3358
|
* @param callback - Optional callback that handles the response.
|
|
3375
3359
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3376
3360
|
*/
|
|
3377
|
-
update(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Update, options: StreamMethodOptions):
|
|
3378
|
-
update(params?: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Update, options?: MethodOptions):
|
|
3361
|
+
update(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3362
|
+
update(params?: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$GtagConfig>>;
|
|
3379
3363
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3380
3364
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Update, options: MethodOptions | BodyResponseCallback<Schema$GtagConfig>, callback: BodyResponseCallback<Schema$GtagConfig>): void;
|
|
3381
3365
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Gtag_config$Update, callback: BodyResponseCallback<Schema$GtagConfig>): void;
|
|
@@ -3438,8 +3422,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3438
3422
|
* @param callback - Optional callback that handles the response.
|
|
3439
3423
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3440
3424
|
*/
|
|
3441
|
-
create(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Create, options: StreamMethodOptions):
|
|
3442
|
-
create(params?: Params$Resource$Accounts$Containers$Workspaces$Tags$Create, options?: MethodOptions):
|
|
3425
|
+
create(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3426
|
+
create(params?: Params$Resource$Accounts$Containers$Workspaces$Tags$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Tag>>;
|
|
3443
3427
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3444
3428
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Create, options: MethodOptions | BodyResponseCallback<Schema$Tag>, callback: BodyResponseCallback<Schema$Tag>): void;
|
|
3445
3429
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Create, callback: BodyResponseCallback<Schema$Tag>): void;
|
|
@@ -3452,8 +3436,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3452
3436
|
* @param callback - Optional callback that handles the response.
|
|
3453
3437
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3454
3438
|
*/
|
|
3455
|
-
delete(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Delete, options: StreamMethodOptions):
|
|
3456
|
-
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Tags$Delete, options?: MethodOptions):
|
|
3439
|
+
delete(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3440
|
+
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Tags$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
3457
3441
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3458
3442
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
3459
3443
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -3466,8 +3450,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3466
3450
|
* @param callback - Optional callback that handles the response.
|
|
3467
3451
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3468
3452
|
*/
|
|
3469
|
-
get(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Get, options: StreamMethodOptions):
|
|
3470
|
-
get(params?: Params$Resource$Accounts$Containers$Workspaces$Tags$Get, options?: MethodOptions):
|
|
3453
|
+
get(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3454
|
+
get(params?: Params$Resource$Accounts$Containers$Workspaces$Tags$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Tag>>;
|
|
3471
3455
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3472
3456
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Get, options: MethodOptions | BodyResponseCallback<Schema$Tag>, callback: BodyResponseCallback<Schema$Tag>): void;
|
|
3473
3457
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Get, callback: BodyResponseCallback<Schema$Tag>): void;
|
|
@@ -3480,8 +3464,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3480
3464
|
* @param callback - Optional callback that handles the response.
|
|
3481
3465
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3482
3466
|
*/
|
|
3483
|
-
list(params: Params$Resource$Accounts$Containers$Workspaces$Tags$List, options: StreamMethodOptions):
|
|
3484
|
-
list(params?: Params$Resource$Accounts$Containers$Workspaces$Tags$List, options?: MethodOptions):
|
|
3467
|
+
list(params: Params$Resource$Accounts$Containers$Workspaces$Tags$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3468
|
+
list(params?: Params$Resource$Accounts$Containers$Workspaces$Tags$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListTagsResponse>>;
|
|
3485
3469
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Tags$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3486
3470
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Tags$List, options: MethodOptions | BodyResponseCallback<Schema$ListTagsResponse>, callback: BodyResponseCallback<Schema$ListTagsResponse>): void;
|
|
3487
3471
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Tags$List, callback: BodyResponseCallback<Schema$ListTagsResponse>): void;
|
|
@@ -3494,8 +3478,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3494
3478
|
* @param callback - Optional callback that handles the response.
|
|
3495
3479
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3496
3480
|
*/
|
|
3497
|
-
revert(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Revert, options: StreamMethodOptions):
|
|
3498
|
-
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Tags$Revert, options?: MethodOptions):
|
|
3481
|
+
revert(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Revert, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3482
|
+
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Tags$Revert, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$RevertTagResponse>>;
|
|
3499
3483
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Revert, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3500
3484
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Revert, options: MethodOptions | BodyResponseCallback<Schema$RevertTagResponse>, callback: BodyResponseCallback<Schema$RevertTagResponse>): void;
|
|
3501
3485
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Revert, callback: BodyResponseCallback<Schema$RevertTagResponse>): void;
|
|
@@ -3508,8 +3492,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3508
3492
|
* @param callback - Optional callback that handles the response.
|
|
3509
3493
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3510
3494
|
*/
|
|
3511
|
-
update(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Update, options: StreamMethodOptions):
|
|
3512
|
-
update(params?: Params$Resource$Accounts$Containers$Workspaces$Tags$Update, options?: MethodOptions):
|
|
3495
|
+
update(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3496
|
+
update(params?: Params$Resource$Accounts$Containers$Workspaces$Tags$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Tag>>;
|
|
3513
3497
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3514
3498
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Update, options: MethodOptions | BodyResponseCallback<Schema$Tag>, callback: BodyResponseCallback<Schema$Tag>): void;
|
|
3515
3499
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Tags$Update, callback: BodyResponseCallback<Schema$Tag>): void;
|
|
@@ -3582,8 +3566,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3582
3566
|
* @param callback - Optional callback that handles the response.
|
|
3583
3567
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3584
3568
|
*/
|
|
3585
|
-
create(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Create, options: StreamMethodOptions):
|
|
3586
|
-
create(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Create, options?: MethodOptions):
|
|
3569
|
+
create(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3570
|
+
create(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$CustomTemplate>>;
|
|
3587
3571
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3588
3572
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Create, options: MethodOptions | BodyResponseCallback<Schema$CustomTemplate>, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
3589
3573
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Create, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
@@ -3596,8 +3580,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3596
3580
|
* @param callback - Optional callback that handles the response.
|
|
3597
3581
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3598
3582
|
*/
|
|
3599
|
-
delete(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Delete, options: StreamMethodOptions):
|
|
3600
|
-
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Delete, options?: MethodOptions):
|
|
3583
|
+
delete(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3584
|
+
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
3601
3585
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3602
3586
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
3603
3587
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -3610,8 +3594,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3610
3594
|
* @param callback - Optional callback that handles the response.
|
|
3611
3595
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3612
3596
|
*/
|
|
3613
|
-
get(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Get, options: StreamMethodOptions):
|
|
3614
|
-
get(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Get, options?: MethodOptions):
|
|
3597
|
+
get(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3598
|
+
get(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$CustomTemplate>>;
|
|
3615
3599
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3616
3600
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Get, options: MethodOptions | BodyResponseCallback<Schema$CustomTemplate>, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
3617
3601
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Get, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
@@ -3624,8 +3608,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3624
3608
|
* @param callback - Optional callback that handles the response.
|
|
3625
3609
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3626
3610
|
*/
|
|
3627
|
-
import_from_gallery(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery, options: StreamMethodOptions):
|
|
3628
|
-
import_from_gallery(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery, options?: MethodOptions):
|
|
3611
|
+
import_from_gallery(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3612
|
+
import_from_gallery(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$CustomTemplate>>;
|
|
3629
3613
|
import_from_gallery(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3630
3614
|
import_from_gallery(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery, options: MethodOptions | BodyResponseCallback<Schema$CustomTemplate>, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
3631
3615
|
import_from_gallery(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Import_from_gallery, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
@@ -3638,8 +3622,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3638
3622
|
* @param callback - Optional callback that handles the response.
|
|
3639
3623
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3640
3624
|
*/
|
|
3641
|
-
list(params: Params$Resource$Accounts$Containers$Workspaces$Templates$List, options: StreamMethodOptions):
|
|
3642
|
-
list(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$List, options?: MethodOptions):
|
|
3625
|
+
list(params: Params$Resource$Accounts$Containers$Workspaces$Templates$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3626
|
+
list(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListTemplatesResponse>>;
|
|
3643
3627
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Templates$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3644
3628
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Templates$List, options: MethodOptions | BodyResponseCallback<Schema$ListTemplatesResponse>, callback: BodyResponseCallback<Schema$ListTemplatesResponse>): void;
|
|
3645
3629
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Templates$List, callback: BodyResponseCallback<Schema$ListTemplatesResponse>): void;
|
|
@@ -3652,8 +3636,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3652
3636
|
* @param callback - Optional callback that handles the response.
|
|
3653
3637
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3654
3638
|
*/
|
|
3655
|
-
revert(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Revert, options: StreamMethodOptions):
|
|
3656
|
-
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Revert, options?: MethodOptions):
|
|
3639
|
+
revert(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Revert, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3640
|
+
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Revert, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$RevertTemplateResponse>>;
|
|
3657
3641
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Revert, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3658
3642
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Revert, options: MethodOptions | BodyResponseCallback<Schema$RevertTemplateResponse>, callback: BodyResponseCallback<Schema$RevertTemplateResponse>): void;
|
|
3659
3643
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Revert, callback: BodyResponseCallback<Schema$RevertTemplateResponse>): void;
|
|
@@ -3666,8 +3650,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3666
3650
|
* @param callback - Optional callback that handles the response.
|
|
3667
3651
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3668
3652
|
*/
|
|
3669
|
-
update(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Update, options: StreamMethodOptions):
|
|
3670
|
-
update(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Update, options?: MethodOptions):
|
|
3653
|
+
update(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3654
|
+
update(params?: Params$Resource$Accounts$Containers$Workspaces$Templates$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$CustomTemplate>>;
|
|
3671
3655
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3672
3656
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Update, options: MethodOptions | BodyResponseCallback<Schema$CustomTemplate>, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
3673
3657
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Templates$Update, callback: BodyResponseCallback<Schema$CustomTemplate>): void;
|
|
@@ -3762,8 +3746,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3762
3746
|
* @param callback - Optional callback that handles the response.
|
|
3763
3747
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3764
3748
|
*/
|
|
3765
|
-
create(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Create, options: StreamMethodOptions):
|
|
3766
|
-
create(params?: Params$Resource$Accounts$Containers$Workspaces$Transformations$Create, options?: MethodOptions):
|
|
3749
|
+
create(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3750
|
+
create(params?: Params$Resource$Accounts$Containers$Workspaces$Transformations$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Transformation>>;
|
|
3767
3751
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3768
3752
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Create, options: MethodOptions | BodyResponseCallback<Schema$Transformation>, callback: BodyResponseCallback<Schema$Transformation>): void;
|
|
3769
3753
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Create, callback: BodyResponseCallback<Schema$Transformation>): void;
|
|
@@ -3776,8 +3760,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3776
3760
|
* @param callback - Optional callback that handles the response.
|
|
3777
3761
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3778
3762
|
*/
|
|
3779
|
-
delete(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete, options: StreamMethodOptions):
|
|
3780
|
-
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete, options?: MethodOptions):
|
|
3763
|
+
delete(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3764
|
+
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
3781
3765
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3782
3766
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
3783
3767
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -3790,8 +3774,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3790
3774
|
* @param callback - Optional callback that handles the response.
|
|
3791
3775
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3792
3776
|
*/
|
|
3793
|
-
get(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Get, options: StreamMethodOptions):
|
|
3794
|
-
get(params?: Params$Resource$Accounts$Containers$Workspaces$Transformations$Get, options?: MethodOptions):
|
|
3777
|
+
get(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3778
|
+
get(params?: Params$Resource$Accounts$Containers$Workspaces$Transformations$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Transformation>>;
|
|
3795
3779
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3796
3780
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Get, options: MethodOptions | BodyResponseCallback<Schema$Transformation>, callback: BodyResponseCallback<Schema$Transformation>): void;
|
|
3797
3781
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Get, callback: BodyResponseCallback<Schema$Transformation>): void;
|
|
@@ -3804,8 +3788,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3804
3788
|
* @param callback - Optional callback that handles the response.
|
|
3805
3789
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3806
3790
|
*/
|
|
3807
|
-
list(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$List, options: StreamMethodOptions):
|
|
3808
|
-
list(params?: Params$Resource$Accounts$Containers$Workspaces$Transformations$List, options?: MethodOptions):
|
|
3791
|
+
list(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3792
|
+
list(params?: Params$Resource$Accounts$Containers$Workspaces$Transformations$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListTransformationsResponse>>;
|
|
3809
3793
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3810
3794
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$List, options: MethodOptions | BodyResponseCallback<Schema$ListTransformationsResponse>, callback: BodyResponseCallback<Schema$ListTransformationsResponse>): void;
|
|
3811
3795
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$List, callback: BodyResponseCallback<Schema$ListTransformationsResponse>): void;
|
|
@@ -3818,8 +3802,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3818
3802
|
* @param callback - Optional callback that handles the response.
|
|
3819
3803
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3820
3804
|
*/
|
|
3821
|
-
revert(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Revert, options: StreamMethodOptions):
|
|
3822
|
-
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Transformations$Revert, options?: MethodOptions):
|
|
3805
|
+
revert(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Revert, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3806
|
+
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Transformations$Revert, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$RevertTransformationResponse>>;
|
|
3823
3807
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Revert, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3824
3808
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Revert, options: MethodOptions | BodyResponseCallback<Schema$RevertTransformationResponse>, callback: BodyResponseCallback<Schema$RevertTransformationResponse>): void;
|
|
3825
3809
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Revert, callback: BodyResponseCallback<Schema$RevertTransformationResponse>): void;
|
|
@@ -3832,8 +3816,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3832
3816
|
* @param callback - Optional callback that handles the response.
|
|
3833
3817
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3834
3818
|
*/
|
|
3835
|
-
update(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Update, options: StreamMethodOptions):
|
|
3836
|
-
update(params?: Params$Resource$Accounts$Containers$Workspaces$Transformations$Update, options?: MethodOptions):
|
|
3819
|
+
update(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3820
|
+
update(params?: Params$Resource$Accounts$Containers$Workspaces$Transformations$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Transformation>>;
|
|
3837
3821
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3838
3822
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Update, options: MethodOptions | BodyResponseCallback<Schema$Transformation>, callback: BodyResponseCallback<Schema$Transformation>): void;
|
|
3839
3823
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Transformations$Update, callback: BodyResponseCallback<Schema$Transformation>): void;
|
|
@@ -3906,8 +3890,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3906
3890
|
* @param callback - Optional callback that handles the response.
|
|
3907
3891
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3908
3892
|
*/
|
|
3909
|
-
create(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Create, options: StreamMethodOptions):
|
|
3910
|
-
create(params?: Params$Resource$Accounts$Containers$Workspaces$Triggers$Create, options?: MethodOptions):
|
|
3893
|
+
create(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3894
|
+
create(params?: Params$Resource$Accounts$Containers$Workspaces$Triggers$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Trigger>>;
|
|
3911
3895
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3912
3896
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Create, options: MethodOptions | BodyResponseCallback<Schema$Trigger>, callback: BodyResponseCallback<Schema$Trigger>): void;
|
|
3913
3897
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Create, callback: BodyResponseCallback<Schema$Trigger>): void;
|
|
@@ -3920,8 +3904,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3920
3904
|
* @param callback - Optional callback that handles the response.
|
|
3921
3905
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3922
3906
|
*/
|
|
3923
|
-
delete(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete, options: StreamMethodOptions):
|
|
3924
|
-
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete, options?: MethodOptions):
|
|
3907
|
+
delete(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3908
|
+
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
3925
3909
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3926
3910
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
3927
3911
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -3934,8 +3918,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3934
3918
|
* @param callback - Optional callback that handles the response.
|
|
3935
3919
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3936
3920
|
*/
|
|
3937
|
-
get(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Get, options: StreamMethodOptions):
|
|
3938
|
-
get(params?: Params$Resource$Accounts$Containers$Workspaces$Triggers$Get, options?: MethodOptions):
|
|
3921
|
+
get(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3922
|
+
get(params?: Params$Resource$Accounts$Containers$Workspaces$Triggers$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Trigger>>;
|
|
3939
3923
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3940
3924
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Get, options: MethodOptions | BodyResponseCallback<Schema$Trigger>, callback: BodyResponseCallback<Schema$Trigger>): void;
|
|
3941
3925
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Get, callback: BodyResponseCallback<Schema$Trigger>): void;
|
|
@@ -3948,8 +3932,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3948
3932
|
* @param callback - Optional callback that handles the response.
|
|
3949
3933
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3950
3934
|
*/
|
|
3951
|
-
list(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$List, options: StreamMethodOptions):
|
|
3952
|
-
list(params?: Params$Resource$Accounts$Containers$Workspaces$Triggers$List, options?: MethodOptions):
|
|
3935
|
+
list(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3936
|
+
list(params?: Params$Resource$Accounts$Containers$Workspaces$Triggers$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListTriggersResponse>>;
|
|
3953
3937
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3954
3938
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$List, options: MethodOptions | BodyResponseCallback<Schema$ListTriggersResponse>, callback: BodyResponseCallback<Schema$ListTriggersResponse>): void;
|
|
3955
3939
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$List, callback: BodyResponseCallback<Schema$ListTriggersResponse>): void;
|
|
@@ -3962,8 +3946,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3962
3946
|
* @param callback - Optional callback that handles the response.
|
|
3963
3947
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3964
3948
|
*/
|
|
3965
|
-
revert(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Revert, options: StreamMethodOptions):
|
|
3966
|
-
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Triggers$Revert, options?: MethodOptions):
|
|
3949
|
+
revert(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Revert, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3950
|
+
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Triggers$Revert, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$RevertTriggerResponse>>;
|
|
3967
3951
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Revert, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3968
3952
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Revert, options: MethodOptions | BodyResponseCallback<Schema$RevertTriggerResponse>, callback: BodyResponseCallback<Schema$RevertTriggerResponse>): void;
|
|
3969
3953
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Revert, callback: BodyResponseCallback<Schema$RevertTriggerResponse>): void;
|
|
@@ -3976,8 +3960,8 @@ export declare namespace tagmanager_v2 {
|
|
|
3976
3960
|
* @param callback - Optional callback that handles the response.
|
|
3977
3961
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
3978
3962
|
*/
|
|
3979
|
-
update(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Update, options: StreamMethodOptions):
|
|
3980
|
-
update(params?: Params$Resource$Accounts$Containers$Workspaces$Triggers$Update, options?: MethodOptions):
|
|
3963
|
+
update(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
3964
|
+
update(params?: Params$Resource$Accounts$Containers$Workspaces$Triggers$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Trigger>>;
|
|
3981
3965
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
3982
3966
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Update, options: MethodOptions | BodyResponseCallback<Schema$Trigger>, callback: BodyResponseCallback<Schema$Trigger>): void;
|
|
3983
3967
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Triggers$Update, callback: BodyResponseCallback<Schema$Trigger>): void;
|
|
@@ -4050,8 +4034,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4050
4034
|
* @param callback - Optional callback that handles the response.
|
|
4051
4035
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4052
4036
|
*/
|
|
4053
|
-
create(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Create, options: StreamMethodOptions):
|
|
4054
|
-
create(params?: Params$Resource$Accounts$Containers$Workspaces$Variables$Create, options?: MethodOptions):
|
|
4037
|
+
create(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4038
|
+
create(params?: Params$Resource$Accounts$Containers$Workspaces$Variables$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Variable>>;
|
|
4055
4039
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4056
4040
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Create, options: MethodOptions | BodyResponseCallback<Schema$Variable>, callback: BodyResponseCallback<Schema$Variable>): void;
|
|
4057
4041
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Create, callback: BodyResponseCallback<Schema$Variable>): void;
|
|
@@ -4064,8 +4048,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4064
4048
|
* @param callback - Optional callback that handles the response.
|
|
4065
4049
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4066
4050
|
*/
|
|
4067
|
-
delete(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Delete, options: StreamMethodOptions):
|
|
4068
|
-
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Variables$Delete, options?: MethodOptions):
|
|
4051
|
+
delete(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4052
|
+
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Variables$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
4069
4053
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4070
4054
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
4071
4055
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -4078,8 +4062,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4078
4062
|
* @param callback - Optional callback that handles the response.
|
|
4079
4063
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4080
4064
|
*/
|
|
4081
|
-
get(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Get, options: StreamMethodOptions):
|
|
4082
|
-
get(params?: Params$Resource$Accounts$Containers$Workspaces$Variables$Get, options?: MethodOptions):
|
|
4065
|
+
get(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4066
|
+
get(params?: Params$Resource$Accounts$Containers$Workspaces$Variables$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Variable>>;
|
|
4083
4067
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4084
4068
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Get, options: MethodOptions | BodyResponseCallback<Schema$Variable>, callback: BodyResponseCallback<Schema$Variable>): void;
|
|
4085
4069
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Get, callback: BodyResponseCallback<Schema$Variable>): void;
|
|
@@ -4092,8 +4076,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4092
4076
|
* @param callback - Optional callback that handles the response.
|
|
4093
4077
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4094
4078
|
*/
|
|
4095
|
-
list(params: Params$Resource$Accounts$Containers$Workspaces$Variables$List, options: StreamMethodOptions):
|
|
4096
|
-
list(params?: Params$Resource$Accounts$Containers$Workspaces$Variables$List, options?: MethodOptions):
|
|
4079
|
+
list(params: Params$Resource$Accounts$Containers$Workspaces$Variables$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4080
|
+
list(params?: Params$Resource$Accounts$Containers$Workspaces$Variables$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListVariablesResponse>>;
|
|
4097
4081
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Variables$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4098
4082
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Variables$List, options: MethodOptions | BodyResponseCallback<Schema$ListVariablesResponse>, callback: BodyResponseCallback<Schema$ListVariablesResponse>): void;
|
|
4099
4083
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Variables$List, callback: BodyResponseCallback<Schema$ListVariablesResponse>): void;
|
|
@@ -4106,8 +4090,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4106
4090
|
* @param callback - Optional callback that handles the response.
|
|
4107
4091
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4108
4092
|
*/
|
|
4109
|
-
revert(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Revert, options: StreamMethodOptions):
|
|
4110
|
-
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Variables$Revert, options?: MethodOptions):
|
|
4093
|
+
revert(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Revert, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4094
|
+
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Variables$Revert, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$RevertVariableResponse>>;
|
|
4111
4095
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Revert, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4112
4096
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Revert, options: MethodOptions | BodyResponseCallback<Schema$RevertVariableResponse>, callback: BodyResponseCallback<Schema$RevertVariableResponse>): void;
|
|
4113
4097
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Revert, callback: BodyResponseCallback<Schema$RevertVariableResponse>): void;
|
|
@@ -4120,8 +4104,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4120
4104
|
* @param callback - Optional callback that handles the response.
|
|
4121
4105
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4122
4106
|
*/
|
|
4123
|
-
update(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Update, options: StreamMethodOptions):
|
|
4124
|
-
update(params?: Params$Resource$Accounts$Containers$Workspaces$Variables$Update, options?: MethodOptions):
|
|
4107
|
+
update(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4108
|
+
update(params?: Params$Resource$Accounts$Containers$Workspaces$Variables$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Variable>>;
|
|
4125
4109
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4126
4110
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Update, options: MethodOptions | BodyResponseCallback<Schema$Variable>, callback: BodyResponseCallback<Schema$Variable>): void;
|
|
4127
4111
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Variables$Update, callback: BodyResponseCallback<Schema$Variable>): void;
|
|
@@ -4194,8 +4178,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4194
4178
|
* @param callback - Optional callback that handles the response.
|
|
4195
4179
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4196
4180
|
*/
|
|
4197
|
-
create(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Create, options: StreamMethodOptions):
|
|
4198
|
-
create(params?: Params$Resource$Accounts$Containers$Workspaces$Zones$Create, options?: MethodOptions):
|
|
4181
|
+
create(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4182
|
+
create(params?: Params$Resource$Accounts$Containers$Workspaces$Zones$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Zone>>;
|
|
4199
4183
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4200
4184
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Create, options: MethodOptions | BodyResponseCallback<Schema$Zone>, callback: BodyResponseCallback<Schema$Zone>): void;
|
|
4201
4185
|
create(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Create, callback: BodyResponseCallback<Schema$Zone>): void;
|
|
@@ -4208,8 +4192,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4208
4192
|
* @param callback - Optional callback that handles the response.
|
|
4209
4193
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4210
4194
|
*/
|
|
4211
|
-
delete(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Delete, options: StreamMethodOptions):
|
|
4212
|
-
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Zones$Delete, options?: MethodOptions):
|
|
4195
|
+
delete(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4196
|
+
delete(params?: Params$Resource$Accounts$Containers$Workspaces$Zones$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
4213
4197
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4214
4198
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
4215
4199
|
delete(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -4222,8 +4206,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4222
4206
|
* @param callback - Optional callback that handles the response.
|
|
4223
4207
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4224
4208
|
*/
|
|
4225
|
-
get(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Get, options: StreamMethodOptions):
|
|
4226
|
-
get(params?: Params$Resource$Accounts$Containers$Workspaces$Zones$Get, options?: MethodOptions):
|
|
4209
|
+
get(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4210
|
+
get(params?: Params$Resource$Accounts$Containers$Workspaces$Zones$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Zone>>;
|
|
4227
4211
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4228
4212
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Get, options: MethodOptions | BodyResponseCallback<Schema$Zone>, callback: BodyResponseCallback<Schema$Zone>): void;
|
|
4229
4213
|
get(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Get, callback: BodyResponseCallback<Schema$Zone>): void;
|
|
@@ -4236,8 +4220,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4236
4220
|
* @param callback - Optional callback that handles the response.
|
|
4237
4221
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4238
4222
|
*/
|
|
4239
|
-
list(params: Params$Resource$Accounts$Containers$Workspaces$Zones$List, options: StreamMethodOptions):
|
|
4240
|
-
list(params?: Params$Resource$Accounts$Containers$Workspaces$Zones$List, options?: MethodOptions):
|
|
4223
|
+
list(params: Params$Resource$Accounts$Containers$Workspaces$Zones$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4224
|
+
list(params?: Params$Resource$Accounts$Containers$Workspaces$Zones$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListZonesResponse>>;
|
|
4241
4225
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Zones$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4242
4226
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Zones$List, options: MethodOptions | BodyResponseCallback<Schema$ListZonesResponse>, callback: BodyResponseCallback<Schema$ListZonesResponse>): void;
|
|
4243
4227
|
list(params: Params$Resource$Accounts$Containers$Workspaces$Zones$List, callback: BodyResponseCallback<Schema$ListZonesResponse>): void;
|
|
@@ -4250,8 +4234,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4250
4234
|
* @param callback - Optional callback that handles the response.
|
|
4251
4235
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4252
4236
|
*/
|
|
4253
|
-
revert(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Revert, options: StreamMethodOptions):
|
|
4254
|
-
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Zones$Revert, options?: MethodOptions):
|
|
4237
|
+
revert(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Revert, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4238
|
+
revert(params?: Params$Resource$Accounts$Containers$Workspaces$Zones$Revert, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$RevertZoneResponse>>;
|
|
4255
4239
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Revert, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4256
4240
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Revert, options: MethodOptions | BodyResponseCallback<Schema$RevertZoneResponse>, callback: BodyResponseCallback<Schema$RevertZoneResponse>): void;
|
|
4257
4241
|
revert(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Revert, callback: BodyResponseCallback<Schema$RevertZoneResponse>): void;
|
|
@@ -4264,8 +4248,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4264
4248
|
* @param callback - Optional callback that handles the response.
|
|
4265
4249
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4266
4250
|
*/
|
|
4267
|
-
update(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Update, options: StreamMethodOptions):
|
|
4268
|
-
update(params?: Params$Resource$Accounts$Containers$Workspaces$Zones$Update, options?: MethodOptions):
|
|
4251
|
+
update(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4252
|
+
update(params?: Params$Resource$Accounts$Containers$Workspaces$Zones$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$Zone>>;
|
|
4269
4253
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4270
4254
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Update, options: MethodOptions | BodyResponseCallback<Schema$Zone>, callback: BodyResponseCallback<Schema$Zone>): void;
|
|
4271
4255
|
update(params: Params$Resource$Accounts$Containers$Workspaces$Zones$Update, callback: BodyResponseCallback<Schema$Zone>): void;
|
|
@@ -4338,8 +4322,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4338
4322
|
* @param callback - Optional callback that handles the response.
|
|
4339
4323
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4340
4324
|
*/
|
|
4341
|
-
create(params: Params$Resource$Accounts$User_permissions$Create, options: StreamMethodOptions):
|
|
4342
|
-
create(params?: Params$Resource$Accounts$User_permissions$Create, options?: MethodOptions):
|
|
4325
|
+
create(params: Params$Resource$Accounts$User_permissions$Create, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4326
|
+
create(params?: Params$Resource$Accounts$User_permissions$Create, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$UserPermission>>;
|
|
4343
4327
|
create(params: Params$Resource$Accounts$User_permissions$Create, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4344
4328
|
create(params: Params$Resource$Accounts$User_permissions$Create, options: MethodOptions | BodyResponseCallback<Schema$UserPermission>, callback: BodyResponseCallback<Schema$UserPermission>): void;
|
|
4345
4329
|
create(params: Params$Resource$Accounts$User_permissions$Create, callback: BodyResponseCallback<Schema$UserPermission>): void;
|
|
@@ -4352,8 +4336,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4352
4336
|
* @param callback - Optional callback that handles the response.
|
|
4353
4337
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4354
4338
|
*/
|
|
4355
|
-
delete(params: Params$Resource$Accounts$User_permissions$Delete, options: StreamMethodOptions):
|
|
4356
|
-
delete(params?: Params$Resource$Accounts$User_permissions$Delete, options?: MethodOptions):
|
|
4339
|
+
delete(params: Params$Resource$Accounts$User_permissions$Delete, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4340
|
+
delete(params?: Params$Resource$Accounts$User_permissions$Delete, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<void>>;
|
|
4357
4341
|
delete(params: Params$Resource$Accounts$User_permissions$Delete, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4358
4342
|
delete(params: Params$Resource$Accounts$User_permissions$Delete, options: MethodOptions | BodyResponseCallback<void>, callback: BodyResponseCallback<void>): void;
|
|
4359
4343
|
delete(params: Params$Resource$Accounts$User_permissions$Delete, callback: BodyResponseCallback<void>): void;
|
|
@@ -4366,8 +4350,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4366
4350
|
* @param callback - Optional callback that handles the response.
|
|
4367
4351
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4368
4352
|
*/
|
|
4369
|
-
get(params: Params$Resource$Accounts$User_permissions$Get, options: StreamMethodOptions):
|
|
4370
|
-
get(params?: Params$Resource$Accounts$User_permissions$Get, options?: MethodOptions):
|
|
4353
|
+
get(params: Params$Resource$Accounts$User_permissions$Get, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4354
|
+
get(params?: Params$Resource$Accounts$User_permissions$Get, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$UserPermission>>;
|
|
4371
4355
|
get(params: Params$Resource$Accounts$User_permissions$Get, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4372
4356
|
get(params: Params$Resource$Accounts$User_permissions$Get, options: MethodOptions | BodyResponseCallback<Schema$UserPermission>, callback: BodyResponseCallback<Schema$UserPermission>): void;
|
|
4373
4357
|
get(params: Params$Resource$Accounts$User_permissions$Get, callback: BodyResponseCallback<Schema$UserPermission>): void;
|
|
@@ -4380,8 +4364,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4380
4364
|
* @param callback - Optional callback that handles the response.
|
|
4381
4365
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4382
4366
|
*/
|
|
4383
|
-
list(params: Params$Resource$Accounts$User_permissions$List, options: StreamMethodOptions):
|
|
4384
|
-
list(params?: Params$Resource$Accounts$User_permissions$List, options?: MethodOptions):
|
|
4367
|
+
list(params: Params$Resource$Accounts$User_permissions$List, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4368
|
+
list(params?: Params$Resource$Accounts$User_permissions$List, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$ListUserPermissionsResponse>>;
|
|
4385
4369
|
list(params: Params$Resource$Accounts$User_permissions$List, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4386
4370
|
list(params: Params$Resource$Accounts$User_permissions$List, options: MethodOptions | BodyResponseCallback<Schema$ListUserPermissionsResponse>, callback: BodyResponseCallback<Schema$ListUserPermissionsResponse>): void;
|
|
4387
4371
|
list(params: Params$Resource$Accounts$User_permissions$List, callback: BodyResponseCallback<Schema$ListUserPermissionsResponse>): void;
|
|
@@ -4394,8 +4378,8 @@ export declare namespace tagmanager_v2 {
|
|
|
4394
4378
|
* @param callback - Optional callback that handles the response.
|
|
4395
4379
|
* @returns A promise if used with async/await, or void if used with a callback.
|
|
4396
4380
|
*/
|
|
4397
|
-
update(params: Params$Resource$Accounts$User_permissions$Update, options: StreamMethodOptions):
|
|
4398
|
-
update(params?: Params$Resource$Accounts$User_permissions$Update, options?: MethodOptions):
|
|
4381
|
+
update(params: Params$Resource$Accounts$User_permissions$Update, options: StreamMethodOptions): Promise<GaxiosResponseWithHTTP2<Readable>>;
|
|
4382
|
+
update(params?: Params$Resource$Accounts$User_permissions$Update, options?: MethodOptions): Promise<GaxiosResponseWithHTTP2<Schema$UserPermission>>;
|
|
4399
4383
|
update(params: Params$Resource$Accounts$User_permissions$Update, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
4400
4384
|
update(params: Params$Resource$Accounts$User_permissions$Update, options: MethodOptions | BodyResponseCallback<Schema$UserPermission>, callback: BodyResponseCallback<Schema$UserPermission>): void;
|
|
4401
4385
|
update(params: Params$Resource$Accounts$User_permissions$Update, callback: BodyResponseCallback<Schema$UserPermission>): void;
|