Skip to content
Snippets Groups Projects
Select Git revision
  • 511350215fb7e1a98f6ef648b162546edb0f0c74
  • master default protected
  • dev protected
  • Issue/3003-stsInstitute
  • gitkeep
  • Issue/2449-GuidPidSlugToProjectSettings
  • Issue/2309-docs
  • Fix/xxxx-updateDependencies
  • Issue/2364-testingKpiParser
  • Issue/2287-guestRole
  • Test/xxxx-pipelineTriggers
  • Issue/2102-gitLabResTypeRCV
  • Issue/2278-gitlabToS
  • Issue/2101-gitLabResTypeUi
  • Issue/1788-extractionCronjob
  • Issue/2183-kpiGeneratorResource
  • Issue/2222-resourceDateCreated
  • Issue/2221-projectDateCreated
  • Issue/1321-pidEnquiryOverhaul
  • Issue/1999-gitlabResourcesLib
  • Issue/1951-quotaImplementation
  • v2.22.0
  • v2.20.0
  • v2.19.1
  • v2.19.0
  • v2.18.0
  • v2.17.0
  • v2.16.2
  • v2.16.1
  • v2.16.0
  • v2.15.0
  • v2.14.0
  • v2.13.0
  • v2.12.1
  • v2.12.0
  • v2.11.1
  • v2.11.0
  • v2.10.1
  • v2.10.0
  • v2.9.1
  • v2.9.0
41 results

Database.csproj

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    configuration.ts 3.15 KiB
    /* tslint:disable */
    /* eslint-disable */
    /**
     * Coscine.Api.Metadata
     * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
     *
     * The version of the OpenAPI document: 2.1.1
     * 
     *
     * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
     * https://openapi-generator.tech
     * Do not edit the class manually.
     */
    
    
    export interface ConfigurationParameters {
        apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
        username?: string;
        password?: string;
        accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
        basePath?: string;
        baseOptions?: any;
        formDataCtor?: new () => any;
    }
    
    export class Configuration {
        /**
         * parameter for apiKey security
         * @param name security name
         * @memberof Configuration
         */
        apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
        /**
         * parameter for basic security
         *
         * @type {string}
         * @memberof Configuration
         */
        username?: string;
        /**
         * parameter for basic security
         *
         * @type {string}
         * @memberof Configuration
         */
        password?: string;
        /**
         * parameter for oauth2 security
         * @param name security name
         * @param scopes oauth2 scope
         * @memberof Configuration
         */
        accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
        /**
         * override base path
         *
         * @type {string}
         * @memberof Configuration
         */
        basePath?: string;
        /**
         * base options for axios calls
         *
         * @type {any}
         * @memberof Configuration
         */
        baseOptions?: any;
        /**
         * The FormData constructor that will be used to create multipart form data
         * requests. You can inject this here so that execution environments that
         * do not support the FormData class can still run the generated client.
         *
         * @type {new () => FormData}
         */
        formDataCtor?: new () => any;
    
        constructor(param: ConfigurationParameters = {}) {
            this.apiKey = param.apiKey;
            this.username = param.username;
            this.password = param.password;
            this.accessToken = param.accessToken;
            this.basePath = param.basePath;
            this.baseOptions = param.baseOptions;
            this.formDataCtor = param.formDataCtor;
        }
    
        /**
         * Check if the given MIME is a JSON MIME.
         * JSON MIME examples:
         *   application/json
         *   application/json; charset=UTF8
         *   APPLICATION/JSON
         *   application/vnd.company+json
         * @param mime - MIME (Multipurpose Internet Mail Extensions)
         * @return True if the given MIME is JSON, false otherwise.
         */
        public isJsonMime(mime: string): boolean {
            const jsonMime: RegExp = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
            return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
        }
    }