Data lakes
Create a new data lake.
Param | Type | Required | Description |
Authorization | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
name | string | yes | Friendly schema name |
type | string | yes | aws |
metadata | object | yes | object containing additional fields |
⌞ aws_s3_bucket | string | yes | Bucket name |
⌞ aws_s3_prefix | string | yes | Prefix to store parquet files under |
⌞ aws_region | string | yes | AWS region (ie. us-east-1, us-west-2, etc.) |
{}
Get a list of data lakes for a team.
Param | Type | Required | Description |
Authorization | string | yes | Bearer token containing API key |
[
{
"id":"9c0837a8-4a29-4340-8af3-5cbf6d339a54",
"type":"aws",
"name":"Default DataLake",
"team_id":"765f94d5-e61d-4043-a4a2-af5913d00f3d",
"status":"active",
"status_full":"",
"archived":false,
"inserted_at":"2021-03-14T23:42:12.109951Z",
"updated_at":"2021-03-14T23:42:12.123369Z"
}
]
Get a data lake by lake_id
Param | Type | Required | Description |
Authorization | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
lake_id | string | yes | ID of the data lake you wish to retrieve |
{
"id":"9c0837a8-4a29-4340-8af3-5cbf6d339a54",
"type":"aws",
"name":"Default DataLake",
"team_id":"765f94d5-e61d-4043-a4a2-af5913d00f3d",
"status":"active",
"status_full":"",
"archived":false,
"inserted_at":"2021-03-14T23:42:12.109951Z",
"updated_at":"2021-03-14T23:42:12.123369Z"
}
Update an existing data lake.
Param | Type | Required | Description |
Authorization | string | yes | Bearer token containing API key |
Param | Type | Required | Description |
TODO | string | yes | N/A |
Last modified 1yr ago