You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
990 B
34 lines
990 B
import { Metadata, ServiceObject } from './nodejs-common';
|
|
import { Storage } from './storage';
|
|
export interface StopCallback {
|
|
(err: Error | null, apiResponse?: Metadata): void;
|
|
}
|
|
/**
|
|
* Create a channel object to interact with a Cloud Storage channel.
|
|
*
|
|
* See {@link https://cloud.google.com/storage/docs/object-change-notification| Object Change Notification}
|
|
*
|
|
* @class
|
|
*
|
|
* @param {string} id The ID of the channel.
|
|
* @param {string} resourceId The resource ID of the channel.
|
|
*
|
|
* @example
|
|
* ```
|
|
* const {Storage} = require('@google-cloud/storage');
|
|
* const storage = new Storage();
|
|
* const channel = storage.channel('id', 'resource-id');
|
|
* ```
|
|
*/
|
|
declare class Channel extends ServiceObject {
|
|
constructor(storage: Storage, id: string, resourceId: string);
|
|
stop(): Promise<Metadata>;
|
|
stop(callback: StopCallback): void;
|
|
}
|
|
/**
|
|
* Reference to the {@link Channel} class.
|
|
* @name module:@google-cloud/storage.Channel
|
|
* @see Channel
|
|
*/
|
|
export { Channel };
|