UNPKG

googleapis

Version:
189 lines (188 loc) 7.78 kB
/** * Copyright 2019 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { OAuth2Client, JWT, Compute, UserRefreshClient } from 'google-auth-library'; import { GoogleConfigurable, MethodOptions, GlobalOptions, BodyResponseCallback, APIRequestContext } from 'googleapis-common'; import { GaxiosPromise } from 'gaxios'; export declare namespace indexing_v3 { interface Options extends GlobalOptions { version: 'v3'; } interface StandardParameters { /** * V1 error format. */ '$.xgafv'?: string; /** * OAuth access token. */ access_token?: string; /** * Data format for response. */ alt?: string; /** * JSONP */ callback?: string; /** * Selector specifying which fields to include in a partial response. */ fields?: string; /** * API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */ key?: string; /** * OAuth 2.0 token for the current user. */ oauth_token?: string; /** * Returns response with indentations and line breaks. */ prettyPrint?: boolean; /** * Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */ quotaUser?: string; /** * Legacy upload protocol for media (e.g. "media", "multipart"). */ uploadType?: string; /** * Upload protocol for media (e.g. "raw", "multipart"). */ upload_protocol?: string; } /** * Indexing API * * Notifies Google when your web pages change. * * @example * const {google} = require('googleapis'); * const indexing = google.indexing('v3'); * * @namespace indexing * @type {Function} * @version v3 * @variation v3 * @param {object=} options Options for Indexing */ class Indexing { context: APIRequestContext; urlNotifications: Resource$Urlnotifications; constructor(options: GlobalOptions, google?: GoogleConfigurable); } /** * Output for PublishUrlNotification */ interface Schema$PublishUrlNotificationResponse { /** * Description of the notification events received for this URL. */ urlNotificationMetadata?: Schema$UrlNotificationMetadata; } /** * `UrlNotification` is the resource used in all Indexing API calls. It describes one event in the life cycle of a Web Document. */ interface Schema$UrlNotification { /** * Creation timestamp for this notification. Users should _not_ specify it, the field is ignored at the request time. */ notifyTime?: string; /** * The URL life cycle event that Google is being notified about. */ type?: string; /** * The object of this notification. The URL must be owned by the publisher of this notification and, in case of `URL_UPDATED` notifications, it _must_ be crawlable by Google. */ url?: string; } /** * Summary of the most recent Indexing API notifications successfully received, for a given URL. */ interface Schema$UrlNotificationMetadata { /** * Latest notification received with type `URL_REMOVED`. */ latestRemove?: Schema$UrlNotification; /** * Latest notification received with type `URL_UPDATED`. */ latestUpdate?: Schema$UrlNotification; /** * URL to which this metadata refers. */ url?: string; } class Resource$Urlnotifications { context: APIRequestContext; constructor(context: APIRequestContext); /** * indexing.urlNotifications.getMetadata * @desc Gets metadata about a Web Document. This method can _only_ be used to query URLs that were previously seen in successful Indexing API notifications. Includes the latest `UrlNotification` received via this API. * @alias indexing.urlNotifications.getMetadata * @memberOf! () * * @param {object} params Parameters for request * @param {string=} params.url URL that is being queried. * @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`. * @param {callback} callback The callback that handles the response. * @return {object} Request object */ getMetadata(params?: Params$Resource$Urlnotifications$Getmetadata, options?: MethodOptions): GaxiosPromise<Schema$UrlNotificationMetadata>; getMetadata(params: Params$Resource$Urlnotifications$Getmetadata, options: MethodOptions | BodyResponseCallback<Schema$UrlNotificationMetadata>, callback: BodyResponseCallback<Schema$UrlNotificationMetadata>): void; getMetadata(params: Params$Resource$Urlnotifications$Getmetadata, callback: BodyResponseCallback<Schema$UrlNotificationMetadata>): void; getMetadata(callback: BodyResponseCallback<Schema$UrlNotificationMetadata>): void; /** * indexing.urlNotifications.publish * @desc Notifies that a URL has been updated or deleted. * @alias indexing.urlNotifications.publish * @memberOf! () * * @param {object} params Parameters for request * @param {().UrlNotification} params.resource Request body data * @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`. * @param {callback} callback The callback that handles the response. * @return {object} Request object */ publish(params?: Params$Resource$Urlnotifications$Publish, options?: MethodOptions): GaxiosPromise<Schema$PublishUrlNotificationResponse>; publish(params: Params$Resource$Urlnotifications$Publish, options: MethodOptions | BodyResponseCallback<Schema$PublishUrlNotificationResponse>, callback: BodyResponseCallback<Schema$PublishUrlNotificationResponse>): void; publish(params: Params$Resource$Urlnotifications$Publish, callback: BodyResponseCallback<Schema$PublishUrlNotificationResponse>): void; publish(callback: BodyResponseCallback<Schema$PublishUrlNotificationResponse>): void; } interface Params$Resource$Urlnotifications$Getmetadata extends StandardParameters { /** * Auth client or API Key for the request */ auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient; /** * URL that is being queried. */ url?: string; } interface Params$Resource$Urlnotifications$Publish extends StandardParameters { /** * Auth client or API Key for the request */ auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient; /** * Request body metadata */ requestBody?: Schema$UrlNotification; } }