@googleapis/searchconsole 0.4.1 → 0.5.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 +7 -0
- package/build/v1.d.ts +314 -0
- package/build/v1.js +45 -0
- package/build/v1.js.map +1 -1
- package/package.json +1 -1
- package/v1.ts +405 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.0](https://github.com/googleapis/google-api-nodejs-client/compare/searchconsole-v0.4.1...searchconsole-v0.5.0) (2022-02-04)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **searchconsole:** update the API ([006f4cb](https://github.com/googleapis/google-api-nodejs-client/commit/006f4cbc2d55f3834e9fce09a98df34b12ad8e50))
|
|
9
|
+
|
|
3
10
|
### [0.4.1](https://github.com/googleapis/google-api-nodejs-client/compare/searchconsole-v0.4.0...searchconsole-v0.4.1) (2022-01-17)
|
|
4
11
|
|
|
5
12
|
|
package/build/v1.d.ts
CHANGED
|
@@ -71,9 +71,60 @@ export declare namespace searchconsole_v1 {
|
|
|
71
71
|
searchanalytics: Resource$Searchanalytics;
|
|
72
72
|
sitemaps: Resource$Sitemaps;
|
|
73
73
|
sites: Resource$Sites;
|
|
74
|
+
urlInspection: Resource$Urlinspection;
|
|
74
75
|
urlTestingTools: Resource$Urltestingtools;
|
|
75
76
|
constructor(options: GlobalOptions, google?: GoogleConfigurable);
|
|
76
77
|
}
|
|
78
|
+
/**
|
|
79
|
+
* AMP inspection result of the live page or the current information from Google's index, depending on whether you requested a live inspection or not.
|
|
80
|
+
*/
|
|
81
|
+
export interface Schema$AmpInspectionResult {
|
|
82
|
+
/**
|
|
83
|
+
* Index status of the AMP URL.
|
|
84
|
+
*/
|
|
85
|
+
ampIndexStatusVerdict?: string | null;
|
|
86
|
+
/**
|
|
87
|
+
* URL of the AMP that was inspected. If the submitted URL is a desktop page that refers to an AMP version, the AMP version will be inspected.
|
|
88
|
+
*/
|
|
89
|
+
ampUrl?: string | null;
|
|
90
|
+
/**
|
|
91
|
+
* Whether or not the page blocks indexing through a noindex rule.
|
|
92
|
+
*/
|
|
93
|
+
indexingState?: string | null;
|
|
94
|
+
/**
|
|
95
|
+
* A list of zero or more AMP issues found for the inspected URL.
|
|
96
|
+
*/
|
|
97
|
+
issues?: Schema$AmpIssue[];
|
|
98
|
+
/**
|
|
99
|
+
* Last time this AMP version was crawled by Google. Absent if the URL was never crawled successfully.
|
|
100
|
+
*/
|
|
101
|
+
lastCrawlTime?: string | null;
|
|
102
|
+
/**
|
|
103
|
+
* Whether or not Google could fetch the AMP.
|
|
104
|
+
*/
|
|
105
|
+
pageFetchState?: string | null;
|
|
106
|
+
/**
|
|
107
|
+
* Whether or not the page is blocked to Google by a robots.txt rule.
|
|
108
|
+
*/
|
|
109
|
+
robotsTxtState?: string | null;
|
|
110
|
+
/**
|
|
111
|
+
* The status of the most severe error on the page. If a page has both warnings and errors, the page status is error. Error status means the page cannot be shown in Search results.
|
|
112
|
+
*/
|
|
113
|
+
verdict?: string | null;
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* AMP issue.
|
|
117
|
+
*/
|
|
118
|
+
export interface Schema$AmpIssue {
|
|
119
|
+
/**
|
|
120
|
+
* Brief description of this issue.
|
|
121
|
+
*/
|
|
122
|
+
issueMessage?: string | null;
|
|
123
|
+
/**
|
|
124
|
+
* Severity of this issue: WARNING or ERROR.
|
|
125
|
+
*/
|
|
126
|
+
severity?: string | null;
|
|
127
|
+
}
|
|
77
128
|
export interface Schema$ApiDataRow {
|
|
78
129
|
clicks?: number | null;
|
|
79
130
|
ctr?: number | null;
|
|
@@ -105,6 +156,19 @@ export declare namespace searchconsole_v1 {
|
|
|
105
156
|
*/
|
|
106
157
|
url?: string | null;
|
|
107
158
|
}
|
|
159
|
+
/**
|
|
160
|
+
* Rich Results items grouped by type.
|
|
161
|
+
*/
|
|
162
|
+
export interface Schema$DetectedItems {
|
|
163
|
+
/**
|
|
164
|
+
* List of Rich Results items.
|
|
165
|
+
*/
|
|
166
|
+
items?: Schema$Item[];
|
|
167
|
+
/**
|
|
168
|
+
* Rich Results type
|
|
169
|
+
*/
|
|
170
|
+
richResultType?: string | null;
|
|
171
|
+
}
|
|
108
172
|
/**
|
|
109
173
|
* Describe image data.
|
|
110
174
|
*/
|
|
@@ -118,6 +182,94 @@ export declare namespace searchconsole_v1 {
|
|
|
118
182
|
*/
|
|
119
183
|
mimeType?: string | null;
|
|
120
184
|
}
|
|
185
|
+
/**
|
|
186
|
+
* Results of index status inspection for either the live page or the version in Google's index, depending on whether you requested a live inspection or not. For more information, see the [Index coverage report documentation](https://support.google.com/webmasters/answer/7440203).
|
|
187
|
+
*/
|
|
188
|
+
export interface Schema$IndexStatusInspectionResult {
|
|
189
|
+
/**
|
|
190
|
+
* Could Google find and index the page. More details about page indexing appear in 'indexing_state'.
|
|
191
|
+
*/
|
|
192
|
+
coverageState?: string | null;
|
|
193
|
+
/**
|
|
194
|
+
* Primary crawler that was used by Google to crawl your site.
|
|
195
|
+
*/
|
|
196
|
+
crawledAs?: string | null;
|
|
197
|
+
/**
|
|
198
|
+
* The URL of the page that Google selected as canonical. If the page was not indexed, this field is absent.
|
|
199
|
+
*/
|
|
200
|
+
googleCanonical?: string | null;
|
|
201
|
+
/**
|
|
202
|
+
* Whether or not the page blocks indexing through a noindex rule.
|
|
203
|
+
*/
|
|
204
|
+
indexingState?: string | null;
|
|
205
|
+
/**
|
|
206
|
+
* Last time this URL was crawled by Google using the [primary crawler](https://support.google.com/webmasters/answer/7440203#primary_crawler). Absent if the URL was never crawled successfully.
|
|
207
|
+
*/
|
|
208
|
+
lastCrawlTime?: string | null;
|
|
209
|
+
/**
|
|
210
|
+
* Whether or not Google could retrieve the page from your server. Equivalent to ["page fetch"](https://support.google.com/webmasters/answer/9012289#index_coverage) in the URL inspection report.
|
|
211
|
+
*/
|
|
212
|
+
pageFetchState?: string | null;
|
|
213
|
+
/**
|
|
214
|
+
* URLs that link to the inspected URL, directly and indirectly.
|
|
215
|
+
*/
|
|
216
|
+
referringUrls?: string[] | null;
|
|
217
|
+
/**
|
|
218
|
+
* Whether or not the page is blocked to Google by a robots.txt rule.
|
|
219
|
+
*/
|
|
220
|
+
robotsTxtState?: string | null;
|
|
221
|
+
/**
|
|
222
|
+
* Any sitemaps that this URL was listed in, as known by Google. Not guaranteed to be an exhaustive list, especially if Google did not discover this URL through a sitemap. Absent if no sitemaps were found.
|
|
223
|
+
*/
|
|
224
|
+
sitemap?: string[] | null;
|
|
225
|
+
/**
|
|
226
|
+
* The URL that your page or site [declares as canonical](https://developers.google.com/search/docs/advanced/crawling/consolidate-duplicate-urls?#define-canonical). If you did not declare a canonical URL, this field is absent.
|
|
227
|
+
*/
|
|
228
|
+
userCanonical?: string | null;
|
|
229
|
+
/**
|
|
230
|
+
* High level verdict about whether the URL *is* indexed (indexed status), or *can be* indexed (live inspection).
|
|
231
|
+
*/
|
|
232
|
+
verdict?: string | null;
|
|
233
|
+
}
|
|
234
|
+
/**
|
|
235
|
+
* Index inspection request.
|
|
236
|
+
*/
|
|
237
|
+
export interface Schema$InspectUrlIndexRequest {
|
|
238
|
+
/**
|
|
239
|
+
* Required. URL to inspect. Must be under the property specified in "site_url".
|
|
240
|
+
*/
|
|
241
|
+
inspectionUrl?: string | null;
|
|
242
|
+
/**
|
|
243
|
+
* Optional. An [IETF BCP-47](https://en.wikipedia.org/wiki/IETF_language_tag) language code representing the requested language for translated issue messages, e.g. "en-US", "or "de-CH". Default value is "en-US".
|
|
244
|
+
*/
|
|
245
|
+
languageCode?: string | null;
|
|
246
|
+
/**
|
|
247
|
+
* Required. The URL of the property as defined in Search Console. **Examples:** `http://www.example.com/` for a URL-prefix property, or `sc-domain:example.com` for a Domain property.
|
|
248
|
+
*/
|
|
249
|
+
siteUrl?: string | null;
|
|
250
|
+
}
|
|
251
|
+
/**
|
|
252
|
+
* Index-Status inspection response.
|
|
253
|
+
*/
|
|
254
|
+
export interface Schema$InspectUrlIndexResponse {
|
|
255
|
+
/**
|
|
256
|
+
* URL inspection results.
|
|
257
|
+
*/
|
|
258
|
+
inspectionResult?: Schema$UrlInspectionResult;
|
|
259
|
+
}
|
|
260
|
+
/**
|
|
261
|
+
* A specific rich result found on the page.
|
|
262
|
+
*/
|
|
263
|
+
export interface Schema$Item {
|
|
264
|
+
/**
|
|
265
|
+
* A list of zero or more rich result issues found for this instance.
|
|
266
|
+
*/
|
|
267
|
+
issues?: Schema$RichResultsIssue[];
|
|
268
|
+
/**
|
|
269
|
+
* The user-provided name of this item.
|
|
270
|
+
*/
|
|
271
|
+
name?: string | null;
|
|
272
|
+
}
|
|
121
273
|
/**
|
|
122
274
|
* Mobile-friendly issue.
|
|
123
275
|
*/
|
|
@@ -127,6 +279,36 @@ export declare namespace searchconsole_v1 {
|
|
|
127
279
|
*/
|
|
128
280
|
rule?: string | null;
|
|
129
281
|
}
|
|
282
|
+
/**
|
|
283
|
+
* Mobile-usability inspection results.
|
|
284
|
+
*/
|
|
285
|
+
export interface Schema$MobileUsabilityInspectionResult {
|
|
286
|
+
/**
|
|
287
|
+
* A list of zero or more mobile-usability issues detected for this URL.
|
|
288
|
+
*/
|
|
289
|
+
issues?: Schema$MobileUsabilityIssue[];
|
|
290
|
+
/**
|
|
291
|
+
* High-level mobile-usability inspection result for this URL.
|
|
292
|
+
*/
|
|
293
|
+
verdict?: string | null;
|
|
294
|
+
}
|
|
295
|
+
/**
|
|
296
|
+
* Mobile-usability issue.
|
|
297
|
+
*/
|
|
298
|
+
export interface Schema$MobileUsabilityIssue {
|
|
299
|
+
/**
|
|
300
|
+
* Mobile-usability issue type.
|
|
301
|
+
*/
|
|
302
|
+
issueType?: string | null;
|
|
303
|
+
/**
|
|
304
|
+
* Additional information regarding the issue.
|
|
305
|
+
*/
|
|
306
|
+
message?: string | null;
|
|
307
|
+
/**
|
|
308
|
+
* Not returned; reserved for future use.
|
|
309
|
+
*/
|
|
310
|
+
severity?: string | null;
|
|
311
|
+
}
|
|
130
312
|
/**
|
|
131
313
|
* Information about a resource with issue.
|
|
132
314
|
*/
|
|
@@ -136,6 +318,32 @@ export declare namespace searchconsole_v1 {
|
|
|
136
318
|
*/
|
|
137
319
|
blockedResource?: Schema$BlockedResource;
|
|
138
320
|
}
|
|
321
|
+
/**
|
|
322
|
+
* Rich-Results inspection result, including any rich results found at this URL.
|
|
323
|
+
*/
|
|
324
|
+
export interface Schema$RichResultsInspectionResult {
|
|
325
|
+
/**
|
|
326
|
+
* A list of zero or more rich results detected on this page. Rich results that cannot even be parsed due to syntactic issues will not be listed here.
|
|
327
|
+
*/
|
|
328
|
+
detectedItems?: Schema$DetectedItems[];
|
|
329
|
+
/**
|
|
330
|
+
* High-level rich results inspection result for this URL.
|
|
331
|
+
*/
|
|
332
|
+
verdict?: string | null;
|
|
333
|
+
}
|
|
334
|
+
/**
|
|
335
|
+
* Severity and status of a single issue affecting a single rich result instance on a page.
|
|
336
|
+
*/
|
|
337
|
+
export interface Schema$RichResultsIssue {
|
|
338
|
+
/**
|
|
339
|
+
* Rich Results issue type.
|
|
340
|
+
*/
|
|
341
|
+
issueMessage?: string | null;
|
|
342
|
+
/**
|
|
343
|
+
* Severity of this issue: WARNING, or ERROR. Items with an issue of status ERROR cannot appear with rich result features in Google Search results.
|
|
344
|
+
*/
|
|
345
|
+
severity?: string | null;
|
|
346
|
+
}
|
|
139
347
|
/**
|
|
140
348
|
* Mobile-friendly test request.
|
|
141
349
|
*/
|
|
@@ -260,6 +468,31 @@ export declare namespace searchconsole_v1 {
|
|
|
260
468
|
*/
|
|
261
469
|
status?: string | null;
|
|
262
470
|
}
|
|
471
|
+
/**
|
|
472
|
+
* URL inspection result, including all inspection results.
|
|
473
|
+
*/
|
|
474
|
+
export interface Schema$UrlInspectionResult {
|
|
475
|
+
/**
|
|
476
|
+
* Result of the AMP analysis. Absent if the page is not an AMP page.
|
|
477
|
+
*/
|
|
478
|
+
ampResult?: Schema$AmpInspectionResult;
|
|
479
|
+
/**
|
|
480
|
+
* Result of the index status analysis.
|
|
481
|
+
*/
|
|
482
|
+
indexStatusResult?: Schema$IndexStatusInspectionResult;
|
|
483
|
+
/**
|
|
484
|
+
* Link to Search Console URL inspection.
|
|
485
|
+
*/
|
|
486
|
+
inspectionResultLink?: string | null;
|
|
487
|
+
/**
|
|
488
|
+
* Result of the Mobile usability analysis.
|
|
489
|
+
*/
|
|
490
|
+
mobileUsabilityResult?: Schema$MobileUsabilityInspectionResult;
|
|
491
|
+
/**
|
|
492
|
+
* Result of the Rich Results analysis. Absent if there are no rich results found.
|
|
493
|
+
*/
|
|
494
|
+
richResultsResult?: Schema$RichResultsInspectionResult;
|
|
495
|
+
}
|
|
263
496
|
/**
|
|
264
497
|
* Contains permission level information about a Search Console site. For more information, see [Permissions in Search Console](https://support.google.com/webmasters/answer/2451999).
|
|
265
498
|
*/
|
|
@@ -944,6 +1177,87 @@ export declare namespace searchconsole_v1 {
|
|
|
944
1177
|
}
|
|
945
1178
|
export interface Params$Resource$Sites$List extends StandardParameters {
|
|
946
1179
|
}
|
|
1180
|
+
export class Resource$Urlinspection {
|
|
1181
|
+
context: APIRequestContext;
|
|
1182
|
+
index: Resource$Urlinspection$Index;
|
|
1183
|
+
constructor(context: APIRequestContext);
|
|
1184
|
+
}
|
|
1185
|
+
export class Resource$Urlinspection$Index {
|
|
1186
|
+
context: APIRequestContext;
|
|
1187
|
+
constructor(context: APIRequestContext);
|
|
1188
|
+
/**
|
|
1189
|
+
* Index inspection.
|
|
1190
|
+
* @example
|
|
1191
|
+
* ```js
|
|
1192
|
+
* // Before running the sample:
|
|
1193
|
+
* // - Enable the API at:
|
|
1194
|
+
* // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
|
|
1195
|
+
* // - Login into gcloud by running:
|
|
1196
|
+
* // `$ gcloud auth application-default login`
|
|
1197
|
+
* // - Install the npm module by running:
|
|
1198
|
+
* // `$ npm install googleapis`
|
|
1199
|
+
*
|
|
1200
|
+
* const {google} = require('googleapis');
|
|
1201
|
+
* const searchconsole = google.searchconsole('v1');
|
|
1202
|
+
*
|
|
1203
|
+
* async function main() {
|
|
1204
|
+
* const auth = new google.auth.GoogleAuth({
|
|
1205
|
+
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1206
|
+
* scopes: [
|
|
1207
|
+
* 'https://www.googleapis.com/auth/webmasters',
|
|
1208
|
+
* 'https://www.googleapis.com/auth/webmasters.readonly',
|
|
1209
|
+
* ],
|
|
1210
|
+
* });
|
|
1211
|
+
*
|
|
1212
|
+
* // Acquire an auth client, and bind it to all future calls
|
|
1213
|
+
* const authClient = await auth.getClient();
|
|
1214
|
+
* google.options({auth: authClient});
|
|
1215
|
+
*
|
|
1216
|
+
* // Do the magic
|
|
1217
|
+
* const res = await searchconsole.urlInspection.index.inspect({
|
|
1218
|
+
* // Request body metadata
|
|
1219
|
+
* requestBody: {
|
|
1220
|
+
* // request body parameters
|
|
1221
|
+
* // {
|
|
1222
|
+
* // "inspectionUrl": "my_inspectionUrl",
|
|
1223
|
+
* // "languageCode": "my_languageCode",
|
|
1224
|
+
* // "siteUrl": "my_siteUrl"
|
|
1225
|
+
* // }
|
|
1226
|
+
* },
|
|
1227
|
+
* });
|
|
1228
|
+
* console.log(res.data);
|
|
1229
|
+
*
|
|
1230
|
+
* // Example response
|
|
1231
|
+
* // {
|
|
1232
|
+
* // "inspectionResult": {}
|
|
1233
|
+
* // }
|
|
1234
|
+
* }
|
|
1235
|
+
*
|
|
1236
|
+
* main().catch(e => {
|
|
1237
|
+
* console.error(e);
|
|
1238
|
+
* throw e;
|
|
1239
|
+
* });
|
|
1240
|
+
*
|
|
1241
|
+
* ```
|
|
1242
|
+
*
|
|
1243
|
+
* @param params - Parameters for request
|
|
1244
|
+
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
|
|
1245
|
+
* @param callback - Optional callback that handles the response.
|
|
1246
|
+
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1247
|
+
*/
|
|
1248
|
+
inspect(params: Params$Resource$Urlinspection$Index$Inspect, options: StreamMethodOptions): GaxiosPromise<Readable>;
|
|
1249
|
+
inspect(params?: Params$Resource$Urlinspection$Index$Inspect, options?: MethodOptions): GaxiosPromise<Schema$InspectUrlIndexResponse>;
|
|
1250
|
+
inspect(params: Params$Resource$Urlinspection$Index$Inspect, options: StreamMethodOptions | BodyResponseCallback<Readable>, callback: BodyResponseCallback<Readable>): void;
|
|
1251
|
+
inspect(params: Params$Resource$Urlinspection$Index$Inspect, options: MethodOptions | BodyResponseCallback<Schema$InspectUrlIndexResponse>, callback: BodyResponseCallback<Schema$InspectUrlIndexResponse>): void;
|
|
1252
|
+
inspect(params: Params$Resource$Urlinspection$Index$Inspect, callback: BodyResponseCallback<Schema$InspectUrlIndexResponse>): void;
|
|
1253
|
+
inspect(callback: BodyResponseCallback<Schema$InspectUrlIndexResponse>): void;
|
|
1254
|
+
}
|
|
1255
|
+
export interface Params$Resource$Urlinspection$Index$Inspect extends StandardParameters {
|
|
1256
|
+
/**
|
|
1257
|
+
* Request body metadata
|
|
1258
|
+
*/
|
|
1259
|
+
requestBody?: Schema$InspectUrlIndexRequest;
|
|
1260
|
+
}
|
|
947
1261
|
export class Resource$Urltestingtools {
|
|
948
1262
|
context: APIRequestContext;
|
|
949
1263
|
mobileFriendlyTest: Resource$Urltestingtools$Mobilefriendlytest;
|
package/build/v1.js
CHANGED
|
@@ -41,6 +41,7 @@ var searchconsole_v1;
|
|
|
41
41
|
this.searchanalytics = new Resource$Searchanalytics(this.context);
|
|
42
42
|
this.sitemaps = new Resource$Sitemaps(this.context);
|
|
43
43
|
this.sites = new Resource$Sites(this.context);
|
|
44
|
+
this.urlInspection = new Resource$Urlinspection(this.context);
|
|
44
45
|
this.urlTestingTools = new Resource$Urltestingtools(this.context);
|
|
45
46
|
}
|
|
46
47
|
}
|
|
@@ -334,6 +335,50 @@ var searchconsole_v1;
|
|
|
334
335
|
}
|
|
335
336
|
}
|
|
336
337
|
searchconsole_v1.Resource$Sites = Resource$Sites;
|
|
338
|
+
class Resource$Urlinspection {
|
|
339
|
+
constructor(context) {
|
|
340
|
+
this.context = context;
|
|
341
|
+
this.index = new Resource$Urlinspection$Index(this.context);
|
|
342
|
+
}
|
|
343
|
+
}
|
|
344
|
+
searchconsole_v1.Resource$Urlinspection = Resource$Urlinspection;
|
|
345
|
+
class Resource$Urlinspection$Index {
|
|
346
|
+
constructor(context) {
|
|
347
|
+
this.context = context;
|
|
348
|
+
}
|
|
349
|
+
inspect(paramsOrCallback, optionsOrCallback, callback) {
|
|
350
|
+
let params = (paramsOrCallback ||
|
|
351
|
+
{});
|
|
352
|
+
let options = (optionsOrCallback || {});
|
|
353
|
+
if (typeof paramsOrCallback === 'function') {
|
|
354
|
+
callback = paramsOrCallback;
|
|
355
|
+
params = {};
|
|
356
|
+
options = {};
|
|
357
|
+
}
|
|
358
|
+
if (typeof optionsOrCallback === 'function') {
|
|
359
|
+
callback = optionsOrCallback;
|
|
360
|
+
options = {};
|
|
361
|
+
}
|
|
362
|
+
const rootUrl = options.rootUrl || 'https://searchconsole.googleapis.com/';
|
|
363
|
+
const parameters = {
|
|
364
|
+
options: Object.assign({
|
|
365
|
+
url: (rootUrl + '/v1/urlInspection/index:inspect').replace(/([^:]\/)\/+/g, '$1'),
|
|
366
|
+
method: 'POST',
|
|
367
|
+
}, options),
|
|
368
|
+
params,
|
|
369
|
+
requiredParams: [],
|
|
370
|
+
pathParams: [],
|
|
371
|
+
context: this.context,
|
|
372
|
+
};
|
|
373
|
+
if (callback) {
|
|
374
|
+
googleapis_common_1.createAPIRequest(parameters, callback);
|
|
375
|
+
}
|
|
376
|
+
else {
|
|
377
|
+
return googleapis_common_1.createAPIRequest(parameters);
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
searchconsole_v1.Resource$Urlinspection$Index = Resource$Urlinspection$Index;
|
|
337
382
|
class Resource$Urltestingtools {
|
|
338
383
|
constructor(context) {
|
|
339
384
|
this.context = context;
|
package/build/v1.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v1.js","sourceRoot":"","sources":["../v1.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"v1.js","sourceRoot":"","sources":["../v1.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/v1.ts
CHANGED
|
@@ -116,6 +116,7 @@ export namespace searchconsole_v1 {
|
|
|
116
116
|
searchanalytics: Resource$Searchanalytics;
|
|
117
117
|
sitemaps: Resource$Sitemaps;
|
|
118
118
|
sites: Resource$Sites;
|
|
119
|
+
urlInspection: Resource$Urlinspection;
|
|
119
120
|
urlTestingTools: Resource$Urltestingtools;
|
|
120
121
|
|
|
121
122
|
constructor(options: GlobalOptions, google?: GoogleConfigurable) {
|
|
@@ -127,10 +128,61 @@ export namespace searchconsole_v1 {
|
|
|
127
128
|
this.searchanalytics = new Resource$Searchanalytics(this.context);
|
|
128
129
|
this.sitemaps = new Resource$Sitemaps(this.context);
|
|
129
130
|
this.sites = new Resource$Sites(this.context);
|
|
131
|
+
this.urlInspection = new Resource$Urlinspection(this.context);
|
|
130
132
|
this.urlTestingTools = new Resource$Urltestingtools(this.context);
|
|
131
133
|
}
|
|
132
134
|
}
|
|
133
135
|
|
|
136
|
+
/**
|
|
137
|
+
* AMP inspection result of the live page or the current information from Google's index, depending on whether you requested a live inspection or not.
|
|
138
|
+
*/
|
|
139
|
+
export interface Schema$AmpInspectionResult {
|
|
140
|
+
/**
|
|
141
|
+
* Index status of the AMP URL.
|
|
142
|
+
*/
|
|
143
|
+
ampIndexStatusVerdict?: string | null;
|
|
144
|
+
/**
|
|
145
|
+
* URL of the AMP that was inspected. If the submitted URL is a desktop page that refers to an AMP version, the AMP version will be inspected.
|
|
146
|
+
*/
|
|
147
|
+
ampUrl?: string | null;
|
|
148
|
+
/**
|
|
149
|
+
* Whether or not the page blocks indexing through a noindex rule.
|
|
150
|
+
*/
|
|
151
|
+
indexingState?: string | null;
|
|
152
|
+
/**
|
|
153
|
+
* A list of zero or more AMP issues found for the inspected URL.
|
|
154
|
+
*/
|
|
155
|
+
issues?: Schema$AmpIssue[];
|
|
156
|
+
/**
|
|
157
|
+
* Last time this AMP version was crawled by Google. Absent if the URL was never crawled successfully.
|
|
158
|
+
*/
|
|
159
|
+
lastCrawlTime?: string | null;
|
|
160
|
+
/**
|
|
161
|
+
* Whether or not Google could fetch the AMP.
|
|
162
|
+
*/
|
|
163
|
+
pageFetchState?: string | null;
|
|
164
|
+
/**
|
|
165
|
+
* Whether or not the page is blocked to Google by a robots.txt rule.
|
|
166
|
+
*/
|
|
167
|
+
robotsTxtState?: string | null;
|
|
168
|
+
/**
|
|
169
|
+
* The status of the most severe error on the page. If a page has both warnings and errors, the page status is error. Error status means the page cannot be shown in Search results.
|
|
170
|
+
*/
|
|
171
|
+
verdict?: string | null;
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* AMP issue.
|
|
175
|
+
*/
|
|
176
|
+
export interface Schema$AmpIssue {
|
|
177
|
+
/**
|
|
178
|
+
* Brief description of this issue.
|
|
179
|
+
*/
|
|
180
|
+
issueMessage?: string | null;
|
|
181
|
+
/**
|
|
182
|
+
* Severity of this issue: WARNING or ERROR.
|
|
183
|
+
*/
|
|
184
|
+
severity?: string | null;
|
|
185
|
+
}
|
|
134
186
|
export interface Schema$ApiDataRow {
|
|
135
187
|
clicks?: number | null;
|
|
136
188
|
ctr?: number | null;
|
|
@@ -162,6 +214,19 @@ export namespace searchconsole_v1 {
|
|
|
162
214
|
*/
|
|
163
215
|
url?: string | null;
|
|
164
216
|
}
|
|
217
|
+
/**
|
|
218
|
+
* Rich Results items grouped by type.
|
|
219
|
+
*/
|
|
220
|
+
export interface Schema$DetectedItems {
|
|
221
|
+
/**
|
|
222
|
+
* List of Rich Results items.
|
|
223
|
+
*/
|
|
224
|
+
items?: Schema$Item[];
|
|
225
|
+
/**
|
|
226
|
+
* Rich Results type
|
|
227
|
+
*/
|
|
228
|
+
richResultType?: string | null;
|
|
229
|
+
}
|
|
165
230
|
/**
|
|
166
231
|
* Describe image data.
|
|
167
232
|
*/
|
|
@@ -175,6 +240,94 @@ export namespace searchconsole_v1 {
|
|
|
175
240
|
*/
|
|
176
241
|
mimeType?: string | null;
|
|
177
242
|
}
|
|
243
|
+
/**
|
|
244
|
+
* Results of index status inspection for either the live page or the version in Google's index, depending on whether you requested a live inspection or not. For more information, see the [Index coverage report documentation](https://support.google.com/webmasters/answer/7440203).
|
|
245
|
+
*/
|
|
246
|
+
export interface Schema$IndexStatusInspectionResult {
|
|
247
|
+
/**
|
|
248
|
+
* Could Google find and index the page. More details about page indexing appear in 'indexing_state'.
|
|
249
|
+
*/
|
|
250
|
+
coverageState?: string | null;
|
|
251
|
+
/**
|
|
252
|
+
* Primary crawler that was used by Google to crawl your site.
|
|
253
|
+
*/
|
|
254
|
+
crawledAs?: string | null;
|
|
255
|
+
/**
|
|
256
|
+
* The URL of the page that Google selected as canonical. If the page was not indexed, this field is absent.
|
|
257
|
+
*/
|
|
258
|
+
googleCanonical?: string | null;
|
|
259
|
+
/**
|
|
260
|
+
* Whether or not the page blocks indexing through a noindex rule.
|
|
261
|
+
*/
|
|
262
|
+
indexingState?: string | null;
|
|
263
|
+
/**
|
|
264
|
+
* Last time this URL was crawled by Google using the [primary crawler](https://support.google.com/webmasters/answer/7440203#primary_crawler). Absent if the URL was never crawled successfully.
|
|
265
|
+
*/
|
|
266
|
+
lastCrawlTime?: string | null;
|
|
267
|
+
/**
|
|
268
|
+
* Whether or not Google could retrieve the page from your server. Equivalent to ["page fetch"](https://support.google.com/webmasters/answer/9012289#index_coverage) in the URL inspection report.
|
|
269
|
+
*/
|
|
270
|
+
pageFetchState?: string | null;
|
|
271
|
+
/**
|
|
272
|
+
* URLs that link to the inspected URL, directly and indirectly.
|
|
273
|
+
*/
|
|
274
|
+
referringUrls?: string[] | null;
|
|
275
|
+
/**
|
|
276
|
+
* Whether or not the page is blocked to Google by a robots.txt rule.
|
|
277
|
+
*/
|
|
278
|
+
robotsTxtState?: string | null;
|
|
279
|
+
/**
|
|
280
|
+
* Any sitemaps that this URL was listed in, as known by Google. Not guaranteed to be an exhaustive list, especially if Google did not discover this URL through a sitemap. Absent if no sitemaps were found.
|
|
281
|
+
*/
|
|
282
|
+
sitemap?: string[] | null;
|
|
283
|
+
/**
|
|
284
|
+
* The URL that your page or site [declares as canonical](https://developers.google.com/search/docs/advanced/crawling/consolidate-duplicate-urls?#define-canonical). If you did not declare a canonical URL, this field is absent.
|
|
285
|
+
*/
|
|
286
|
+
userCanonical?: string | null;
|
|
287
|
+
/**
|
|
288
|
+
* High level verdict about whether the URL *is* indexed (indexed status), or *can be* indexed (live inspection).
|
|
289
|
+
*/
|
|
290
|
+
verdict?: string | null;
|
|
291
|
+
}
|
|
292
|
+
/**
|
|
293
|
+
* Index inspection request.
|
|
294
|
+
*/
|
|
295
|
+
export interface Schema$InspectUrlIndexRequest {
|
|
296
|
+
/**
|
|
297
|
+
* Required. URL to inspect. Must be under the property specified in "site_url".
|
|
298
|
+
*/
|
|
299
|
+
inspectionUrl?: string | null;
|
|
300
|
+
/**
|
|
301
|
+
* Optional. An [IETF BCP-47](https://en.wikipedia.org/wiki/IETF_language_tag) language code representing the requested language for translated issue messages, e.g. "en-US", "or "de-CH". Default value is "en-US".
|
|
302
|
+
*/
|
|
303
|
+
languageCode?: string | null;
|
|
304
|
+
/**
|
|
305
|
+
* Required. The URL of the property as defined in Search Console. **Examples:** `http://www.example.com/` for a URL-prefix property, or `sc-domain:example.com` for a Domain property.
|
|
306
|
+
*/
|
|
307
|
+
siteUrl?: string | null;
|
|
308
|
+
}
|
|
309
|
+
/**
|
|
310
|
+
* Index-Status inspection response.
|
|
311
|
+
*/
|
|
312
|
+
export interface Schema$InspectUrlIndexResponse {
|
|
313
|
+
/**
|
|
314
|
+
* URL inspection results.
|
|
315
|
+
*/
|
|
316
|
+
inspectionResult?: Schema$UrlInspectionResult;
|
|
317
|
+
}
|
|
318
|
+
/**
|
|
319
|
+
* A specific rich result found on the page.
|
|
320
|
+
*/
|
|
321
|
+
export interface Schema$Item {
|
|
322
|
+
/**
|
|
323
|
+
* A list of zero or more rich result issues found for this instance.
|
|
324
|
+
*/
|
|
325
|
+
issues?: Schema$RichResultsIssue[];
|
|
326
|
+
/**
|
|
327
|
+
* The user-provided name of this item.
|
|
328
|
+
*/
|
|
329
|
+
name?: string | null;
|
|
330
|
+
}
|
|
178
331
|
/**
|
|
179
332
|
* Mobile-friendly issue.
|
|
180
333
|
*/
|
|
@@ -184,6 +337,36 @@ export namespace searchconsole_v1 {
|
|
|
184
337
|
*/
|
|
185
338
|
rule?: string | null;
|
|
186
339
|
}
|
|
340
|
+
/**
|
|
341
|
+
* Mobile-usability inspection results.
|
|
342
|
+
*/
|
|
343
|
+
export interface Schema$MobileUsabilityInspectionResult {
|
|
344
|
+
/**
|
|
345
|
+
* A list of zero or more mobile-usability issues detected for this URL.
|
|
346
|
+
*/
|
|
347
|
+
issues?: Schema$MobileUsabilityIssue[];
|
|
348
|
+
/**
|
|
349
|
+
* High-level mobile-usability inspection result for this URL.
|
|
350
|
+
*/
|
|
351
|
+
verdict?: string | null;
|
|
352
|
+
}
|
|
353
|
+
/**
|
|
354
|
+
* Mobile-usability issue.
|
|
355
|
+
*/
|
|
356
|
+
export interface Schema$MobileUsabilityIssue {
|
|
357
|
+
/**
|
|
358
|
+
* Mobile-usability issue type.
|
|
359
|
+
*/
|
|
360
|
+
issueType?: string | null;
|
|
361
|
+
/**
|
|
362
|
+
* Additional information regarding the issue.
|
|
363
|
+
*/
|
|
364
|
+
message?: string | null;
|
|
365
|
+
/**
|
|
366
|
+
* Not returned; reserved for future use.
|
|
367
|
+
*/
|
|
368
|
+
severity?: string | null;
|
|
369
|
+
}
|
|
187
370
|
/**
|
|
188
371
|
* Information about a resource with issue.
|
|
189
372
|
*/
|
|
@@ -193,6 +376,32 @@ export namespace searchconsole_v1 {
|
|
|
193
376
|
*/
|
|
194
377
|
blockedResource?: Schema$BlockedResource;
|
|
195
378
|
}
|
|
379
|
+
/**
|
|
380
|
+
* Rich-Results inspection result, including any rich results found at this URL.
|
|
381
|
+
*/
|
|
382
|
+
export interface Schema$RichResultsInspectionResult {
|
|
383
|
+
/**
|
|
384
|
+
* A list of zero or more rich results detected on this page. Rich results that cannot even be parsed due to syntactic issues will not be listed here.
|
|
385
|
+
*/
|
|
386
|
+
detectedItems?: Schema$DetectedItems[];
|
|
387
|
+
/**
|
|
388
|
+
* High-level rich results inspection result for this URL.
|
|
389
|
+
*/
|
|
390
|
+
verdict?: string | null;
|
|
391
|
+
}
|
|
392
|
+
/**
|
|
393
|
+
* Severity and status of a single issue affecting a single rich result instance on a page.
|
|
394
|
+
*/
|
|
395
|
+
export interface Schema$RichResultsIssue {
|
|
396
|
+
/**
|
|
397
|
+
* Rich Results issue type.
|
|
398
|
+
*/
|
|
399
|
+
issueMessage?: string | null;
|
|
400
|
+
/**
|
|
401
|
+
* Severity of this issue: WARNING, or ERROR. Items with an issue of status ERROR cannot appear with rich result features in Google Search results.
|
|
402
|
+
*/
|
|
403
|
+
severity?: string | null;
|
|
404
|
+
}
|
|
196
405
|
/**
|
|
197
406
|
* Mobile-friendly test request.
|
|
198
407
|
*/
|
|
@@ -317,6 +526,31 @@ export namespace searchconsole_v1 {
|
|
|
317
526
|
*/
|
|
318
527
|
status?: string | null;
|
|
319
528
|
}
|
|
529
|
+
/**
|
|
530
|
+
* URL inspection result, including all inspection results.
|
|
531
|
+
*/
|
|
532
|
+
export interface Schema$UrlInspectionResult {
|
|
533
|
+
/**
|
|
534
|
+
* Result of the AMP analysis. Absent if the page is not an AMP page.
|
|
535
|
+
*/
|
|
536
|
+
ampResult?: Schema$AmpInspectionResult;
|
|
537
|
+
/**
|
|
538
|
+
* Result of the index status analysis.
|
|
539
|
+
*/
|
|
540
|
+
indexStatusResult?: Schema$IndexStatusInspectionResult;
|
|
541
|
+
/**
|
|
542
|
+
* Link to Search Console URL inspection.
|
|
543
|
+
*/
|
|
544
|
+
inspectionResultLink?: string | null;
|
|
545
|
+
/**
|
|
546
|
+
* Result of the Mobile usability analysis.
|
|
547
|
+
*/
|
|
548
|
+
mobileUsabilityResult?: Schema$MobileUsabilityInspectionResult;
|
|
549
|
+
/**
|
|
550
|
+
* Result of the Rich Results analysis. Absent if there are no rich results found.
|
|
551
|
+
*/
|
|
552
|
+
richResultsResult?: Schema$RichResultsInspectionResult;
|
|
553
|
+
}
|
|
320
554
|
/**
|
|
321
555
|
* Contains permission level information about a Search Console site. For more information, see [Permissions in Search Console](https://support.google.com/webmasters/answer/2451999).
|
|
322
556
|
*/
|
|
@@ -1678,6 +1912,177 @@ export namespace searchconsole_v1 {
|
|
|
1678
1912
|
}
|
|
1679
1913
|
export interface Params$Resource$Sites$List extends StandardParameters {}
|
|
1680
1914
|
|
|
1915
|
+
export class Resource$Urlinspection {
|
|
1916
|
+
context: APIRequestContext;
|
|
1917
|
+
index: Resource$Urlinspection$Index;
|
|
1918
|
+
constructor(context: APIRequestContext) {
|
|
1919
|
+
this.context = context;
|
|
1920
|
+
this.index = new Resource$Urlinspection$Index(this.context);
|
|
1921
|
+
}
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
export class Resource$Urlinspection$Index {
|
|
1925
|
+
context: APIRequestContext;
|
|
1926
|
+
constructor(context: APIRequestContext) {
|
|
1927
|
+
this.context = context;
|
|
1928
|
+
}
|
|
1929
|
+
|
|
1930
|
+
/**
|
|
1931
|
+
* Index inspection.
|
|
1932
|
+
* @example
|
|
1933
|
+
* ```js
|
|
1934
|
+
* // Before running the sample:
|
|
1935
|
+
* // - Enable the API at:
|
|
1936
|
+
* // https://console.developers.google.com/apis/api/searchconsole.googleapis.com
|
|
1937
|
+
* // - Login into gcloud by running:
|
|
1938
|
+
* // `$ gcloud auth application-default login`
|
|
1939
|
+
* // - Install the npm module by running:
|
|
1940
|
+
* // `$ npm install googleapis`
|
|
1941
|
+
*
|
|
1942
|
+
* const {google} = require('googleapis');
|
|
1943
|
+
* const searchconsole = google.searchconsole('v1');
|
|
1944
|
+
*
|
|
1945
|
+
* async function main() {
|
|
1946
|
+
* const auth = new google.auth.GoogleAuth({
|
|
1947
|
+
* // Scopes can be specified either as an array or as a single, space-delimited string.
|
|
1948
|
+
* scopes: [
|
|
1949
|
+
* 'https://www.googleapis.com/auth/webmasters',
|
|
1950
|
+
* 'https://www.googleapis.com/auth/webmasters.readonly',
|
|
1951
|
+
* ],
|
|
1952
|
+
* });
|
|
1953
|
+
*
|
|
1954
|
+
* // Acquire an auth client, and bind it to all future calls
|
|
1955
|
+
* const authClient = await auth.getClient();
|
|
1956
|
+
* google.options({auth: authClient});
|
|
1957
|
+
*
|
|
1958
|
+
* // Do the magic
|
|
1959
|
+
* const res = await searchconsole.urlInspection.index.inspect({
|
|
1960
|
+
* // Request body metadata
|
|
1961
|
+
* requestBody: {
|
|
1962
|
+
* // request body parameters
|
|
1963
|
+
* // {
|
|
1964
|
+
* // "inspectionUrl": "my_inspectionUrl",
|
|
1965
|
+
* // "languageCode": "my_languageCode",
|
|
1966
|
+
* // "siteUrl": "my_siteUrl"
|
|
1967
|
+
* // }
|
|
1968
|
+
* },
|
|
1969
|
+
* });
|
|
1970
|
+
* console.log(res.data);
|
|
1971
|
+
*
|
|
1972
|
+
* // Example response
|
|
1973
|
+
* // {
|
|
1974
|
+
* // "inspectionResult": {}
|
|
1975
|
+
* // }
|
|
1976
|
+
* }
|
|
1977
|
+
*
|
|
1978
|
+
* main().catch(e => {
|
|
1979
|
+
* console.error(e);
|
|
1980
|
+
* throw e;
|
|
1981
|
+
* });
|
|
1982
|
+
*
|
|
1983
|
+
* ```
|
|
1984
|
+
*
|
|
1985
|
+
* @param params - Parameters for request
|
|
1986
|
+
* @param options - Optionally override request options, such as `url`, `method`, and `encoding`.
|
|
1987
|
+
* @param callback - Optional callback that handles the response.
|
|
1988
|
+
* @returns A promise if used with async/await, or void if used with a callback.
|
|
1989
|
+
*/
|
|
1990
|
+
inspect(
|
|
1991
|
+
params: Params$Resource$Urlinspection$Index$Inspect,
|
|
1992
|
+
options: StreamMethodOptions
|
|
1993
|
+
): GaxiosPromise<Readable>;
|
|
1994
|
+
inspect(
|
|
1995
|
+
params?: Params$Resource$Urlinspection$Index$Inspect,
|
|
1996
|
+
options?: MethodOptions
|
|
1997
|
+
): GaxiosPromise<Schema$InspectUrlIndexResponse>;
|
|
1998
|
+
inspect(
|
|
1999
|
+
params: Params$Resource$Urlinspection$Index$Inspect,
|
|
2000
|
+
options: StreamMethodOptions | BodyResponseCallback<Readable>,
|
|
2001
|
+
callback: BodyResponseCallback<Readable>
|
|
2002
|
+
): void;
|
|
2003
|
+
inspect(
|
|
2004
|
+
params: Params$Resource$Urlinspection$Index$Inspect,
|
|
2005
|
+
options:
|
|
2006
|
+
| MethodOptions
|
|
2007
|
+
| BodyResponseCallback<Schema$InspectUrlIndexResponse>,
|
|
2008
|
+
callback: BodyResponseCallback<Schema$InspectUrlIndexResponse>
|
|
2009
|
+
): void;
|
|
2010
|
+
inspect(
|
|
2011
|
+
params: Params$Resource$Urlinspection$Index$Inspect,
|
|
2012
|
+
callback: BodyResponseCallback<Schema$InspectUrlIndexResponse>
|
|
2013
|
+
): void;
|
|
2014
|
+
inspect(
|
|
2015
|
+
callback: BodyResponseCallback<Schema$InspectUrlIndexResponse>
|
|
2016
|
+
): void;
|
|
2017
|
+
inspect(
|
|
2018
|
+
paramsOrCallback?:
|
|
2019
|
+
| Params$Resource$Urlinspection$Index$Inspect
|
|
2020
|
+
| BodyResponseCallback<Schema$InspectUrlIndexResponse>
|
|
2021
|
+
| BodyResponseCallback<Readable>,
|
|
2022
|
+
optionsOrCallback?:
|
|
2023
|
+
| MethodOptions
|
|
2024
|
+
| StreamMethodOptions
|
|
2025
|
+
| BodyResponseCallback<Schema$InspectUrlIndexResponse>
|
|
2026
|
+
| BodyResponseCallback<Readable>,
|
|
2027
|
+
callback?:
|
|
2028
|
+
| BodyResponseCallback<Schema$InspectUrlIndexResponse>
|
|
2029
|
+
| BodyResponseCallback<Readable>
|
|
2030
|
+
):
|
|
2031
|
+
| void
|
|
2032
|
+
| GaxiosPromise<Schema$InspectUrlIndexResponse>
|
|
2033
|
+
| GaxiosPromise<Readable> {
|
|
2034
|
+
let params = (paramsOrCallback ||
|
|
2035
|
+
{}) as Params$Resource$Urlinspection$Index$Inspect;
|
|
2036
|
+
let options = (optionsOrCallback || {}) as MethodOptions;
|
|
2037
|
+
|
|
2038
|
+
if (typeof paramsOrCallback === 'function') {
|
|
2039
|
+
callback = paramsOrCallback;
|
|
2040
|
+
params = {} as Params$Resource$Urlinspection$Index$Inspect;
|
|
2041
|
+
options = {};
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
if (typeof optionsOrCallback === 'function') {
|
|
2045
|
+
callback = optionsOrCallback;
|
|
2046
|
+
options = {};
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
const rootUrl =
|
|
2050
|
+
options.rootUrl || 'https://searchconsole.googleapis.com/';
|
|
2051
|
+
const parameters = {
|
|
2052
|
+
options: Object.assign(
|
|
2053
|
+
{
|
|
2054
|
+
url: (rootUrl + '/v1/urlInspection/index:inspect').replace(
|
|
2055
|
+
/([^:]\/)\/+/g,
|
|
2056
|
+
'$1'
|
|
2057
|
+
),
|
|
2058
|
+
method: 'POST',
|
|
2059
|
+
},
|
|
2060
|
+
options
|
|
2061
|
+
),
|
|
2062
|
+
params,
|
|
2063
|
+
requiredParams: [],
|
|
2064
|
+
pathParams: [],
|
|
2065
|
+
context: this.context,
|
|
2066
|
+
};
|
|
2067
|
+
if (callback) {
|
|
2068
|
+
createAPIRequest<Schema$InspectUrlIndexResponse>(
|
|
2069
|
+
parameters,
|
|
2070
|
+
callback as BodyResponseCallback<unknown>
|
|
2071
|
+
);
|
|
2072
|
+
} else {
|
|
2073
|
+
return createAPIRequest<Schema$InspectUrlIndexResponse>(parameters);
|
|
2074
|
+
}
|
|
2075
|
+
}
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2078
|
+
export interface Params$Resource$Urlinspection$Index$Inspect
|
|
2079
|
+
extends StandardParameters {
|
|
2080
|
+
/**
|
|
2081
|
+
* Request body metadata
|
|
2082
|
+
*/
|
|
2083
|
+
requestBody?: Schema$InspectUrlIndexRequest;
|
|
2084
|
+
}
|
|
2085
|
+
|
|
1681
2086
|
export class Resource$Urltestingtools {
|
|
1682
2087
|
context: APIRequestContext;
|
|
1683
2088
|
mobileFriendlyTest: Resource$Urltestingtools$Mobilefriendlytest;
|