Skip to content

Commit ef755c2

Browse files
Excavator: Upgrade API Version (#140)
1 parent d7bdcb8 commit ef755c2

File tree

606 files changed

+4896
-1669
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

606 files changed

+4896
-1669
lines changed

README.md

Lines changed: 593 additions & 29 deletions
Large diffs are not rendered by default.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
type: feature
2+
feature:
3+
description: |-
4+
Link error classes to operations. This allows developers to catch specific error conditions when making API requests. For example:
5+
6+
```python
7+
from foundry.v2.datasets.errors import DatasetNotFound
8+
9+
try:
10+
dataset = foundry_client.datasets.Dataset.get("ri.foundry.main.dataset.abc")
11+
...
12+
except DatasetNotFound as e:
13+
print("Dataset not found", e.parameters["datasetRid"])
14+
```
15+
links:
16+
- https://github.com/palantir/foundry-platform-python/pull/140

docs/v1/Ontologies/models/DataValue.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ Represents the value of data in the following format. Note that these values can
1010
| CipherText | string | `"CIPHER::ri.bellaso.main.cipher-channel.e414ab9e-b606-499a-a0e1-844fa296ba7e::unzjs3VifsTxuIpf1fH1CJ7OaPBr2bzMMdozPaZJtCii8vVG60yXIEmzoOJaEl9mfFFe::CIPHER"` |
1111
| Date | ISO 8601 extended local date string | `"2021-05-01"` |
1212
| Decimal | string | `"2.718281828"` |
13-
| Float | number | `3.14159265` |
1413
| Double | number | `3.14159265` |
14+
| EntrySet | array of JSON objects | `[{"key": "EMP1234", "value": "true"}, {"key": "EMP4444", "value": "false"}]` |
15+
| Float | number | `3.14159265` |
1516
| Integer | number | `238940` |
1617
| Long | string | `"58319870951433"` |
1718
| Marking | string | `"MU"` |
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# EntrySetTypeDict
2+
3+
EntrySetType
4+
5+
## Properties
6+
| Name | Type | Required | Description |
7+
| ------------ | ------------- | ------------- | ------------- |
8+
**keyType** | QueryDataTypeDict | Yes | |
9+
**valueType** | QueryDataTypeDict | Yes | |
10+
**type** | Literal["entrySet"] | Yes | None |
11+
12+
13+
[[Back to Model list]](../../../../README.md#models-v1-link) [[Back to API list]](../../../../README.md#apis-v1-link) [[Back to README]](../../../../README.md)

docs/v1/Ontologies/models/QueryDataTypeDict.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ DateTypeDict | date
1414
QueryStructTypeDict | struct
1515
QuerySetTypeDict | set
1616
StringTypeDict | string
17+
EntrySetTypeDict | entrySet
1718
DoubleTypeDict | double
1819
IntegerTypeDict | integer
1920
ThreeDimensionalAggregationDict | threeDimensionalAggregation

docs/v2/Ontologies/models/DataValue.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ Represents the value of data in the following format. Note that these values can
1010
| CipherText | string | `"CIPHER::ri.bellaso.main.cipher-channel.e414ab9e-b606-499a-a0e1-844fa296ba7e::unzjs3VifsTxuIpf1fH1CJ7OaPBr2bzMMdozPaZJtCii8vVG60yXIEmzoOJaEl9mfFFe::CIPHER"` |
1111
| Date | ISO 8601 extended local date string | `"2021-05-01"` |
1212
| Decimal | string | `"2.718281828"` |
13-
| Float | number | `3.14159265` |
1413
| Double | number | `3.14159265` |
14+
| EntrySet | array of JSON objects | `[{"key": "EMP1234", "value": "true"}, {"key": "EMP4444", "value": "false"}]` |
15+
| Float | number | `3.14159265` |
1516
| Integer | number | `238940` |
1617
| Long | string | `"58319870951433"` |
1718
| Marking | string | `"MU"` |
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# EntrySetType
2+
3+
EntrySetType
4+
5+
## Properties
6+
| Name | Type | Required | Description |
7+
| ------------ | ------------- | ------------- | ------------- |
8+
**key_type** | QueryDataType | Yes | |
9+
**value_type** | QueryDataType | Yes | |
10+
**type** | Literal["entrySet"] | Yes | None |
11+
12+
13+
[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# EntrySetTypeDict
2+
3+
EntrySetType
4+
5+
## Properties
6+
| Name | Type | Required | Description |
7+
| ------------ | ------------- | ------------- | ------------- |
8+
**keyType** | QueryDataTypeDict | Yes | |
9+
**valueType** | QueryDataTypeDict | Yes | |
10+
**type** | Literal["entrySet"] | Yes | None |
11+
12+
13+
[[Back to Model list]](../../../../README.md#models-v2-link) [[Back to API list]](../../../../README.md#apis-v2-link) [[Back to README]](../../../../README.md)

docs/v2/Ontologies/models/QueryDataType.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ DateType | date
1414
QueryStructType | struct
1515
QuerySetType | set
1616
StringType | string
17+
EntrySetType | entrySet
1718
DoubleType | double
1819
IntegerType | integer
1920
ThreeDimensionalAggregation | threeDimensionalAggregation

docs/v2/Ontologies/models/QueryDataTypeDict.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ DateTypeDict | date
1414
QueryStructTypeDict | struct
1515
QuerySetTypeDict | set
1616
StringTypeDict | string
17+
EntrySetTypeDict | entrySet
1718
DoubleTypeDict | double
1819
IntegerTypeDict | integer
1920
ThreeDimensionalAggregationDict | threeDimensionalAggregation

0 commit comments

Comments
 (0)