Skip to content

Commit

Permalink
Excavator: Upgrade API Version
Browse files Browse the repository at this point in the history
  • Loading branch information
svc-excavator-bot committed Mar 11, 2025
1 parent d79c60c commit 7762fb3
Show file tree
Hide file tree
Showing 1,254 changed files with 8,354 additions and 8,032 deletions.
68 changes: 43 additions & 25 deletions README.md

Large diffs are not rendered by default.

48 changes: 24 additions & 24 deletions docs/v1/Datasets/Branch.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Third-party applications using this endpoint via OAuth2 must request the followi

Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |
**dataset_rid** | DatasetRid | datasetRid | |
**dataset_rid** | DatasetRid | The Resource Identifier (RID) of the Dataset on which to create the Branch. | |
**branch_id** | BranchId | | |
**transaction_rid** | Optional[TransactionRid] | | [optional] |

Expand All @@ -36,11 +36,11 @@ foundry_client = FoundryClient(
auth=foundry.UserTokenAuth(...), hostname="example.palantirfoundry.com"
)

# DatasetRid | datasetRid
# DatasetRid | The Resource Identifier (RID) of the Dataset on which to create the Branch.
dataset_rid = "ri.foundry.main.dataset.c26f11c8-cdb3-4f44-9f5d-9816ea1c82da"
# BranchId |
# BranchId
branch_id = "my-branch"
# Optional[TransactionRid] |
# Optional[TransactionRid]
transaction_rid = None


Expand Down Expand Up @@ -80,8 +80,8 @@ Third-party applications using this endpoint via OAuth2 must request the followi

Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |
**dataset_rid** | DatasetRid | datasetRid | |
**branch_id** | BranchId | branchId | |
**dataset_rid** | DatasetRid | The Resource Identifier (RID) of the Dataset that contains the Branch. | |
**branch_id** | BranchId | The identifier (name) of the Branch. | |

### Return type
**None**
Expand All @@ -97,9 +97,9 @@ foundry_client = FoundryClient(
auth=foundry.UserTokenAuth(...), hostname="example.palantirfoundry.com"
)

# DatasetRid | datasetRid
# DatasetRid | The Resource Identifier (RID) of the Dataset that contains the Branch.
dataset_rid = "ri.foundry.main.dataset.c26f11c8-cdb3-4f44-9f5d-9816ea1c82da"
# BranchId | branchId
# BranchId | The identifier (name) of the Branch.
branch_id = "my-branch"


Expand Down Expand Up @@ -138,8 +138,8 @@ Third-party applications using this endpoint via OAuth2 must request the followi

Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |
**dataset_rid** | DatasetRid | datasetRid | |
**branch_id** | BranchId | branchId | |
**dataset_rid** | DatasetRid | The Resource Identifier (RID) of the Dataset that contains the Branch. | |
**branch_id** | BranchId | The identifier (name) of the Branch. | |

### Return type
**Branch**
Expand All @@ -155,9 +155,9 @@ foundry_client = FoundryClient(
auth=foundry.UserTokenAuth(...), hostname="example.palantirfoundry.com"
)

# DatasetRid | datasetRid
# DatasetRid | The Resource Identifier (RID) of the Dataset that contains the Branch.
dataset_rid = "ri.foundry.main.dataset.c26f11c8-cdb3-4f44-9f5d-9816ea1c82da"
# BranchId | branchId
# BranchId | The identifier (name) of the Branch.
branch_id = "master"


Expand Down Expand Up @@ -196,9 +196,9 @@ Third-party applications using this endpoint via OAuth2 must request the followi

Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |
**dataset_rid** | DatasetRid | datasetRid | |
**page_size** | Optional[PageSize] | pageSize | [optional] |
**page_token** | Optional[PageToken] | pageToken | [optional] |
**dataset_rid** | DatasetRid | The Resource Identifier (RID) of the Dataset on which to list Branches. | |
**page_size** | Optional[PageSize] | The desired size of the page to be returned. Defaults to 1,000. See [page sizes](/docs/foundry/api/general/overview/paging/#page-sizes) for details. | [optional] |
**page_token** | Optional[PageToken] | | [optional] |

### Return type
**ResourceIterator[Branch]**
Expand All @@ -214,11 +214,11 @@ foundry_client = FoundryClient(
auth=foundry.UserTokenAuth(...), hostname="example.palantirfoundry.com"
)

# DatasetRid | datasetRid
# DatasetRid | The Resource Identifier (RID) of the Dataset on which to list Branches.
dataset_rid = "ri.foundry.main.dataset.c26f11c8-cdb3-4f44-9f5d-9816ea1c82da"
# Optional[PageSize] | pageSize
# Optional[PageSize] | The desired size of the page to be returned. Defaults to 1,000. See [page sizes](/docs/foundry/api/general/overview/paging/#page-sizes) for details.
page_size = None
# Optional[PageToken] | pageToken
# Optional[PageToken]
page_token = None


Expand Down Expand Up @@ -257,9 +257,9 @@ Third-party applications using this endpoint via OAuth2 must request the followi

Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |
**dataset_rid** | DatasetRid | datasetRid | |
**page_size** | Optional[PageSize] | pageSize | [optional] |
**page_token** | Optional[PageToken] | pageToken | [optional] |
**dataset_rid** | DatasetRid | The Resource Identifier (RID) of the Dataset on which to list Branches. | |
**page_size** | Optional[PageSize] | The desired size of the page to be returned. Defaults to 1,000. See [page sizes](/docs/foundry/api/general/overview/paging/#page-sizes) for details. | [optional] |
**page_token** | Optional[PageToken] | | [optional] |

### Return type
**ListBranchesResponse**
Expand All @@ -275,11 +275,11 @@ foundry_client = FoundryClient(
auth=foundry.UserTokenAuth(...), hostname="example.palantirfoundry.com"
)

# DatasetRid | datasetRid
# DatasetRid | The Resource Identifier (RID) of the Dataset on which to list Branches.
dataset_rid = "ri.foundry.main.dataset.c26f11c8-cdb3-4f44-9f5d-9816ea1c82da"
# Optional[PageSize] | pageSize
# Optional[PageSize] | The desired size of the page to be returned. Defaults to 1,000. See [page sizes](/docs/foundry/api/general/overview/paging/#page-sizes) for details.
page_size = None
# Optional[PageToken] | pageToken
# Optional[PageToken]
page_token = None


Expand Down
80 changes: 40 additions & 40 deletions docs/v1/Datasets/Dataset.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ foundry_client = FoundryClient(
auth=foundry.UserTokenAuth(...), hostname="example.palantirfoundry.com"
)

# DatasetName |
# DatasetName
name = "My Dataset"
# FolderRid |
# FolderRid
parent_folder_rid = "ri.foundry.main.folder.bfe58487-4c56-4c58-aba7-25defd6163c4"


Expand Down Expand Up @@ -75,10 +75,10 @@ Deletes the Schema from a Dataset and Branch.

Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |
**dataset_rid** | DatasetRid | datasetRid | |
**branch_id** | Optional[BranchId] | branchId | [optional] |
**preview** | Optional[PreviewMode] | preview | [optional] |
**transaction_rid** | Optional[TransactionRid] | transactionRid | [optional] |
**dataset_rid** | DatasetRid | The RID of the Dataset on which to delete the schema. | |
**branch_id** | Optional[BranchId] | The ID of the Branch on which to delete the schema. | [optional] |
**preview** | Optional[PreviewMode] | | [optional] |
**transaction_rid** | Optional[TransactionRid] | The RID of the Transaction on which to delete the schema. | [optional] |

### Return type
**None**
Expand All @@ -94,13 +94,13 @@ foundry_client = FoundryClient(
auth=foundry.UserTokenAuth(...), hostname="example.palantirfoundry.com"
)

# DatasetRid | datasetRid
# DatasetRid | The RID of the Dataset on which to delete the schema.
dataset_rid = None
# Optional[BranchId] | branchId
# Optional[BranchId] | The ID of the Branch on which to delete the schema.
branch_id = None
# Optional[PreviewMode] | preview
# Optional[PreviewMode]
preview = True
# Optional[TransactionRid] | transactionRid
# Optional[TransactionRid] | The RID of the Transaction on which to delete the schema.
transaction_rid = None


Expand Down Expand Up @@ -141,7 +141,7 @@ Third-party applications using this endpoint via OAuth2 must request the followi

Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |
**dataset_rid** | DatasetRid | datasetRid | |
**dataset_rid** | DatasetRid | | |

### Return type
**Dataset**
Expand All @@ -157,7 +157,7 @@ foundry_client = FoundryClient(
auth=foundry.UserTokenAuth(...), hostname="example.palantirfoundry.com"
)

# DatasetRid | datasetRid
# DatasetRid
dataset_rid = "ri.foundry.main.dataset.c26f11c8-cdb3-4f44-9f5d-9816ea1c82da"


Expand Down Expand Up @@ -193,10 +193,10 @@ Retrieves the Schema for a Dataset and Branch, if it exists.

Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |
**dataset_rid** | DatasetRid | datasetRid | |
**branch_id** | Optional[BranchId] | branchId | [optional] |
**preview** | Optional[PreviewMode] | preview | [optional] |
**transaction_rid** | Optional[TransactionRid] | transactionRid | [optional] |
**dataset_rid** | DatasetRid | The RID of the Dataset. | |
**branch_id** | Optional[BranchId] | The ID of the Branch. | [optional] |
**preview** | Optional[PreviewMode] | | [optional] |
**transaction_rid** | Optional[TransactionRid] | The TransactionRid that contains the Schema. | [optional] |

### Return type
**Optional[Any]**
Expand All @@ -212,13 +212,13 @@ foundry_client = FoundryClient(
auth=foundry.UserTokenAuth(...), hostname="example.palantirfoundry.com"
)

# DatasetRid | datasetRid
# DatasetRid | The RID of the Dataset.
dataset_rid = None
# Optional[BranchId] | branchId
# Optional[BranchId] | The ID of the Branch.
branch_id = None
# Optional[PreviewMode] | preview
# Optional[PreviewMode]
preview = True
# Optional[TransactionRid] | transactionRid
# Optional[TransactionRid] | The TransactionRid that contains the Schema.
transaction_rid = None


Expand Down Expand Up @@ -261,13 +261,13 @@ Third-party applications using this endpoint via OAuth2 must request the followi

Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |
**dataset_rid** | DatasetRid | datasetRid | |
**format** | TableExportFormat | format | |
**branch_id** | Optional[BranchId] | branchId | [optional] |
**columns** | Optional[List[str]] | columns | [optional] |
**end_transaction_rid** | Optional[TransactionRid] | endTransactionRid | [optional] |
**row_limit** | Optional[int] | rowLimit | [optional] |
**start_transaction_rid** | Optional[TransactionRid] | startTransactionRid | [optional] |
**dataset_rid** | DatasetRid | The RID of the Dataset. | |
**format** | TableExportFormat | The export format. Must be `ARROW` or `CSV`. | |
**branch_id** | Optional[BranchId] | The identifier (name) of the Branch. | [optional] |
**columns** | Optional[List[str]] | A subset of the dataset columns to include in the result. Defaults to all columns. | [optional] |
**end_transaction_rid** | Optional[TransactionRid] | The Resource Identifier (RID) of the end Transaction. | [optional] |
**row_limit** | Optional[int] | A limit on the number of rows to return. Note that row ordering is non-deterministic. | [optional] |
**start_transaction_rid** | Optional[TransactionRid] | The Resource Identifier (RID) of the start Transaction. | [optional] |

### Return type
**bytes**
Expand All @@ -283,19 +283,19 @@ foundry_client = FoundryClient(
auth=foundry.UserTokenAuth(...), hostname="example.palantirfoundry.com"
)

# DatasetRid | datasetRid
# DatasetRid | The RID of the Dataset.
dataset_rid = None
# TableExportFormat | format
# TableExportFormat | The export format. Must be `ARROW` or `CSV`.
format = "CSV"
# Optional[BranchId] | branchId
# Optional[BranchId] | The identifier (name) of the Branch.
branch_id = None
# Optional[List[str]] | columns
# Optional[List[str]] | A subset of the dataset columns to include in the result. Defaults to all columns.
columns = None
# Optional[TransactionRid] | endTransactionRid
# Optional[TransactionRid] | The Resource Identifier (RID) of the end Transaction.
end_transaction_rid = None
# Optional[int] | rowLimit
# Optional[int] | A limit on the number of rows to return. Note that row ordering is non-deterministic.
row_limit = None
# Optional[TransactionRid] | startTransactionRid
# Optional[TransactionRid] | The Resource Identifier (RID) of the start Transaction.
start_transaction_rid = None


Expand Down Expand Up @@ -394,10 +394,10 @@ Puts a Schema on an existing Dataset and Branch.

Name | Type | Description | Notes |
------------- | ------------- | ------------- | ------------- |
**dataset_rid** | DatasetRid | datasetRid | |
**dataset_rid** | DatasetRid | The RID of the Dataset on which to put the Schema. | |
**body** | Any | Body of the request | |
**branch_id** | Optional[BranchId] | branchId | [optional] |
**preview** | Optional[PreviewMode] | preview | [optional] |
**branch_id** | Optional[BranchId] | The ID of the Branch on which to put the Schema. | [optional] |
**preview** | Optional[PreviewMode] | | [optional] |

### Return type
**None**
Expand All @@ -413,13 +413,13 @@ foundry_client = FoundryClient(
auth=foundry.UserTokenAuth(...), hostname="example.palantirfoundry.com"
)

# DatasetRid | datasetRid
# DatasetRid | The RID of the Dataset on which to put the Schema.
dataset_rid = None
# Any | Body of the request
body = None
# Optional[BranchId] | branchId
# Optional[BranchId] | The ID of the Branch on which to put the Schema.
branch_id = None
# Optional[PreviewMode] | preview
# Optional[PreviewMode]
preview = True


Expand Down
Loading

0 comments on commit 7762fb3

Please sign in to comment.