UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

27 lines (26 loc) 1.15 kB
import { RVDashboardDataSource } from "../AbstractClasses/RVDashboardDataSource"; import { nullableString } from "../types"; /** Web resource data source, used to download files from HTTP URL using GET method. * See {@link RVRESTDataSource} to use other HTTP methods or to customize parameters, headers and body to sent. */ export declare class RVWebResourceDataSource extends RVDashboardDataSource { constructor(); /** @hidden */ constructor(json: any); /** @hidden */ toJson(): any; /** @hidden */ getProviderKey(): string; private _url; /** URL to the web resource, is expected to be a URL with HTTP or HTTPS scheme. */ get url(): nullableString; set url(value: nullableString); private _useAnonymousAuthentication; /** Boolean flag indicating if anonymous authentication should be used for this data source or credentials must be requested * to the containing application. */ get useAnonymousAuthentication(): boolean; set useAnonymousAuthentication(value: boolean); /** @hidden */ getType(): string; /** @hidden */ _getWrapper(): any; }