@anmiles/google-api-wrapper 9.1.0 → 11.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/README.md +12 -7
- package/dist/index.d.ts +1 -3
- package/dist/index.js +3 -7
- package/dist/index.js.map +1 -1
- package/dist/lib/api.d.ts +306 -0
- package/dist/lib/api.js +336 -0
- package/dist/lib/api.js.map +1 -0
- package/dist/lib/secrets.d.ts +3 -1
- package/dist/lib/secrets.js +9 -2
- package/dist/lib/secrets.js.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -3
- package/src/lib/__tests__/api.test.ts +206 -0
- package/src/lib/__tests__/secrets.test.ts +16 -0
- package/src/lib/api.ts +365 -0
- package/src/lib/secrets.ts +10 -2
- package/tsconfig.json +1 -0
- package/dist/lib/api/calendar.d.ts +0 -3
- package/dist/lib/api/calendar.js +0 -14
- package/dist/lib/api/calendar.js.map +0 -1
- package/dist/lib/api/shared.d.ts +0 -23
- package/dist/lib/api/shared.js +0 -27
- package/dist/lib/api/shared.js.map +0 -1
- package/dist/lib/api/youtube.d.ts +0 -3
- package/dist/lib/api/youtube.js +0 -14
- package/dist/lib/api/youtube.js.map +0 -1
- package/src/lib/api/__tests__/calendar.test.ts +0 -45
- package/src/lib/api/__tests__/shared.test.ts +0 -93
- package/src/lib/api/__tests__/youtube.test.ts +0 -45
- package/src/lib/api/calendar.ts +0 -13
- package/src/lib/api/shared.ts +0 -44
- package/src/lib/api/youtube.ts +0 -13
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [10.0.0](../../tags/v10.0.0) - 2023-05-31
|
|
9
|
+
### Added
|
|
10
|
+
- Credentials can be revoked. Useful after working with temporary credentials to not let re-use them
|
|
11
|
+
- All existing google APIs are now available
|
|
12
|
+
### Changed
|
|
13
|
+
- Single entry point for creating any APIs
|
|
14
|
+
- BEFORE:
|
|
15
|
+
```
|
|
16
|
+
import { getCalendarAPI } from '@anmiles/google-api-wrapper';
|
|
17
|
+
const calendarAPI = getCalendarAPI(profile);
|
|
18
|
+
```
|
|
19
|
+
- AFTER:
|
|
20
|
+
```
|
|
21
|
+
import { getAPI } from '@anmiles/google-api-wrapper';
|
|
22
|
+
const calendarAPI = getAPI('calendar', profile);
|
|
23
|
+
```
|
|
24
|
+
- Changed signature for `getItems`. Also explicit types are now redundant.
|
|
25
|
+
- BEFORE:
|
|
26
|
+
```
|
|
27
|
+
const events = await getItems<GoogleApis.calendar_v3.Schema$Event, GoogleApis.calendar_v3.Params$Resource$Events$List>(calendarAPI.events, { ...args });
|
|
28
|
+
```
|
|
29
|
+
- AFTER:
|
|
30
|
+
```
|
|
31
|
+
const events = await getItems((api) => api.events, { ...args });
|
|
32
|
+
```
|
|
33
|
+
- In case of `invalid_grant` error, credentials are being removed and warning shown. Will need to create new credentials.
|
|
34
|
+
|
|
8
35
|
## [9.1.0](../../tags/v9.1.0) - 2023-05-26
|
|
9
36
|
### Changed
|
|
10
37
|
- Concurrent servers on the same port between different applications
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @anmiles/google-api-wrapper
|
|
2
2
|
|
|
3
|
-
Provides quick interface for getting google API data
|
|
3
|
+
Provides quick interface for getting google API data. Support all google APIs as per May 31, 2023.
|
|
4
4
|
|
|
5
5
|
----
|
|
6
6
|
|
|
@@ -22,6 +22,7 @@ Provides quick interface for getting google API data
|
|
|
22
22
|
import { createProfile, login } from '@anmiles/google-api-wrapper';
|
|
23
23
|
|
|
24
24
|
createProfile("username");
|
|
25
|
+
// Persistent credentials will be generated and stored to credentials file.
|
|
25
26
|
login("username");
|
|
26
27
|
|
|
27
28
|
```
|
|
@@ -30,13 +31,14 @@ login("username");
|
|
|
30
31
|
``` js
|
|
31
32
|
/* calendar.js */
|
|
32
33
|
|
|
33
|
-
import { getProfiles,
|
|
34
|
+
import { getProfiles, getAPI } from '@anmiles/google-api-wrapper';
|
|
34
35
|
|
|
35
36
|
require('./auth');
|
|
36
37
|
|
|
37
38
|
getProfiles().map(async (profile) => {
|
|
38
|
-
|
|
39
|
-
const
|
|
39
|
+
// Persistent credentials will be generated and stored to credentials file.
|
|
40
|
+
const calendarAPI = getAPI('calendar', profile);
|
|
41
|
+
const events = await calendarAPI.getItems((api) => api.events, { timeMax: new Date().toISOString() });
|
|
40
42
|
events.forEach((event) => console.log(`Event: ${event.summary}`));
|
|
41
43
|
});
|
|
42
44
|
|
|
@@ -46,12 +48,15 @@ getProfiles().map(async (profile) => {
|
|
|
46
48
|
``` js
|
|
47
49
|
/* videos.js */
|
|
48
50
|
|
|
49
|
-
import { getProfiles,
|
|
51
|
+
import { getProfiles, getAPI } from '@anmiles/google-api-wrapper';
|
|
50
52
|
|
|
51
53
|
getProfiles().map(async (profile) => {
|
|
52
|
-
|
|
53
|
-
const
|
|
54
|
+
// Temporary credentials will be generated and not stored to credentials file
|
|
55
|
+
const youtubeAPI = getAPI('youtube', profile, { temporary: true });
|
|
56
|
+
const videos = await youtubeAPI.getItems((api) => api.playlistItems, { playlistId : 'LL', part : [ 'snippet' ], maxResults : 50 });
|
|
54
57
|
videos.forEach((video) => console.log(`Downloaded: ${video.snippet?.title}`));
|
|
58
|
+
// Revoke temporary credentials in the end
|
|
59
|
+
await youtubeAPI.revoke();
|
|
55
60
|
});
|
|
56
61
|
|
|
57
62
|
```
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export { getAPI as getYoutubeAPI } from './lib/api/youtube';
|
|
3
|
-
export { getItems } from './lib/api/shared';
|
|
1
|
+
export { getApi } from './lib/api';
|
|
4
2
|
export { createProfile, getProfiles } from './lib/profiles';
|
|
5
3
|
export { login, getAuth } from './lib/auth';
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getAuth = exports.login = exports.getProfiles = exports.createProfile = exports.
|
|
4
|
-
var
|
|
5
|
-
Object.defineProperty(exports, "
|
|
6
|
-
var youtube_1 = require("./lib/api/youtube");
|
|
7
|
-
Object.defineProperty(exports, "getYoutubeAPI", { enumerable: true, get: function () { return youtube_1.getAPI; } });
|
|
8
|
-
var shared_1 = require("./lib/api/shared");
|
|
9
|
-
Object.defineProperty(exports, "getItems", { enumerable: true, get: function () { return shared_1.getItems; } });
|
|
3
|
+
exports.getAuth = exports.login = exports.getProfiles = exports.createProfile = exports.getApi = void 0;
|
|
4
|
+
var api_1 = require("./lib/api");
|
|
5
|
+
Object.defineProperty(exports, "getApi", { enumerable: true, get: function () { return api_1.getApi; } });
|
|
10
6
|
var profiles_1 = require("./lib/profiles");
|
|
11
7
|
Object.defineProperty(exports, "createProfile", { enumerable: true, get: function () { return profiles_1.createProfile; } });
|
|
12
8
|
Object.defineProperty(exports, "getProfiles", { enumerable: true, get: function () { return profiles_1.getProfiles; } });
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AAAA,iCAAmC;AAA1B,6FAAA,MAAM,OAAA;AACf,2CAA4D;AAAnD,yGAAA,aAAa,OAAA;AAAE,uGAAA,WAAW,OAAA;AACnC,mCAA4C;AAAnC,6FAAA,KAAK,OAAA;AAAE,+FAAA,OAAO,OAAA"}
|
|
@@ -0,0 +1,306 @@
|
|
|
1
|
+
import type GoogleApis from 'googleapis';
|
|
2
|
+
import type { AuthOptions, CommonOptions } from '../types';
|
|
3
|
+
type CommonApi<TItem> = {
|
|
4
|
+
list: {
|
|
5
|
+
(params?: {
|
|
6
|
+
pageToken: string | undefined;
|
|
7
|
+
}, options?: GoogleApis.Common.MethodOptions): Promise<GoogleApis.Common.GaxiosResponse<CommonResponse<TItem>>>;
|
|
8
|
+
(callback: (err: Error | null, res?: GoogleApis.Common.GaxiosResponse<CommonResponse<TItem>> | null) => void): void;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
type CommonResponse<TItem> = {
|
|
12
|
+
items?: TItem[];
|
|
13
|
+
pageInfo?: {
|
|
14
|
+
totalResults?: number | null | undefined;
|
|
15
|
+
};
|
|
16
|
+
nextPageToken?: string | null | undefined;
|
|
17
|
+
};
|
|
18
|
+
declare class Api<TApi extends keyof typeof allApis> {
|
|
19
|
+
api: ReturnType<typeof allApis[TApi]>;
|
|
20
|
+
private auth;
|
|
21
|
+
private apiName;
|
|
22
|
+
private profile;
|
|
23
|
+
private authOptions?;
|
|
24
|
+
constructor(apiName: TApi, profile: string, authOptions?: AuthOptions);
|
|
25
|
+
init(): Promise<void>;
|
|
26
|
+
getItems<TItem>(selectAPI: (api: ReturnType<typeof allApis[TApi]>) => CommonApi<TItem>, params: any, options?: CommonOptions): Promise<TItem[]>;
|
|
27
|
+
revoke(): Promise<GoogleApis.Common.GaxiosResponse<import("google-auth-library/build/src/auth/oauth2client").RevokeCredentialsResult>>;
|
|
28
|
+
}
|
|
29
|
+
declare function getApi<TApi extends keyof typeof allApis>(apiName: TApi, profile: string, authOptions?: AuthOptions): Promise<Api<TApi>>;
|
|
30
|
+
declare const allApis: {
|
|
31
|
+
readonly abusiveexperiencereport: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.abusiveexperiencereport_v1.Abusiveexperiencereport;
|
|
32
|
+
readonly acceleratedmobilepageurl: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.acceleratedmobilepageurl_v1.Acceleratedmobilepageurl;
|
|
33
|
+
readonly accessapproval: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.accessapproval_v1.Accessapproval;
|
|
34
|
+
readonly accesscontextmanager: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.accesscontextmanager_v1.Accesscontextmanager;
|
|
35
|
+
readonly acmedns: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.acmedns_v1.Acmedns;
|
|
36
|
+
readonly adexchangebuyer: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.adexchangebuyer_v1_2.Adexchangebuyer;
|
|
37
|
+
readonly adexchangebuyer2: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.adexchangebuyer2_v2beta1.Adexchangebuyer2;
|
|
38
|
+
readonly adexperiencereport: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.adexperiencereport_v1.Adexperiencereport;
|
|
39
|
+
readonly admin: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.admin_datatransfer_v1.Admin;
|
|
40
|
+
readonly admob: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.admob_v1.Admob;
|
|
41
|
+
readonly adsense: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.adsense_v1_4.Adsense;
|
|
42
|
+
readonly adsensehost: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.adsensehost_v4_1.Adsensehost;
|
|
43
|
+
readonly advisorynotifications: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.advisorynotifications_v1.Advisorynotifications;
|
|
44
|
+
readonly alertcenter: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.alertcenter_v1beta1.Alertcenter;
|
|
45
|
+
readonly analytics: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.analytics_v3.Analytics;
|
|
46
|
+
readonly analyticsadmin: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.analyticsadmin_v1alpha.Analyticsadmin;
|
|
47
|
+
readonly analyticsdata: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.analyticsdata_v1alpha.Analyticsdata;
|
|
48
|
+
readonly analyticshub: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.analyticshub_v1.Analyticshub;
|
|
49
|
+
readonly analyticsreporting: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.analyticsreporting_v4.Analyticsreporting;
|
|
50
|
+
readonly androiddeviceprovisioning: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.androiddeviceprovisioning_v1.Androiddeviceprovisioning;
|
|
51
|
+
readonly androidenterprise: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.androidenterprise_v1.Androidenterprise;
|
|
52
|
+
readonly androidmanagement: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.androidmanagement_v1.Androidmanagement;
|
|
53
|
+
readonly androidpublisher: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.androidpublisher_v1_1.Androidpublisher;
|
|
54
|
+
readonly apigateway: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.apigateway_v1.Apigateway;
|
|
55
|
+
readonly apigeeregistry: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.apigeeregistry_v1.Apigeeregistry;
|
|
56
|
+
readonly apikeys: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.apikeys_v2.Apikeys;
|
|
57
|
+
readonly appengine: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.appengine_v1.Appengine;
|
|
58
|
+
readonly appsactivity: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.appsactivity_v1.Appsactivity;
|
|
59
|
+
readonly area120tables: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.area120tables_v1alpha1.Area120tables;
|
|
60
|
+
readonly artifactregistry: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.artifactregistry_v1.Artifactregistry;
|
|
61
|
+
readonly assuredworkloads: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.assuredworkloads_v1.Assuredworkloads;
|
|
62
|
+
readonly authorizedbuyersmarketplace: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.authorizedbuyersmarketplace_v1.Authorizedbuyersmarketplace;
|
|
63
|
+
readonly baremetalsolution: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.baremetalsolution_v1.Baremetalsolution;
|
|
64
|
+
readonly batch: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.batch_v1.Batch;
|
|
65
|
+
readonly beyondcorp: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.beyondcorp_v1.Beyondcorp;
|
|
66
|
+
readonly bigquery: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.bigquery_v2.Bigquery;
|
|
67
|
+
readonly bigqueryconnection: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.bigqueryconnection_v1beta1.Bigqueryconnection;
|
|
68
|
+
readonly bigquerydatatransfer: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.bigquerydatatransfer_v1.Bigquerydatatransfer;
|
|
69
|
+
readonly bigqueryreservation: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.bigqueryreservation_v1.Bigqueryreservation;
|
|
70
|
+
readonly bigtableadmin: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.bigtableadmin_v1.Bigtableadmin;
|
|
71
|
+
readonly billingbudgets: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.billingbudgets_v1.Billingbudgets;
|
|
72
|
+
readonly binaryauthorization: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.binaryauthorization_v1.Binaryauthorization;
|
|
73
|
+
readonly blogger: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.blogger_v2.Blogger;
|
|
74
|
+
readonly books: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.books_v1.Books;
|
|
75
|
+
readonly businessprofileperformance: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.businessprofileperformance_v1.Businessprofileperformance;
|
|
76
|
+
readonly calendar: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.calendar_v3.Calendar;
|
|
77
|
+
readonly certificatemanager: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.certificatemanager_v1.Certificatemanager;
|
|
78
|
+
readonly chat: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.chat_v1.Chat;
|
|
79
|
+
readonly chromemanagement: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.chromemanagement_v1.Chromemanagement;
|
|
80
|
+
readonly chromepolicy: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.chromepolicy_v1.Chromepolicy;
|
|
81
|
+
readonly chromeuxreport: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.chromeuxreport_v1.Chromeuxreport;
|
|
82
|
+
readonly civicinfo: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.civicinfo_v2.Civicinfo;
|
|
83
|
+
readonly classroom: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.classroom_v1.Classroom;
|
|
84
|
+
readonly cloudasset: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudasset_v1.Cloudasset;
|
|
85
|
+
readonly cloudbilling: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudbilling_v1.Cloudbilling;
|
|
86
|
+
readonly cloudbuild: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudbuild_v1.Cloudbuild;
|
|
87
|
+
readonly cloudchannel: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudchannel_v1.Cloudchannel;
|
|
88
|
+
readonly clouddebugger: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.clouddebugger_v2.Clouddebugger;
|
|
89
|
+
readonly clouddeploy: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.clouddeploy_v1.Clouddeploy;
|
|
90
|
+
readonly clouderrorreporting: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.clouderrorreporting_v1beta1.Clouderrorreporting;
|
|
91
|
+
readonly cloudfunctions: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudfunctions_v1.Cloudfunctions;
|
|
92
|
+
readonly cloudidentity: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudidentity_v1.Cloudidentity;
|
|
93
|
+
readonly cloudiot: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudiot_v1.Cloudiot;
|
|
94
|
+
readonly cloudkms: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudkms_v1.Cloudkms;
|
|
95
|
+
readonly cloudprofiler: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudprofiler_v2.Cloudprofiler;
|
|
96
|
+
readonly cloudresourcemanager: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudresourcemanager_v1.Cloudresourcemanager;
|
|
97
|
+
readonly cloudscheduler: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudscheduler_v1.Cloudscheduler;
|
|
98
|
+
readonly cloudsearch: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudsearch_v1.Cloudsearch;
|
|
99
|
+
readonly cloudshell: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudshell_v1.Cloudshell;
|
|
100
|
+
readonly cloudsupport: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudsupport_v2beta.Cloudsupport;
|
|
101
|
+
readonly cloudtasks: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudtasks_v2.Cloudtasks;
|
|
102
|
+
readonly cloudtrace: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.cloudtrace_v1.Cloudtrace;
|
|
103
|
+
readonly composer: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.composer_v1.Composer;
|
|
104
|
+
readonly compute: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.compute_alpha.Compute;
|
|
105
|
+
readonly connectors: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.connectors_v1.Connectors;
|
|
106
|
+
readonly contactcenteraiplatform: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.contactcenteraiplatform_v1alpha1.Contactcenteraiplatform;
|
|
107
|
+
readonly contactcenterinsights: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.contactcenterinsights_v1.Contactcenterinsights;
|
|
108
|
+
readonly container: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.container_v1.Container;
|
|
109
|
+
readonly containeranalysis: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.containeranalysis_v1.Containeranalysis;
|
|
110
|
+
readonly content: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.content_v2_1.Content;
|
|
111
|
+
readonly contentwarehouse: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.contentwarehouse_v1.Contentwarehouse;
|
|
112
|
+
readonly customsearch: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.customsearch_v1.Customsearch;
|
|
113
|
+
readonly datacatalog: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.datacatalog_v1.Datacatalog;
|
|
114
|
+
readonly dataflow: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.dataflow_v1b3.Dataflow;
|
|
115
|
+
readonly dataform: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.dataform_v1beta1.Dataform;
|
|
116
|
+
readonly datafusion: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.datafusion_v1.Datafusion;
|
|
117
|
+
readonly datalabeling: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.datalabeling_v1beta1.Datalabeling;
|
|
118
|
+
readonly datalineage: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.datalineage_v1.Datalineage;
|
|
119
|
+
readonly datamigration: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.datamigration_v1.Datamigration;
|
|
120
|
+
readonly datapipelines: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.datapipelines_v1.Datapipelines;
|
|
121
|
+
readonly dataplex: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.dataplex_v1.Dataplex;
|
|
122
|
+
readonly dataproc: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.dataproc_v1.Dataproc;
|
|
123
|
+
readonly datastore: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.datastore_v1.Datastore;
|
|
124
|
+
readonly datastream: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.datastream_v1.Datastream;
|
|
125
|
+
readonly deploymentmanager: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.deploymentmanager_alpha.Deploymentmanager;
|
|
126
|
+
readonly dfareporting: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.dfareporting_v3_3.Dfareporting;
|
|
127
|
+
readonly dialogflow: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.dialogflow_v2.Dialogflow;
|
|
128
|
+
readonly digitalassetlinks: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.digitalassetlinks_v1.Digitalassetlinks;
|
|
129
|
+
readonly discovery: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.discovery_v1.Discovery;
|
|
130
|
+
readonly discoveryengine: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.discoveryengine_v1alpha.Discoveryengine;
|
|
131
|
+
readonly displayvideo: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.displayvideo_v1.Displayvideo;
|
|
132
|
+
readonly dlp: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.dlp_v2.Dlp;
|
|
133
|
+
readonly dns: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.dns_v1.Dns;
|
|
134
|
+
readonly docs: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.docs_v1.Docs;
|
|
135
|
+
readonly documentai: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.documentai_v1.Documentai;
|
|
136
|
+
readonly domains: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.domains_v1.Domains;
|
|
137
|
+
readonly domainsrdap: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.domainsrdap_v1.Domainsrdap;
|
|
138
|
+
readonly doubleclickbidmanager: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.doubleclickbidmanager_v1_1.Doubleclickbidmanager;
|
|
139
|
+
readonly doubleclicksearch: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.doubleclicksearch_v2.Doubleclicksearch;
|
|
140
|
+
readonly drive: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.drive_v2.Drive;
|
|
141
|
+
readonly driveactivity: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.driveactivity_v2.Driveactivity;
|
|
142
|
+
readonly drivelabels: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.drivelabels_v2.Drivelabels;
|
|
143
|
+
readonly essentialcontacts: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.essentialcontacts_v1.Essentialcontacts;
|
|
144
|
+
readonly eventarc: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.eventarc_v1.Eventarc;
|
|
145
|
+
readonly factchecktools: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.factchecktools_v1alpha1.Factchecktools;
|
|
146
|
+
readonly fcm: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.fcm_v1.Fcm;
|
|
147
|
+
readonly fcmdata: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.fcmdata_v1beta1.Fcmdata;
|
|
148
|
+
readonly file: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.file_v1.File;
|
|
149
|
+
readonly firebase: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.firebase_v1beta1.Firebase;
|
|
150
|
+
readonly firebaseappcheck: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.firebaseappcheck_v1.Firebaseappcheck;
|
|
151
|
+
readonly firebaseappdistribution: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.firebaseappdistribution_v1.Firebaseappdistribution;
|
|
152
|
+
readonly firebasedatabase: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.firebasedatabase_v1beta.Firebasedatabase;
|
|
153
|
+
readonly firebasedynamiclinks: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.firebasedynamiclinks_v1.Firebasedynamiclinks;
|
|
154
|
+
readonly firebasehosting: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.firebasehosting_v1.Firebasehosting;
|
|
155
|
+
readonly firebaseml: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.firebaseml_v1.Firebaseml;
|
|
156
|
+
readonly firebaserules: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.firebaserules_v1.Firebaserules;
|
|
157
|
+
readonly firebasestorage: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.firebasestorage_v1beta.Firebasestorage;
|
|
158
|
+
readonly firestore: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.firestore_v1.Firestore;
|
|
159
|
+
readonly fitness: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.fitness_v1.Fitness;
|
|
160
|
+
readonly forms: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.forms_v1.Forms;
|
|
161
|
+
readonly games: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.games_v1.Games;
|
|
162
|
+
readonly gamesConfiguration: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.gamesConfiguration_v1configuration.Gamesconfiguration;
|
|
163
|
+
readonly gameservices: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.gameservices_v1.Gameservices;
|
|
164
|
+
readonly gamesManagement: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.gamesManagement_v1management.Gamesmanagement;
|
|
165
|
+
readonly genomics: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.genomics_v1.Genomics;
|
|
166
|
+
readonly gkebackup: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.gkebackup_v1.Gkebackup;
|
|
167
|
+
readonly gkehub: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.gkehub_v1.Gkehub;
|
|
168
|
+
readonly gmail: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.gmail_v1.Gmail;
|
|
169
|
+
readonly gmailpostmastertools: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.gmailpostmastertools_v1.Gmailpostmastertools;
|
|
170
|
+
readonly groupsmigration: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.groupsmigration_v1.Groupsmigration;
|
|
171
|
+
readonly groupssettings: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.groupssettings_v1.Groupssettings;
|
|
172
|
+
readonly healthcare: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.healthcare_v1.Healthcare;
|
|
173
|
+
readonly homegraph: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.homegraph_v1.Homegraph;
|
|
174
|
+
readonly iam: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.iam_v1.Iam;
|
|
175
|
+
readonly iamcredentials: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.iamcredentials_v1.Iamcredentials;
|
|
176
|
+
readonly iap: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.iap_v1.Iap;
|
|
177
|
+
readonly ideahub: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.ideahub_v1alpha.Ideahub;
|
|
178
|
+
readonly identitytoolkit: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.identitytoolkit_v2.Identitytoolkit;
|
|
179
|
+
readonly ids: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.ids_v1.Ids;
|
|
180
|
+
readonly indexing: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.indexing_v3.Indexing;
|
|
181
|
+
readonly integrations: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.integrations_v1alpha.Integrations;
|
|
182
|
+
readonly jobs: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.jobs_v2.Jobs;
|
|
183
|
+
readonly kgsearch: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.kgsearch_v1.Kgsearch;
|
|
184
|
+
readonly kmsinventory: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.kmsinventory_v1.Kmsinventory;
|
|
185
|
+
readonly language: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.language_v1.Language;
|
|
186
|
+
readonly libraryagent: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.libraryagent_v1.Libraryagent;
|
|
187
|
+
readonly licensing: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.licensing_v1.Licensing;
|
|
188
|
+
readonly lifesciences: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.lifesciences_v2beta.Lifesciences;
|
|
189
|
+
readonly localservices: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.localservices_v1.Localservices;
|
|
190
|
+
readonly logging: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.logging_v2.Logging;
|
|
191
|
+
readonly managedidentities: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.managedidentities_v1.Managedidentities;
|
|
192
|
+
readonly manufacturers: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.manufacturers_v1.Manufacturers;
|
|
193
|
+
readonly memcache: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.memcache_v1.Memcache;
|
|
194
|
+
readonly metastore: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.metastore_v1.Metastore;
|
|
195
|
+
readonly migrationcenter: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.migrationcenter_v1alpha1.Migrationcenter;
|
|
196
|
+
readonly ml: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.ml_v1.Ml;
|
|
197
|
+
readonly monitoring: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.monitoring_v1.Monitoring;
|
|
198
|
+
readonly mybusinessaccountmanagement: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.mybusinessaccountmanagement_v1.Mybusinessaccountmanagement;
|
|
199
|
+
readonly mybusinessbusinesscalls: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.mybusinessbusinesscalls_v1.Mybusinessbusinesscalls;
|
|
200
|
+
readonly mybusinessbusinessinformation: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.mybusinessbusinessinformation_v1.Mybusinessbusinessinformation;
|
|
201
|
+
readonly mybusinesslodging: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.mybusinesslodging_v1.Mybusinesslodging;
|
|
202
|
+
readonly mybusinessnotifications: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.mybusinessnotifications_v1.Mybusinessnotifications;
|
|
203
|
+
readonly mybusinessplaceactions: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.mybusinessplaceactions_v1.Mybusinessplaceactions;
|
|
204
|
+
readonly mybusinessqanda: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.mybusinessqanda_v1.Mybusinessqanda;
|
|
205
|
+
readonly mybusinessverifications: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.mybusinessverifications_v1.Mybusinessverifications;
|
|
206
|
+
readonly networkconnectivity: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.networkconnectivity_v1.Networkconnectivity;
|
|
207
|
+
readonly networkmanagement: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.networkmanagement_v1.Networkmanagement;
|
|
208
|
+
readonly networksecurity: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.networksecurity_v1.Networksecurity;
|
|
209
|
+
readonly networkservices: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.networkservices_v1.Networkservices;
|
|
210
|
+
readonly notebooks: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.notebooks_v1.Notebooks;
|
|
211
|
+
readonly oauth2: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.oauth2_v2.Oauth2;
|
|
212
|
+
readonly ondemandscanning: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.ondemandscanning_v1.Ondemandscanning;
|
|
213
|
+
readonly orgpolicy: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.orgpolicy_v2.Orgpolicy;
|
|
214
|
+
readonly osconfig: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.osconfig_v1.Osconfig;
|
|
215
|
+
readonly oslogin: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.oslogin_v1.Oslogin;
|
|
216
|
+
readonly pagespeedonline: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.pagespeedonline_v5.Pagespeedonline;
|
|
217
|
+
readonly paymentsresellersubscription: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.paymentsresellersubscription_v1.Paymentsresellersubscription;
|
|
218
|
+
readonly people: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.people_v1.People;
|
|
219
|
+
readonly playablelocations: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.playablelocations_v3.Playablelocations;
|
|
220
|
+
readonly playcustomapp: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.playcustomapp_v1.Playcustomapp;
|
|
221
|
+
readonly playdeveloperreporting: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.playdeveloperreporting_v1alpha1.Playdeveloperreporting;
|
|
222
|
+
readonly playintegrity: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.playintegrity_v1.Playintegrity;
|
|
223
|
+
readonly plus: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.plus_v1.Plus;
|
|
224
|
+
readonly policyanalyzer: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.policyanalyzer_v1.Policyanalyzer;
|
|
225
|
+
readonly policysimulator: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.policysimulator_v1.Policysimulator;
|
|
226
|
+
readonly policytroubleshooter: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.policytroubleshooter_v1.Policytroubleshooter;
|
|
227
|
+
readonly poly: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.poly_v1.Poly;
|
|
228
|
+
readonly privateca: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.privateca_v1.Privateca;
|
|
229
|
+
readonly prod_tt_sasportal: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.prod_tt_sasportal_v1alpha1.Prod_tt_sasportal;
|
|
230
|
+
readonly publicca: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.publicca_v1alpha1.Publicca;
|
|
231
|
+
readonly pubsub: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.pubsub_v1.Pubsub;
|
|
232
|
+
readonly pubsublite: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.pubsublite_v1.Pubsublite;
|
|
233
|
+
readonly readerrevenuesubscriptionlinking: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.readerrevenuesubscriptionlinking_v1.Readerrevenuesubscriptionlinking;
|
|
234
|
+
readonly realtimebidding: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.realtimebidding_v1.Realtimebidding;
|
|
235
|
+
readonly recaptchaenterprise: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.recaptchaenterprise_v1.Recaptchaenterprise;
|
|
236
|
+
readonly recommendationengine: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.recommendationengine_v1beta1.Recommendationengine;
|
|
237
|
+
readonly recommender: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.recommender_v1.Recommender;
|
|
238
|
+
readonly redis: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.redis_v1.Redis;
|
|
239
|
+
readonly remotebuildexecution: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.remotebuildexecution_v1.Remotebuildexecution;
|
|
240
|
+
readonly reseller: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.reseller_v1.Reseller;
|
|
241
|
+
readonly resourcesettings: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.resourcesettings_v1.Resourcesettings;
|
|
242
|
+
readonly retail: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.retail_v2.Retail;
|
|
243
|
+
readonly run: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.run_v1.Run;
|
|
244
|
+
readonly runtimeconfig: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.runtimeconfig_v1.Runtimeconfig;
|
|
245
|
+
readonly safebrowsing: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.safebrowsing_v4.Safebrowsing;
|
|
246
|
+
readonly sasportal: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.sasportal_v1alpha1.Sasportal;
|
|
247
|
+
readonly script: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.script_v1.Script;
|
|
248
|
+
readonly searchads360: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.searchads360_v0.Searchads360;
|
|
249
|
+
readonly searchconsole: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.searchconsole_v1.Searchconsole;
|
|
250
|
+
readonly secretmanager: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.secretmanager_v1.Secretmanager;
|
|
251
|
+
readonly securitycenter: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.securitycenter_v1.Securitycenter;
|
|
252
|
+
readonly serviceconsumermanagement: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.serviceconsumermanagement_v1.Serviceconsumermanagement;
|
|
253
|
+
readonly servicecontrol: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.servicecontrol_v1.Servicecontrol;
|
|
254
|
+
readonly servicedirectory: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.servicedirectory_v1.Servicedirectory;
|
|
255
|
+
readonly servicemanagement: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.servicemanagement_v1.Servicemanagement;
|
|
256
|
+
readonly servicenetworking: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.servicenetworking_v1.Servicenetworking;
|
|
257
|
+
readonly serviceusage: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.serviceusage_v1.Serviceusage;
|
|
258
|
+
readonly sheets: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.sheets_v4.Sheets;
|
|
259
|
+
readonly siteVerification: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.siteVerification_v1.Siteverification;
|
|
260
|
+
readonly slides: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.slides_v1.Slides;
|
|
261
|
+
readonly smartdevicemanagement: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.smartdevicemanagement_v1.Smartdevicemanagement;
|
|
262
|
+
readonly sourcerepo: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.sourcerepo_v1.Sourcerepo;
|
|
263
|
+
readonly spanner: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.spanner_v1.Spanner;
|
|
264
|
+
readonly speech: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.speech_v1.Speech;
|
|
265
|
+
readonly sql: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.sql_v1beta4.Sql;
|
|
266
|
+
readonly sqladmin: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.sqladmin_v1.Sqladmin;
|
|
267
|
+
readonly storage: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.storage_v1.Storage;
|
|
268
|
+
readonly storagetransfer: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.storagetransfer_v1.Storagetransfer;
|
|
269
|
+
readonly streetviewpublish: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.streetviewpublish_v1.Streetviewpublish;
|
|
270
|
+
readonly sts: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.sts_v1.Sts;
|
|
271
|
+
readonly tagmanager: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.tagmanager_v1.Tagmanager;
|
|
272
|
+
readonly tasks: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.tasks_v1.Tasks;
|
|
273
|
+
readonly testing: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.testing_v1.Testing;
|
|
274
|
+
readonly texttospeech: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.texttospeech_v1.Texttospeech;
|
|
275
|
+
readonly toolresults: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.toolresults_v1beta3.Toolresults;
|
|
276
|
+
readonly tpu: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.tpu_v1.Tpu;
|
|
277
|
+
readonly trafficdirector: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.trafficdirector_v2.Trafficdirector;
|
|
278
|
+
readonly transcoder: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.transcoder_v1.Transcoder;
|
|
279
|
+
readonly translate: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.translate_v2.Translate;
|
|
280
|
+
readonly travelimpactmodel: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.travelimpactmodel_v1.Travelimpactmodel;
|
|
281
|
+
readonly vault: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.vault_v1.Vault;
|
|
282
|
+
readonly vectortile: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.vectortile_v1.Vectortile;
|
|
283
|
+
readonly verifiedaccess: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.verifiedaccess_v1.Verifiedaccess;
|
|
284
|
+
readonly versionhistory: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.versionhistory_v1.Versionhistory;
|
|
285
|
+
readonly videointelligence: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.videointelligence_v1.Videointelligence;
|
|
286
|
+
readonly vision: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.vision_v1.Vision;
|
|
287
|
+
readonly vmmigration: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.vmmigration_v1.Vmmigration;
|
|
288
|
+
readonly vpcaccess: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.vpcaccess_v1.Vpcaccess;
|
|
289
|
+
readonly webfonts: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.webfonts_v1.Webfonts;
|
|
290
|
+
readonly webmasters: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.webmasters_v3.Webmasters;
|
|
291
|
+
readonly webrisk: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.webrisk_v1.Webrisk;
|
|
292
|
+
readonly websecurityscanner: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.websecurityscanner_v1.Websecurityscanner;
|
|
293
|
+
readonly workflowexecutions: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.workflowexecutions_v1.Workflowexecutions;
|
|
294
|
+
readonly workflows: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.workflows_v1.Workflows;
|
|
295
|
+
readonly workloadmanager: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.workloadmanager_v1.Workloadmanager;
|
|
296
|
+
readonly workstations: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.workstations_v1beta.Workstations;
|
|
297
|
+
readonly youtube: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.youtube_v3.Youtube;
|
|
298
|
+
readonly youtubeAnalytics: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.youtubeAnalytics_v1.Youtubeanalytics;
|
|
299
|
+
readonly youtubereporting: (auth: GoogleApis.Common.OAuth2Client) => GoogleApis.youtubereporting_v1.Youtubereporting;
|
|
300
|
+
};
|
|
301
|
+
export { getApi };
|
|
302
|
+
declare const _default: {
|
|
303
|
+
getApi: typeof getApi;
|
|
304
|
+
Api: typeof Api;
|
|
305
|
+
};
|
|
306
|
+
export default _default;
|