(
self,
name: str,
*,
definition: CreateTableDefinition | dict[str, Any],
keyspace: str | None = None,
if_not_exists: bool | None = None,
table_admin_timeout_ms: int | None = None,
request_timeout_ms: int | None = None,
timeout_ms: int | None = None,
embedding_api_key: str | EmbeddingHeadersProvider | UnsetType = _UNSET,
reranking_api_key: str | RerankingHeadersProvider | UnsetType = _UNSET,
spawn_api_options: APIOptions | UnsetType = _UNSET,
)
| 3424 | |
| 3425 | @overload |
| 3426 | async def create_table( |
| 3427 | self, |
| 3428 | name: str, |
| 3429 | *, |
| 3430 | definition: CreateTableDefinition | dict[str, Any], |
| 3431 | keyspace: str | None = None, |
| 3432 | if_not_exists: bool | None = None, |
| 3433 | table_admin_timeout_ms: int | None = None, |
| 3434 | request_timeout_ms: int | None = None, |
| 3435 | timeout_ms: int | None = None, |
| 3436 | embedding_api_key: str | EmbeddingHeadersProvider | UnsetType = _UNSET, |
| 3437 | reranking_api_key: str | RerankingHeadersProvider | UnsetType = _UNSET, |
| 3438 | spawn_api_options: APIOptions | UnsetType = _UNSET, |
| 3439 | ) -> AsyncTable[DefaultRowType]: ... |
| 3440 | |
| 3441 | @overload |
| 3442 | async def create_table( |
nothing calls this directly
no test coverage detected