/** * 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. */ import type { GCSAuthConfig } from './GCSAuthConfig'; /** * * @export * @interface Gcs */ export interface Gcs { /** * Name of the connector * @type {string} * @memberof Gcs */ name: string; /** * Connector type (must be "GCS") * @type {string} * @memberof Gcs */ type: GcsTypeEnum; /** * * @type {GCSAuthConfig} * @memberof Gcs */ config: GCSAuthConfig; } /** * @export */ export declare const GcsTypeEnum: { readonly Gcs: "GCS"; }; export type GcsTypeEnum = typeof GcsTypeEnum[keyof typeof GcsTypeEnum]; /** * Check if a given object implements the Gcs interface. */ export declare function instanceOfGcs(value: object): value is Gcs; export declare function GcsFromJSON(json: any): Gcs; export declare function GcsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Gcs; export declare function GcsToJSON(json: any): Gcs; export declare function GcsToJSONTyped(value?: Gcs | null, ignoreDiscriminator?: boolean): any;