/** * ThoughtSpot Public REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: 2.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { DataWarehouseObjects } from '../models/DataWarehouseObjects'; import { HttpFile } from '../http/http'; export class SearchConnectionResponse { /** * Unique ID of the connection. */ 'id': string; /** * Name of the connection. */ 'name': string; /** * Description of the connection. */ 'description'?: string | null; /** * Type of data warehouse. */ 'data_warehouse_type': SearchConnectionResponseDataWarehouseTypeEnum; 'data_warehouse_objects'?: DataWarehouseObjects; /** * Details of the connection. */ 'details'?: any | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "id", "baseName": "id", "type": "string", "format": "" }, { "name": "name", "baseName": "name", "type": "string", "format": "" }, { "name": "description", "baseName": "description", "type": "string", "format": "" }, { "name": "data_warehouse_type", "baseName": "data_warehouse_type", "type": "SearchConnectionResponseDataWarehouseTypeEnum", "format": "" }, { "name": "data_warehouse_objects", "baseName": "data_warehouse_objects", "type": "DataWarehouseObjects", "format": "" }, { "name": "details", "baseName": "details", "type": "any", "format": "" } ]; static getAttributeTypeMap() { return SearchConnectionResponse.attributeTypeMap; } public constructor() { } } export type SearchConnectionResponseDataWarehouseTypeEnum = "SNOWFLAKE" | "AMAZON_REDSHIFT" | "GOOGLE_BIGQUERY" | "AZURE_SYNAPSE" | "TERADATA" | "SAP_HANA" | "STARBURST" | "ORACLE_ADW" | "DATABRICKS" | "DENODO" | "DREMIO" | "TRINO" | "PRESTO" | "POSTGRES" | "SQLSERVER" | "MYSQL" | "GENERIC_JDBC" | "AMAZON_RDS_POSTGRESQL" | "AMAZON_AURORA_POSTGRESQL" | "AMAZON_RDS_MYSQL" | "AMAZON_AURORA_MYSQL" | "LOOKER" | "AMAZON_ATHENA" | "SINGLESTORE" | "GCP_SQLSERVER" | "GCP_ALLOYDB_POSTGRESQL" | "GCP_POSTGRESQL" | "GCP_MYSQL" | "MODE" | "GOOGLE_SHEETS" | "FALCON" | "FALCON_ONPREM" | "CLICKHOUSE" ;