/** * 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 { DataWarehouseObjectInput } from '../models/DataWarehouseObjectInput'; import { HttpFile } from '../http/http'; export class ConnectionInput { /** * Unique ID or name of the connection. */ 'identifier'?: string | null; /** * A pattern to match case-insensitive name of the connection object. User `%` for a wildcard match. */ 'name_pattern'?: string | null; /** * Filter options for databases, schemas, tables and columns. */ 'data_warehouse_objects'?: Array | null; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "identifier", "baseName": "identifier", "type": "string", "format": "" }, { "name": "name_pattern", "baseName": "name_pattern", "type": "string", "format": "" }, { "name": "data_warehouse_objects", "baseName": "data_warehouse_objects", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return ConnectionInput.attributeTypeMap; } public constructor() { } }