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 .codegen/_openapi_sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2ac9d66a86b8772814266c0794730e62719ab299
1455a7a0955cf9d56364646fe54cdc1b143a2829
4 changes: 4 additions & 0 deletions NEXT_CHANGELOG.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@
### Internal Changes

### API Changes
* Add `dataframe_schema`, `filter_condition` and `transformation_sql` fields for `databricks.sdk.service.ml.DeltaTableSource`.
* Add `environment_version` field for `databricks.sdk.service.pipelines.PipelinesEnvironment`.
* Add `reset_checkpoint_selection` field for `databricks.sdk.service.pipelines.StartUpdate`.
* [Breaking] Remove `oauth2_app_client_id` and `oauth2_app_integration_id` fields for `databricks.sdk.service.apps.Space`.
16 changes: 0 additions & 16 deletions databricks/sdk/service/apps.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion databricks/sdk/service/catalog.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 30 additions & 0 deletions databricks/sdk/service/ml.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 24 additions & 1 deletion databricks/sdk/service/pipelines.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/dbdataclasses/catalog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1520,7 +1520,7 @@ These dataclasses are used in the SDK to represent API requests and responses fo

.. py:class:: SecurableKind

Latest kind: CONNECTION_JDBC_OAUTH_M2M = 298; Next id: 299
Latest kind: EXTERNAL_LOCATION_ONELAKE_MANAGED = 299; Next id: 300

.. py:attribute:: TABLE_DB_STORAGE
:value: "TABLE_DB_STORAGE"
Expand Down
6 changes: 5 additions & 1 deletion docs/workspace/pipelines/pipelines.rst
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@
:returns: :class:`PipelinePermissions`


.. py:method:: start_update(pipeline_id: str [, cause: Optional[StartUpdateCause], full_refresh: Optional[bool], full_refresh_selection: Optional[List[str]], parameters: Optional[Dict[str, str]], refresh_selection: Optional[List[str]], replace_where_overrides: Optional[List[ReplaceWhereOverride]], rewind_spec: Optional[RewindSpec], validate_only: Optional[bool]]) -> StartUpdateResponse
.. py:method:: start_update(pipeline_id: str [, cause: Optional[StartUpdateCause], full_refresh: Optional[bool], full_refresh_selection: Optional[List[str]], parameters: Optional[Dict[str, str]], refresh_selection: Optional[List[str]], replace_where_overrides: Optional[List[ReplaceWhereOverride]], reset_checkpoint_selection: Optional[List[str]], rewind_spec: Optional[RewindSpec], validate_only: Optional[bool]]) -> StartUpdateResponse

Starts a new update for the pipeline. If there is already an active update for the pipeline, the
request will fail and the active update will remain running.
Expand All @@ -452,6 +452,10 @@
:param replace_where_overrides: List[:class:`ReplaceWhereOverride`] (optional)
A list of predicate overrides for replace_where flows in this update. Only replace_where flows may
be specified. Flows not listed use their original predicate.
:param reset_checkpoint_selection: List[str] (optional)
A list of flows for which this update should reset the streaming checkpoint. This selection will not
clear the data in the flow's target table. Flows in this list may also appear in refresh_selection
and full_refresh_selection.
:param rewind_spec: :class:`RewindSpec` (optional)
The information about the requested rewind operation. If specified this is a rewind mode update.
:param validate_only: bool (optional)
Expand Down
Loading