UNPKG

@vectorize-io/vectorize-client

Version:
39 lines (38 loc) 1.32 kB
/** * Vectorize API * API for Vectorize services (Beta) * * The version of the OpenAPI document: 0.1.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Authentication configuration for DataStax Astra * @export * @interface DATASTAXAuthConfig */ export interface DATASTAXAuthConfig { /** * API Endpoint. Example: Enter your API endpoint * @type {string} * @memberof DATASTAXAuthConfig */ endpointSecret: string; /** * Application Token. Example: Enter your application token * @type {string} * @memberof DATASTAXAuthConfig */ token: string; } /** * Check if a given object implements the DATASTAXAuthConfig interface. */ export declare function instanceOfDATASTAXAuthConfig(value: object): value is DATASTAXAuthConfig; export declare function DATASTAXAuthConfigFromJSON(json: any): DATASTAXAuthConfig; export declare function DATASTAXAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): DATASTAXAuthConfig; export declare function DATASTAXAuthConfigToJSON(json: any): DATASTAXAuthConfig; export declare function DATASTAXAuthConfigToJSONTyped(value?: DATASTAXAuthConfig | null, ignoreDiscriminator?: boolean): any;