Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/src/operations/models/AlterTransactionResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**status** | **TransactionStatus** | | |
|**status** | **String** | The status of a transaction. Case insensitive, supports both PascalCase and snake_case. Valid values are: - Queued: the transaction is queued and not yet started - Running: the transaction is currently running - Succeeded: the transaction has completed successfully - Failed: the transaction has failed - Canceled: the transaction was canceled | |
|**properties** | **Map<String, String>** | | [optional] |


Expand Down
2 changes: 1 addition & 1 deletion docs/src/operations/models/AlterTransactionSetProperty.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
|------------ | ------------- | ------------- | -------------|
|**key** | **String** | | [optional] |
|**value** | **String** | | [optional] |
|**mode** | **SetPropertyMode** | | [optional] |
|**mode** | **String** | The behavior if the property key already exists. Case insensitive, supports both PascalCase and snake_case. Valid values are: - Overwrite (default): overwrite the existing value with the provided value - Fail: fail the entire operation - Skip: keep the existing value and skip setting the provided value | [optional] |



2 changes: 1 addition & 1 deletion docs/src/operations/models/AlterTransactionSetStatus.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**status** | **TransactionStatus** | | [optional] |
|**status** | **String** | The status of a transaction. Case insensitive, supports both PascalCase and snake_case. Valid values are: - Queued: the transaction is queued and not yet started - Running: the transaction is currently running - Succeeded: the transaction has completed successfully - Failed: the transaction has failed - Canceled: the transaction was canceled | [optional] |



Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**key** | **String** | | [optional] |
|**mode** | **UnsetPropertyMode** | | [optional] |
|**mode** | **String** | The behavior if the property key to unset does not exist. Case insensitive, supports both PascalCase and snake_case. Valid values are: - Skip (default): skip the property to unset - Fail: fail the entire operation | [optional] |



12 changes: 1 addition & 11 deletions docs/src/operations/models/CreateNamespaceRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,8 @@
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**id** | **List<String>** | | [optional] |
|**mode** | [**ModeEnum**](#ModeEnum) | There are three modes when trying to create a namespace, to differentiate the behavior when a namespace of the same name already exists: * create: the operation fails with 409. * exist_ok: the operation succeeds and the existing namespace is kept. * overwrite: the existing namespace is dropped and a new empty namespace with this name is created. | [optional] |
|**mode** | **String** | There are three modes when trying to create a namespace, to differentiate the behavior when a namespace of the same name already exists. Case insensitive, supports both PascalCase and snake_case. Valid values are: * Create: the operation fails with 409. * ExistOk: the operation succeeds and the existing namespace is kept. * Overwrite: the existing namespace is dropped and a new empty namespace with this name is created. | [optional] |
|**properties** | **Map<String, String>** | | [optional] |



## Enum: ModeEnum

| Name | Value |
|---- | -----|
| CREATE | "create" |
| EXIST_OK | "exist_ok" |
| OVERWRITE | "overwrite" |



12 changes: 1 addition & 11 deletions docs/src/operations/models/CreateTableRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,7 @@ Request for creating a table, excluding the Arrow IPC stream.
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**id** | **List<String>** | | [optional] |
|**mode** | [**ModeEnum**](#ModeEnum) | There are three modes when trying to create a table, to differentiate the behavior when a table of the same name already exists: * Create: the operation fails with 409. * ExistOk: the operation succeeds and the existing table is kept. * Overwrite: the existing table is dropped and a new table with this name is created. | [optional] |



## Enum: ModeEnum

| Name | Value |
|---- | -----|
| CREATE | "Create" |
| EXIST_OK | "ExistOk" |
| OVERWRITE | "Overwrite" |
|**mode** | **String** | There are three modes when trying to create a table, to differentiate the behavior when a table of the same name already exists. Case insensitive, supports both PascalCase and snake_case. Valid values are: * Create: the operation fails with 409. * ExistOk: the operation succeeds and the existing table is kept. * Overwrite: the existing table is dropped and a new table with this name is created. | [optional] |



1 change: 0 additions & 1 deletion docs/src/operations/models/DescribeNamespaceResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**id** | **List<String>** | The namespace identifier as a list of parts | |
|**properties** | **Map<String, String>** | Properties stored on the namespace, if supported by the server. If the server does not support namespace properties, it should return null for this field. If namespace properties are supported, but none are set, it should return an empty object. | [optional] |


Expand Down
2 changes: 1 addition & 1 deletion docs/src/operations/models/DescribeTransactionResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**status** | **TransactionStatus** | | |
|**status** | **String** | The status of a transaction. Case insensitive, supports both PascalCase and snake_case. Valid values are: - Queued: the transaction is queued and not yet started - Running: the transaction is currently running - Succeeded: the transaction has completed successfully - Failed: the transaction has failed - Canceled: the transaction was canceled | |
|**properties** | **Map<String, String>** | | [optional] |


Expand Down
22 changes: 2 additions & 20 deletions docs/src/operations/models/DropNamespaceRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,8 @@
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**id** | **List<String>** | | [optional] |
|**mode** | [**ModeEnum**](#ModeEnum) | The mode for dropping a namespace, deciding the server behavior when the namespace to drop is not found. - FAIL (default): the server must return 400 indicating the namespace to drop does not exist. - SKIP: the server must return 204 indicating the drop operation has succeeded. | [optional] |
|**behavior** | [**BehaviorEnum**](#BehaviorEnum) | The behavior for dropping a namespace. - RESTRICT (default): the namespace should not contain any table or child namespace when drop is initiated. If tables are found, the server should return error and not drop the namespace. - CASCADE: all tables and child namespaces in the namespace are dropped before the namespace is dropped. | [optional] |



## Enum: ModeEnum

| Name | Value |
|---- | -----|
| SKIP | "SKIP" |
| FAIL | "FAIL" |



## Enum: BehaviorEnum

| Name | Value |
|---- | -----|
| RESTRICT | "RESTRICT" |
| CASCADE | "CASCADE" |
|**mode** | **String** | The mode for dropping a namespace, deciding the server behavior when the namespace to drop is not found. Case insensitive, supports both PascalCase and snake_case. Valid values are: - Fail (default): the server must return 400 indicating the namespace to drop does not exist. - Skip: the server must return 204 indicating the drop operation has succeeded. | [optional] |
|**behavior** | **String** | The behavior for dropping a namespace. Case insensitive, supports both PascalCase and snake_case. Valid values are: - Restrict (default): the namespace should not contain any table or child namespace when drop is initiated. If tables are found, the server should return error and not drop the namespace. - Cascade: all tables and child namespaces in the namespace are dropped before the namespace is dropped. | [optional] |



2 changes: 1 addition & 1 deletion docs/src/operations/models/DropNamespaceResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**properties** | **Map<String, String>** | | [optional] |
|**transactionId** | **List<String>** | If present, indicating the operation is long running and should be tracked using GetTransaction | [optional] |
|**transactionId** | **List<String>** | If present, indicating the operation is long running and should be tracked using DescribeTransaction | [optional] |



12 changes: 1 addition & 11 deletions docs/src/operations/models/InsertIntoTableRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,7 @@ Request for inserting records into a table, excluding the Arrow IPC stream.
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**id** | **List<String>** | | [optional] |
|**mode** | [**ModeEnum**](#ModeEnum) | | [optional] |



## Enum: ModeEnum

| Name | Value |
|---- | -----|
| CREATE | "create" |
| APPEND | "append" |
| OVERWRITE | "overwrite" |
|**mode** | **String** | How the insert should behave. Case insensitive, supports both PascalCase and snake_case. Valid values are: - Append (default): insert data to the existing table - Overwrite: remove all data in the table and then insert data to it | [optional] |



2 changes: 1 addition & 1 deletion docs/src/operations/models/MatchQuery.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
|**column** | **String** | | [optional] |
|**fuzziness** | **Integer** | | [optional] |
|**maxExpansions** | **Integer** | The maximum number of terms to expand for fuzzy matching. Default to 50. | [optional] |
|**operator** | **Operator** | The operator to use for combining terms. This can be either `And` or `Or`, it's 'Or' by default. - `And`: All terms must match. - `Or`: At least one term must match. | [optional] |
|**operator** | **String** | The operator to use for combining terms. Case insensitive, supports both PascalCase and snake_case. Valid values are: - And: All terms must match. - Or: At least one term must match. | [optional] |
|**prefixLength** | **Integer** | The number of beginning characters being unchanged for fuzzy matching. Default to 0. | [optional] |
|**terms** | **String** | | |

Expand Down
13 changes: 0 additions & 13 deletions docs/src/operations/models/Operator.md

This file was deleted.

11 changes: 1 addition & 10 deletions docs/src/operations/models/RegisterTableRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,8 @@
|------------ | ------------- | ------------- | -------------|
|**id** | **List<String>** | | [optional] |
|**location** | **String** | | |
|**mode** | [**ModeEnum**](#ModeEnum) | There are two modes when trying to register a table, to differentiate the behavior when a table of the same name already exists: * CREATE (default): the operation fails with 409. * OVERWRITE: the existing table registration is replaced with the new registration. | [optional] |
|**mode** | **String** | There are two modes when trying to register a table, to differentiate the behavior when a table of the same name already exists. Case insensitive, supports both PascalCase and snake_case. Valid values are: * Create (default): the operation fails with 409. * Overwrite: the existing table registration is replaced with the new registration. | [optional] |
|**properties** | **Map<String, String>** | | [optional] |



## Enum: ModeEnum

| Name | Value |
|---- | -----|
| CREATE | "CREATE" |
| OVERWRITE | "OVERWRITE" |



2 changes: 1 addition & 1 deletion docs/src/operations/models/RegisterTableResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**transactionId** | **String** | Optional transaction identifier | [optional] |
|**location** | **String** | | |
|**location** | **String** | | [optional] |
|**properties** | **Map<String, String>** | | [optional] |


Expand Down
15 changes: 0 additions & 15 deletions docs/src/operations/models/SetPropertyMode.md

This file was deleted.

19 changes: 0 additions & 19 deletions docs/src/operations/models/TransactionStatus.md

This file was deleted.

13 changes: 0 additions & 13 deletions docs/src/operations/models/UnsetPropertyMode.md

This file was deleted.

Loading