/** * 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 GCP Cloud Storage * @export * @interface GCSAuthConfig */ export interface GCSAuthConfig { /** * Service Account JSON. Example: Enter the JSON key file for the service account * @type {string} * @memberof GCSAuthConfig */ serviceAccountJson: string; /** * Bucket. Example: Enter bucket name * @type {string} * @memberof GCSAuthConfig */ bucketName: string; } /** * Check if a given object implements the GCSAuthConfig interface. */ export declare function instanceOfGCSAuthConfig(value: object): value is GCSAuthConfig; export declare function GCSAuthConfigFromJSON(json: any): GCSAuthConfig; export declare function GCSAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): GCSAuthConfig; export declare function GCSAuthConfigToJSON(json: any): GCSAuthConfig; export declare function GCSAuthConfigToJSONTyped(value?: GCSAuthConfig | null, ignoreDiscriminator?: boolean): any;