TextQL Textql.rpc.platform.Connector Service API

Platform Connector Service - External API for connector management

Operations 1

POST /v1/connectors List all connectors for the authenticated organization #

Documentation

Specifications

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/textql-textql-rpc-platform-connectorservice-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

textql-textql-rpc-platform-connectorservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Textql.rpc.platform.Connector Service API
  version: '1.0'
  description: Platform Connector Service - External API for connector management
security: []
tags:
- name: textql.rpc.platform.ConnectorService
  description: Platform Connector Service - External API for connector management
paths:
  /v1/connectors:
    post:
      tags:
      - textql.rpc.platform.ConnectorService
      summary: List all connectors for the authenticated organization
      operationId: textql.rpc.platform.ConnectorService.ListConnectors
      parameters:
      - name: Connect-Protocol-Version
        in: header
        required: true
        schema:
          $ref: '#/components/schemas/connect-protocol-version'
      - name: Connect-Timeout-Ms
        in: header
        schema:
          $ref: '#/components/schemas/connect-timeout-header'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/textql.rpc.platform.ListConnectorsRequest'
        required: true
      responses:
        default:
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/connect.error'
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/textql.rpc.platform.ListConnectorsResponse'
components:
  schemas:
    textql.rpc.public.connector.DatabricksMetadata:
      type: object
      properties:
        host:
          type: string
          title: host
        httpPath:
          type: string
          title: http_path
        port:
          type: integer
          title: port
          format: int32
        databricksAuth:
          title: databricks_auth
          $ref: '#/components/schemas/textql.rpc.public.connector.DatabricksMetadata.DatabricksAuth'
        catalog:
          type: string
          title: catalog
        schema:
          type: string
          title: schema
        enableTokenExchange:
          type: boolean
          title: enable_token_exchange
      title: DatabricksMetadata
      additionalProperties: false
    textql.rpc.public.connector.SnowflakeMetadata:
      type: object
      properties:
        username:
          type: string
          title: username
        password:
          type: string
          title: password
        privateKey:
          type: string
          title: private_key
        privateKeyPassphrase:
          type: string
          title: private_key_passphrase
        role:
          type: string
          title: role
        schema:
          type: string
          title: schema
        locator:
          type: string
          title: locator
        database:
          type: string
          title: database
        warehouse:
          type: string
          title: warehouse
        oauthAccessToken:
          type: string
          title: oauth_access_token
          description: OAuth fields (used when auth_type = OAUTH)
        oauthRefreshToken:
          type: string
          title: oauth_refresh_token
        oauthClientId:
          type: string
          title: oauth_client_id
        oauthClientSecret:
          type: string
          title: oauth_client_secret
        enableSsoAuth:
          type: boolean
          title: enable_sso_auth
          description: SSO per-member auth (used when auth_strategy = PER_MEMBER_OAUTH) pass IdP token directly to Snowflake External OAuth
        tokenExchangeEndpoint:
          type: string
          title: token_exchange_endpoint
          description: IdP token exchange URL (RFC 8693)
        tokenExchangeAudience:
          type: string
          title: token_exchange_audience
          description: target audience for exchanged token
        tokenExchangeScope:
          type: string
          title: token_exchange_scope
          description: scope for exchanged token
      title: SnowflakeMetadata
      additionalProperties: false
    textql.rpc.public.connector.AthenaMetadata.AthenaAuth.AccessKeyCredentials:
      type: object
      properties:
        accessKeyId:
          type: string
          title: access_key_id
        secretAccessKey:
          type: string
          title: secret_access_key
      title: AccessKeyCredentials
      additionalProperties: false
    textql.rpc.public.connector.RedshiftMetadata:
      type: object
      properties:
        host:
          type: string
          title: host
        port:
          type: integer
          title: port
          format: int32
        user:
          type: string
          title: user
        password:
          type: string
          title: password
        database:
          type: string
          title: database
        schemas:
          type: array
          items:
            type: string
          title: schemas
        dialect:
          type: string
          title: dialect
        sslMode:
          type: boolean
          title: ssl_mode
      title: RedshiftMetadata
      additionalProperties: false
    connect.error_details.Any:
      type: object
      properties:
        type:
          type: string
          description: 'A URL that acts as a globally unique identifier for the type of the serialized message. For example: `type.googleapis.com/google.rpc.ErrorInfo`. This is used to determine the schema of the data in the `value` field and is the discriminator for the `debug` field.'
        value:
          type: string
          format: binary
          description: The Protobuf message, serialized as bytes and base64-encoded. The specific message type is identified by the `type` field.
        debug:
          oneOf:
          - type: object
            title: Any
            additionalProperties: true
            description: Detailed error information.
          discriminator:
            propertyName: type
          title: Debug
          description: Deserialized error detail payload. The 'type' field indicates the schema. This field is for easier debugging and should not be relied upon for application logic.
      additionalProperties: true
      description: Contains an arbitrary serialized message along with a @type that describes the type of the serialized message, with an additional debug field for ConnectRPC error details.
    textql.rpc.public.connector.SQLServerMetadata:
      type: object
      properties:
        host:
          type: string
          title: host
        port:
          type: integer
          title: port
          format: int32
        user:
          type: string
          title: user
        password:
          type: string
          title: password
        database:
          type: string
          title: database
        schema:
          type: string
          title: schema
        sslMode:
          type: boolean
          title: ssl_mode
        authType:
          type: string
          title: auth_type
          enum:
          - PASSWORD
          - KERBEROS
          - CERTIFICATE
        krb5Realm:
          type: string
          title: krb5_realm
        krb5Config:
          type: string
          title: krb5_config
        krb5Keytab:
          type: string
          title: krb5_keytab
        krb5Spn:
          type: string
          title: krb5_spn
        clientCert:
          type: string
          title: client_cert
        clientKey:
          type: string
          title: client_key
      title: SQLServerMetadata
      additionalProperties: false
    textql.rpc.public.connector.AthenaMetadata.AthenaAuth:
      type: object
      oneOf:
      - properties:
          accessKey:
            title: access_key
            $ref: '#/components/schemas/textql.rpc.public.connector.AthenaMetadata.AthenaAuth.AccessKeyCredentials'
        title: access_key
        required:
        - accessKey
      - properties:
          iamRole:
            title: iam_role
            $ref: '#/components/schemas/textql.rpc.public.connector.AthenaMetadata.AthenaAuth.IAMRoleCredentials'
        title: iam_role
        required:
        - iamRole
      title: AthenaAuth
      additionalProperties: false
    textql.rpc.public.connector.Connector:
      type: object
      allOf:
      - properties:
          id:
            type: integer
            title: id
            format: int32
          name:
            type: string
            title: name
          connectorType:
            title: connector_type
            $ref: '#/components/schemas/textql.rpc.public.connector.ConnectorType'
          memberId:
            type: string
            title: member_id
          createdAt:
            title: created_at
            $ref: '#/components/schemas/google.protobuf.Timestamp'
          isExample:
            type: boolean
            title: is_example
          allowSqlWriteOperations:
            type: boolean
            title: allow_sql_write_operations
          authStrategy:
            type: string
            title: auth_strategy
          authenticatedByMemberId:
            type: string
            title: authenticated_by_member_id
          memberAuthenticated:
            type: boolean
            title: member_authenticated
            description: Per-member auth status for the requesting user (only set for per_member_oauth connectors)
            nullable: true
          memberAuthUsername:
            type: string
            title: member_auth_username
            nullable: true
      - oneOf:
        - properties:
            athenaMetadata:
              title: athena_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.AthenaMetadata'
          title: athena_metadata
          required:
          - athenaMetadata
        - properties:
            auroraMetadata:
              title: aurora_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.AuroraMetadata'
          title: aurora_metadata
          required:
          - auroraMetadata
        - properties:
            azureSynapseMetadata:
              title: azure_synapse_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.AzureSynapseMetadata'
          title: azure_synapse_metadata
          required:
          - azureSynapseMetadata
        - properties:
            bigqueryMetadata:
              title: bigquery_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.BigQueryMetadata'
          title: bigquery_metadata
          required:
          - bigqueryMetadata
        - properties:
            clickhouseMetadata:
              title: clickhouse_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.ClickHouseMetadata'
          title: clickhouse_metadata
          required:
          - clickhouseMetadata
        - properties:
            databricksMetadata:
              title: databricks_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.DatabricksMetadata'
          title: databricks_metadata
          required:
          - databricksMetadata
        - properties:
            googleDriveMetadata:
              title: google_drive_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.GoogleDriveMetadata'
          title: google_drive_metadata
          required:
          - googleDriveMetadata
        - properties:
            microsoft365Metadata:
              title: microsoft_365_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.Microsoft365Metadata'
          title: microsoft_365_metadata
          required:
          - microsoft365Metadata
        - properties:
            motherduckMetadata:
              title: motherduck_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.MotherduckMetadata'
          title: motherduck_metadata
          required:
          - motherduckMetadata
        - properties:
            mysqlMetadata:
              title: mysql_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.MYSQLMetadata'
          title: mysql_metadata
          required:
          - mysqlMetadata
        - properties:
            oracleMetadata:
              title: oracle_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.OracleMetadata'
          title: oracle_metadata
          required:
          - oracleMetadata
        - properties:
            postgresMetadata:
              title: postgres_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.PostgresMetadata'
          title: postgres_metadata
          required:
          - postgresMetadata
        - properties:
            powerbiMetadata:
              title: powerbi_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.PowerBIMetadata'
          title: powerbi_metadata
          required:
          - powerbiMetadata
        - properties:
            redshiftMetadata:
              title: redshift_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.RedshiftMetadata'
          title: redshift_metadata
          required:
          - redshiftMetadata
        - properties:
            sapHanaMetadata:
              title: sap_hana_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.SAPHanaMetadata'
          title: sap_hana_metadata
          required:
          - sapHanaMetadata
        - properties:
            snowflakeMetadata:
              title: snowflake_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.SnowflakeMetadata'
          title: snowflake_metadata
          required:
          - snowflakeMetadata
        - properties:
            sqlServerMetadata:
              title: sql_server_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.SQLServerMetadata'
          title: sql_server_metadata
          required:
          - sqlServerMetadata
        - properties:
            supabaseMetadata:
              title: supabase_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.SupabaseMetadata'
          title: supabase_metadata
          required:
          - supabaseMetadata
        - properties:
            tableauMetadata:
              title: tableau_metadata
              $ref: '#/components/schemas/textql.rpc.public.connector.TableauMetadata'
          title: tableau_metadata
          required:
          - tableauMetadata
      title: Connector
      additionalProperties: false
    textql.rpc.public.connector.Microsoft365Metadata:
      type: object
      properties:
        tenantId:
          type: string
          title: tenant_id
        clientId:
          type: string
          title: client_id
        clientSecret:
          type: string
          title: client_secret
        accessToken:
          type: string
          title: access_token
        refreshToken:
          type: string
          title: refresh_token
        memberId:
          type: string
          title: member_id
        tokenExpiry:
          type: string
          title: token_expiry
          description: ISO 8601 timestamp
        metadataOnly:
          type: boolean
          title: metadata_only
          description: When true, only email metadata is accessible (no body content)
        scopes:
          type: array
          items:
            type: string
          title: scopes
      title: Microsoft365Metadata
      additionalProperties: false
    textql.rpc.public.connector.TableauMetadata:
      type: object
      properties:
        serverUrl:
          type: string
          title: server_url
        siteName:
          type: string
          title: site_name
        patName:
          type: string
          title: pat_name
        patSecret:
          type: string
          title: pat_secret
        connectedAppClientId:
          type: string
          title: connected_app_client_id
          description: Connected App credentials for view embedding. Optional, generated by system.
          nullable: true
        connectedAppSecretId:
          type: string
          title: connected_app_secret_id
          nullable: true
        connectedAppSecretValue:
          type: string
          title: connected_app_secret_value
          nullable: true
      title: TableauMetadata
      additionalProperties: false
    textql.rpc.public.connector.AzureSynapseMetadata:
      type: object
      properties:
        host:
          type: string
          title: host
        port:
          type: integer
          title: port
          format: int32
        user:
          type: string
          title: user
        password:
          type: string
          title: password
        database:
          type: string
          title: database
        schema:
          type: string
          title: schema
        authType:
          type: string
          title: auth_type
      title: AzureSynapseMetadata
      additionalProperties: false
    textql.rpc.public.connector.DatabricksMetadata.DatabricksAuth.OAuthU2M:
      type: object
      properties:
        clientId:
          type: string
          title: client_id
        clientSecret:
          type: string
          title: client_secret
      title: OAuthU2M
      additionalProperties: false
    textql.rpc.public.connector.DatabricksMetadata.DatabricksAuth.PersonalAccessToken:
      type: object
      properties:
        token:
          type: string
          title: token
      title: PersonalAccessToken
      additionalProperties: false
    textql.rpc.public.connector.MotherduckMetadata:
      type: object
      properties:
        token:
          type: string
          title: token
      title: MotherduckMetadata
      additionalProperties: false
    textql.rpc.public.connector.AthenaMetadata.AthenaAuth.IAMRoleCredentials:
      type: object
      properties:
        roleArn:
          type: string
          title: role_arn
        sessionName:
          type: string
          title: session_name
      title: IAMRoleCredentials
      additionalProperties: false
    connect-timeout-header:
      type: number
      title: Connect-Timeout-Ms
      description: Define the timeout, in ms
    connect.error:
      type: object
      properties:
        code:
          type: string
          examples:
          - not_found
          enum:
          - canceled
          - unknown
          - invalid_argument
          - deadline_exceeded
          - not_found
          - already_exists
          - permission_denied
          - resource_exhausted
          - failed_precondition
          - aborted
          - out_of_range
          - unimplemented
          - internal
          - unavailable
          - data_loss
          - unauthenticated
          description: The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
        message:
          type: string
          description: A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client.
        details:
          type: array
          items:
            $ref: '#/components/schemas/connect.error_details.Any'
          description: A list of messages that carry the error details. There is no limit on the number of messages.
      title: Connect Error
      additionalProperties: true
      description: 'Error type returned by Connect: https://connectrpc.com/docs/go/errors/#http-representation'
    textql.rpc.public.connector.AuroraMetadata:
      type: object
      properties:
        host:
          type: string
          title: host
        port:
          type: integer
          title: port
          format: int32
        user:
          type: string
          title: user
        password:
          type: string
          title: password
        database:
          type: string
          title: database
        schema:
          type: string
          title: schema
        dialect:
          type: string
          title: dialect
        sslMode:
          type: boolean
          title: ssl_mode
        auroraAuth:
          title: aurora_auth
          $ref: '#/components/schemas/textql.rpc.public.connector.AuroraMetadata.AuroraAuth'
      title: AuroraMetadata
      additionalProperties: false
    textql.rpc.public.connector.DatabricksMetadata.DatabricksAuth.ClientCredentials:
      type: object
      properties:
        clientId:
          type: string
          title: client_id
        clientSecret:
          type: string
          title: client_secret
      title: ClientCredentials
      additionalProperties: false
    textql.rpc.public.connector.BigQueryMetadata:
      type: object
      properties:
        projectId:
          type: string
          title: project_id
        datasetId:
          type: string
          title: dataset_id
        serviceAccountKey:
          type: string
          title: service_account_key
        regionQualifier:
          type: string
          title: region_qualifier
      title: BigQueryMetadata
      additionalProperties: false
    textql.rpc.public.connector.AuroraMetadata.AuroraAuth:
      type: object
      properties:
        iamAuth:
          type: boolean
          title: iam_auth
        clusterId:
          type: string
          title: cluster_id
        region:
          type: string
          title: region
      title: AuroraAuth
      additionalProperties: false
    textql.rpc.public.connector.GoogleDriveMetadata:
      type: object
      properties:
        accessToken:
          type: string
          title: access_token
        refreshToken:
          type: string
          title: refresh_token
        memberId:
          type: string
          title: member_id
      title: GoogleDriveMetadata
      additionalProperties: false
    textql.rpc.public.connector.PostgresMetadata:
      type: object
      properties:
        host:
          type: string
          title: host
        port:
          type: integer
          title: port
          format: int32
        user:
          type: string
          title: user
        password:
          type: string
          title: password
        database:
          type: string
          title: database
        schemas:
          type: array
          items:
            type: string
          title: schemas
        dialect:
          type: string
          title: dialect
        sslMode:
          type: boolean
          title: ssl_mode
      title: PostgresMetadata
      additionalProperties: false
    textql.rpc.public.connector.MYSQLMetadata:
      type: object
      properties:
        host:
          type: string
          title: host
        port:
          type: integer
          title: port
          format: int32
        user:
          type: string
          title: user
        password:
          type: string
          title: password
        database:
          type: string
          title: database
        schema:
          type: string
          title: schema
        sslMode:
          type: boolean
          title: ssl_mode
      title: MYSQLMetadata
      additionalProperties: false
    textql.rpc.platform.ListConnectorsRequest:
      type: object
      title: ListConnectorsRequest
      additionalProperties: false
    textql.rpc.public.connector.ClickHouseMetadata:
      type: object
      properties:
        host:
          type: string
          title: host
        port:
          type: integer
          title: port
          format: int32
        user:
          type: string
          title: user
        password:
          type: string
          title: password
        database:
          type: string
          title: database
        useSsl:
          type: boolean
          title: use_ssl
        protocol:
          type: string
          title: protocol
          description: '"http" or "native"'
      title: ClickHouseMetadata
      additionalProperties: false
    google.protobuf.Timestamp:
      type: string
      examples:
      - '2023-01-15T01:30:15.01Z'
      - '2024-12-25T12:00:00Z'
      format: date-time
      description: "A Timestamp represents a point in time independent of any time zone or local\n calendar, encoded as a count of seconds and fractions of seconds at\n nanosecond resolution. The count is relative to an epoch at UTC midnight on\n January 1, 1970, in the proleptic Gregorian calendar which extends the\n Gregorian calendar backwards to year one.\n\n All minutes are 60 seconds long. Leap seconds are \"smeared\" so that no leap\n second table is needed for interpretation, using a [24-hour linear\n smear](https://developers.google.com/time/smear).\n\n The range is from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59.999999999Z. By\n restricting to that range, we ensure that we can convert to and from [RFC\n 3339](https://www.ietf.org/rfc/rfc3339.txt) date strings.\n\n # Examples\n\n Example 1: Compute Timestamp from POSIX `time()`.\n\n     Timestamp timestamp;\n     timestamp.set_seconds(time(NULL));\n     timestamp.set_nanos(0);\n\n Example 2: Compute Timestamp from POSIX `gettimeofday()`.\n\n     struct timeval tv;\n     gettimeofday(&tv, NULL);\n\n     Timestamp timestamp;\n     timestamp.set_seconds(tv.tv_sec);\n     timestamp.set_nanos(tv.tv_usec * 1000);\n\n Example 3: Compute Timestamp from Win32 `GetSystemTimeAsFileTime()`.\n\n     FILETIME ft;\n     GetSystemTimeAsFileTime(&ft);\n     UINT64 ticks = (((UINT64)ft.dwHighDateTime) << 32) | ft.dwLowDateTime;\n\n     // A Windows tick is 100 nanoseconds. Windows epoch 1601-01-01T00:00:00Z\n     // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.\n     Timestamp timestamp;\n     timestamp.set_seconds((INT64) ((ticks / 10000000) - 11644473600LL));\n     timestamp.set_nanos((INT32) ((ticks % 10000000) * 100));\n\n Example 4: Compute Timestamp from Java `System.currentTimeMillis()`.\n\n     long millis = System.currentTimeMillis();\n\n     Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)\n         .setNanos((int) ((millis % 1000) * 1000000)).build();\n\n Example 5: Compute Timestamp from Java `Instant.now()`.\n\n     Instant now = Instant.now();\n\n     Timestamp timestamp =\n         Timestamp.newBuilder().setSeconds(now.getEpochSecond())\n             .setNanos(now.getNano()).build();\n\n Example 6: Compute Timestamp from current time in Python.\n\n     timestamp = Timestamp()\n     timestamp.GetCurrentTime()\n\n # JSON Mapping\n\n In JSON format, the Timestamp type is encoded as a string in the\n [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format. That is, the\n format is \"{year}-{month}-{day}T{hour}:{min}:{sec}[.{frac_sec}]Z\"\n where {year} is always expressed using four digits while {month}, {day},\n {hour}, {min}, and {sec} are zero-padded to two digits each. The fractional\n seconds, which can go up to 9 digits (i.e. up to 1 nanosecond resolution),\n are optional. The \"Z\" suffix indicates the timezone (\"UTC\"); the timezone\n is required. A proto3 JSON serializer should always use UTC (as indicated by\n \"Z\") when printing the Timestamp type and a proto3 JSON parser should be\n able to accept both UTC and other timezones (as indicated by an offset).\n\n For example, \"2017-01-15T01:30:15.01Z\" encodes 15.01 seconds past\n 01:30 UTC on January 15, 2017.\n\n In JavaScript, one can convert a Date object to this format using the\n standard\n [toISOString()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString)\n method. In Python, a standard `datetime.datetime` object can be converted\n to this format using\n [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with\n the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use\n the Joda Time's [`ISODateTimeFormat.dateTime()`](\n http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()\n ) to obtain a formatter capable of generating timestamps in this format."
    textql.rpc.platform.ListConnectorsResponse:
      type: object
      properties:
        connectors:
          type: array
          items:
            $ref: '#/components/schemas/textql.rpc.public.connector.Connector'
          title: connectors
      title: ListConnectorsResponse
      additionalProperties: false
    textql.rpc.public.connector.DatabricksMetadata.DatabricksAuth:
      type: object
      oneOf:
      - properties:
          clientCredentials:
            title: client_credentials
            $ref: '#/components/schemas/textql.rpc.public.connector.DatabricksMetadata.DatabricksAuth.ClientCredentials'
        title: client_credentials
        required:
        - clientCredentials
      - properties:
          oauthU2m:
            title: oauth_u2m
            $ref: '#/components/schemas/textql.rpc.public.connector.DatabricksMetadata.DatabricksAuth.OAuthU2M'
        title: oauth_u2m
        required:
        - oauthU2m
      - properties:
          pat:
            title: pat
            $ref: '#/components/schemas/textql.rpc.public.connector.DatabricksMetadata.DatabricksAuth.PersonalAccessToken'
        title: pat
        required:
        - pat
      title: DatabricksAuth
      additionalProperties: false
    connect-protocol-version:
      type: number
      title: Connect-Protocol-Version
      enum:
      - 1
      description: Define the version of the Connect protocol
      const: 1
    textql.rpc.public.connector.ConnectorType:
      type: string
      title: ConnectorType
      enum:
      - CONNECTOR_TYPE_UNSPECIFIED
      - REDSHIFT
      - SNOWFLAKE
      - BIGQUERY
      - AZURE_SYNAPSE
      - AURORA
      - TABLEAU
      - DATABRICKS
      - SUPABASE
      - POSTGRES
      - MOTHERDUCK
      - CLICKHOUSE
      - MYSQL
      - ATHENA
      - GOOGLE_DRIVE
      - POWERBI
      - SQL_SERVER
      - MICROSOFT_365
      - SAP_HANA
      - ORACLE
    textql.rpc.public.connector.AthenaMetadata:
      type: object
      properties:
        region:
          type: string
          title: region
        database:
          type: string
          title: database
        workgroup:
          type: string
          title: workgroup
        s3OutputLocation:
          type: string
          title: s3_output_location
        athenaAuth:
          title: athena_auth
          $ref: '#/components/schemas/textql.rpc.public.connector.AthenaMetadata.AthenaAuth'
      title: AthenaMetadata
      additionalProperties: false
    textql.rpc.public.connector.PowerBIMetadata:
      type: object
      properties:
        tenantId:
          type: string
          title: tenant_id
        clientId:
          type: string
          title: client_id
        clientSecret:
          type: string
          title: client_secret
        objectId:
          type: string
          title: object_id
          nullable: true
        roles:
          type: string
          title: roles
          nullable: true
      title: PowerBIMetadata
      additionalProperties: false
    textql.rpc.public.connector.OracleMetadata:
      type: object
      properties:
        host:
          type: string
          title: host
        port:
          type: integer
          title: port
          format: int32
        user:
          type: string
          title: user
        password:
          type: string
          title: password
        serviceName:
          type: string
          title: service_name
        dialect:
          type: string
          title: dialect
        sslMode:
          type: boolean
          title: ssl_mode
        connectionType:
          type: string
          title: connection_type
        sid:
          type: string
          title: sid
        connectString:
          type: string
          title: connect_string
        walletZip:
          type: string
          title: wallet_zip
          description: Oracle Wallet fields
        walletPassword:
          type: string
          title: wallet_password
        tnsAlias:
          type: string
          title: tns_alias
          description: Optional - auto-detected from tnsnames.ora if not provided
      title: OracleMetadata
      additionalProperties: false
    textql.rpc.public.connector.SAPHanaMetadata:
      type: object
      properties:
        host:
          type: string
          title: host
        port:
          type: integer
          title: port
          format: int32
        user:
          type: string
          title: user
        password:
  

# --- truncated at 32 KB (33 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/textql/refs/heads/main/openapi/textql-textql-rpc-platform-connectorservice-api-openapi.yml