/** * Permit.io API * Authorization as a service * * The version of the OpenAPI document: 2.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Data source configuration - where client\'s should retrive data from and how they should store it * @export * @interface DataSourceEntry */ export interface DataSourceEntry { /** * Url source to query for data * @type {string} * @memberof DataSourceEntry */ url: string; /** * Suggested fetcher configuration (e.g. auth or method) to fetch data with * @type {object} * @memberof DataSourceEntry */ config?: object; /** * topics the data applies to * @type {Array} * @memberof DataSourceEntry */ topics?: Array; /** * OPA data api path to store the document at * @type {string} * @memberof DataSourceEntry */ dst_path?: string; /** * Method used to write into OPA - PUT/PATCH * @type {string} * @memberof DataSourceEntry */ save_method?: string; }