@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
39 lines (38 loc) • 1.33 kB
TypeScript
/**
* 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 Google Vertex AI
* @export
* @interface VERTEXAuthConfig
*/
export interface VERTEXAuthConfig {
/**
* Service Account Json. Example: Enter the contents of your Google Vertex AI Service Account JSON file
* @type {string}
* @memberof VERTEXAuthConfig
*/
key: string;
/**
* Region. Example: Region Name, e.g. us-central1
* @type {string}
* @memberof VERTEXAuthConfig
*/
region: string;
}
/**
* Check if a given object implements the VERTEXAuthConfig interface.
*/
export declare function instanceOfVERTEXAuthConfig(value: object): value is VERTEXAuthConfig;
export declare function VERTEXAuthConfigFromJSON(json: any): VERTEXAuthConfig;
export declare function VERTEXAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): VERTEXAuthConfig;
export declare function VERTEXAuthConfigToJSON(json: any): VERTEXAuthConfig;
export declare function VERTEXAuthConfigToJSONTyped(value?: VERTEXAuthConfig | null, ignoreDiscriminator?: boolean): any;