Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3ddf254
test(user-input): assert dismissed mention stays closed across repeat…
waleedlatif1 Jul 7, 2026
e5b9432
fix(granola): align get_note with real API spec (webUrl required, add…
waleedlatif1 Jul 7, 2026
b70b21a
fix(copilot): surface error cause chain in sim-to-go span status (#5473)
waleedlatif1 Jul 7, 2026
6d97b26
feat(tinybird): validate integration against API, add job-status poll…
waleedlatif1 Jul 7, 2026
9e3fc1f
feat(dub): expand link coverage and fix cross-operation param leakage…
waleedlatif1 Jul 7, 2026
a1e6744
fix(github): fix response bugs and add missing endpoint coverage (#5471)
waleedlatif1 Jul 7, 2026
0132a04
fix(dropbox): align integration with Dropbox API docs, add revision/s…
waleedlatif1 Jul 7, 2026
a5b8c7e
feat(gitlab): add release and branch-compare tools, remove dead types…
waleedlatif1 Jul 7, 2026
f3a65e1
fix(brightdata): align integration with live API docs, add markdown/m…
waleedlatif1 Jul 7, 2026
c34a3bc
fix(discord): align tools with live API docs, add missing endpoints (…
waleedlatif1 Jul 7, 2026
fe7d043
feat(custom-block): move management to enterprise settings; derive in…
TheodoreSpeaks Jul 7, 2026
03462b9
fix(microsoft-teams): align tools with live Graph API docs, add missi…
waleedlatif1 Jul 7, 2026
954fdd8
fix(gmail): stop wrapping draft/send HTML body in per-paragraph <p> t…
waleedlatif1 Jul 7, 2026
a48ecd2
fix(posthog): validate integration against live API docs, add self-ho…
waleedlatif1 Jul 7, 2026
f364614
improvement(email): reply-to help@sim.ai for lifecycle and billing em…
waleedlatif1 Jul 7, 2026
8174182
feat(bigquery): validate integration + add dataset/table lifecycle to…
waleedlatif1 Jul 7, 2026
82de725
fix(google-calendar): align with live API docs, add calendar/ACL upda…
waleedlatif1 Jul 7, 2026
98dc1ee
fix(google-maps): validate integration against live API docs, add Pla…
waleedlatif1 Jul 7, 2026
1a87f1a
fix(microsoft-planner): align with live Graph API docs, add plan CRUD…
waleedlatif1 Jul 7, 2026
d32b966
fix(microsoft-dataverse): align integration with live API docs, add t…
waleedlatif1 Jul 7, 2026
8fcce51
fix(aws): align cloudwatch, cloudformation, athena, codepipeline with…
waleedlatif1 Jul 7, 2026
0134a5b
fix(onedrive): align tools with live Graph API docs, add missing endp…
waleedlatif1 Jul 7, 2026
ed1492b
fix(google-vault): validate against live API docs, add matter/hold/sa…
waleedlatif1 Jul 7, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
357 changes: 357 additions & 0 deletions apps/docs/components/icons.tsx

Large diffs are not rendered by default.

120 changes: 120 additions & 0 deletions apps/docs/content/docs/en/integrations/athena.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,45 @@ List recent Athena query execution IDs
| `queryExecutionIds` | array | List of query execution IDs |
| `nextToken` | string | Pagination token for next page |

### `athena_batch_get_query_execution`

Get the status and details of up to 50 Athena query executions in one call

#### Input

| Parameter | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `awsRegion` | string | Yes | AWS region \(e.g., us-east-1\) |
| `awsAccessKeyId` | string | Yes | AWS access key ID |
| `awsSecretAccessKey` | string | Yes | AWS secret access key |
| `queryExecutionIds` | string | Yes | Comma-separated query execution IDs to check \(up to 50\) |

#### Output

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `queryExecutions` | array | Details for each successfully retrieved query execution |
| ↳ `queryExecutionId` | string | Query execution ID |
| ↳ `query` | string | SQL query string |
| ↳ `state` | string | Query state \(QUEUED, RUNNING, SUCCEEDED, FAILED, CANCELLED\) |
| ↳ `stateChangeReason` | string | Reason for state change |
| ↳ `statementType` | string | Statement type \(DDL, DML, UTILITY\) |
| ↳ `database` | string | Database name |
| ↳ `catalog` | string | Data catalog name |
| ↳ `workGroup` | string | Workgroup name |
| ↳ `submissionDateTime` | number | Query submission time \(Unix epoch ms\) |
| ↳ `completionDateTime` | number | Query completion time \(Unix epoch ms\) |
| ↳ `dataScannedInBytes` | number | Amount of data scanned in bytes |
| ↳ `engineExecutionTimeInMillis` | number | Engine execution time in milliseconds |
| ↳ `queryPlanningTimeInMillis` | number | Query planning time in milliseconds |
| ↳ `queryQueueTimeInMillis` | number | Time the query spent in queue in milliseconds |
| ↳ `totalExecutionTimeInMillis` | number | Total execution time in milliseconds |
| ↳ `outputLocation` | string | S3 location of query results |
| `unprocessedQueryExecutionIds` | array | Query execution IDs that could not be retrieved, with error details |
| ↳ `queryExecutionId` | string | Query execution ID |
| ↳ `errorCode` | string | Error code |
| ↳ `errorMessage` | string | Error message |

### `athena_create_named_query`

Create a saved/named query in AWS Athena
Expand Down Expand Up @@ -235,4 +274,85 @@ List saved/named query IDs in AWS Athena
| `namedQueryIds` | array | List of named query IDs |
| `nextToken` | string | Pagination token for next page |

### `athena_delete_named_query`

Delete a saved/named query in AWS Athena

#### Input

| Parameter | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `awsRegion` | string | Yes | AWS region \(e.g., us-east-1\) |
| `awsAccessKeyId` | string | Yes | AWS access key ID |
| `awsSecretAccessKey` | string | Yes | AWS secret access key |
| `namedQueryId` | string | Yes | Named query ID to delete |

#### Output

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `success` | boolean | Whether the named query was successfully deleted |

### `athena_list_databases`

List the databases available in an Athena data catalog

#### Input

| Parameter | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `awsRegion` | string | Yes | AWS region \(e.g., us-east-1\) |
| `awsAccessKeyId` | string | Yes | AWS access key ID |
| `awsSecretAccessKey` | string | Yes | AWS secret access key |
| `catalogName` | string | Yes | Data catalog name to list databases from \(e.g., AwsDataCatalog\) |
| `workGroup` | string | No | Workgroup for which the metadata is being fetched \(required for IAM Identity Center enabled catalogs\) |
| `maxResults` | number | No | Maximum number of results \(1-50\) |
| `nextToken` | string | No | Pagination token from a previous request |

#### Output

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `databases` | array | List of databases \(name, description\) |
| ↳ `name` | string | Database name |
| ↳ `description` | string | Database description |
| `nextToken` | string | Pagination token for next page |

### `athena_list_table_metadata`

List tables and their column/partition metadata for an Athena database

#### Input

| Parameter | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `awsRegion` | string | Yes | AWS region \(e.g., us-east-1\) |
| `awsAccessKeyId` | string | Yes | AWS access key ID |
| `awsSecretAccessKey` | string | Yes | AWS secret access key |
| `catalogName` | string | Yes | Data catalog name \(e.g., AwsDataCatalog\) |
| `databaseName` | string | Yes | Database name to list tables from |
| `expression` | string | No | Regex filter that pattern-matches table names |
| `workGroup` | string | No | Workgroup for which the metadata is being fetched \(required for IAM Identity Center enabled catalogs\) |
| `maxResults` | number | No | Maximum number of results \(1-50\) |
| `nextToken` | string | No | Pagination token from a previous request |

#### Output

| Parameter | Type | Description |
| --------- | ---- | ----------- |
| `tables` | array | Table metadata \(name, type, columns, partition keys\) |
| ↳ `name` | string | Table name |
| ↳ `tableType` | string | Table type |
| ↳ `createTime` | number | Table creation time \(Unix epoch ms\) |
| ↳ `lastAccessTime` | number | Table last access time \(Unix epoch ms\) |
| ↳ `columns` | array | Column definitions |
| ↳ `name` | string | Column name |
| ↳ `type` | string | Column data type |
| ↳ `comment` | string | Column comment |
| ↳ `partitionKeys` | array | Partition key definitions |
| ↳ `name` | string | Partition key name |
| ↳ `type` | string | Partition key data type |
| ↳ `comment` | string | Partition key comment |
| `nextToken` | string | Pagination token for next page |


Loading
Loading