/** * 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 { PolicyProcessOptions } from '../models/PolicyProcessOptions'; import { UserPrincipal } from '../models/UserPrincipal'; import { HttpFile } from '../http/http'; export class ConnectionConfigurationResponse { 'configuration_identifier'?: string | null; 'name'?: string | null; 'description'?: string | null; 'configuration'?: any | null; 'policy_principals'?: Array | null; 'policy_processes'?: Array | null; 'disabled'?: boolean | null; 'data_warehouse_type'?: ConnectionConfigurationResponseDataWarehouseTypeEnum | null; 'policy_type'?: ConnectionConfigurationResponsePolicyTypeEnum | null; 'same_as_parent'?: boolean | null; 'policy_process_options'?: PolicyProcessOptions; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "configuration_identifier", "baseName": "configuration_identifier", "type": "string", "format": "" }, { "name": "name", "baseName": "name", "type": "string", "format": "" }, { "name": "description", "baseName": "description", "type": "string", "format": "" }, { "name": "configuration", "baseName": "configuration", "type": "any", "format": "" }, { "name": "policy_principals", "baseName": "policy_principals", "type": "Array", "format": "" }, { "name": "policy_processes", "baseName": "policy_processes", "type": "Array", "format": "" }, { "name": "disabled", "baseName": "disabled", "type": "boolean", "format": "" }, { "name": "data_warehouse_type", "baseName": "data_warehouse_type", "type": "ConnectionConfigurationResponseDataWarehouseTypeEnum", "format": "" }, { "name": "policy_type", "baseName": "policy_type", "type": "ConnectionConfigurationResponsePolicyTypeEnum", "format": "" }, { "name": "same_as_parent", "baseName": "same_as_parent", "type": "boolean", "format": "" }, { "name": "policy_process_options", "baseName": "policy_process_options", "type": "PolicyProcessOptions", "format": "" } ]; static getAttributeTypeMap() { return ConnectionConfigurationResponse.attributeTypeMap; } public constructor() { } } export type ConnectionConfigurationResponsePolicyProcessesEnum = "SAGE_INDEXING" | "ROW_COUNT_STATS" ; export type ConnectionConfigurationResponseDataWarehouseTypeEnum = "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" ; export type ConnectionConfigurationResponsePolicyTypeEnum = "NO_POLICY" | "PRINCIPALS" | "PROCESSES" ;