UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

25 lines (24 loc) 889 B
import { RVSqlBasedDataSource } from "../AbstractClasses/RVSqlBasedDataSource"; import { nullableString } from "../types"; /** Amazon Redshift data source, it adds the database name property to the base properties inherited from the abstract class RVSqlBasedDataSource. */ export declare class RVRedshiftDataSource extends RVSqlBasedDataSource { private _database; private _schema; constructor(); /** @hidden */ constructor(json: any); /** @hidden */ toJson(): any; /** @hidden */ getProviderKey(): string; /** Name of the database to connect to. */ get database(): nullableString; set database(value: nullableString); /** Name of the schema to use. */ get schema(): nullableString; set schema(value: nullableString); /** @hidden */ getType(): string; /** @hidden */ _getWrapper(): any; }