pub async fn batch_create_table_versions(
configuration: &Configuration,
batch_create_table_versions_request: BatchCreateTableVersionsRequest,
delimiter: Option<&str>,
) -> Result<BatchCreateTableVersionsResponse, Error<BatchCreateTableVersionsError>>Expand description
Atomically create new version entries for multiple tables. This operation is atomic: either all table versions are created successfully, or none are created. If any version creation fails (e.g., due to conflict), the entire batch operation fails. Each entry in the request specifies the table identifier and version details. This supports put_if_not_exists semantics for each version entry.