Skip to content

Commit 072117f

Browse files
Update SDK API to 5757e4a5f208a1f416f8f94b00febb3118fdb940 (#616)
This PR updates the SDK to the latest API changes. NO_CHANGELOG=true Co-authored-by: databricks-ci-ghec-2[bot] <184307802+databricks-ci-ghec-2[bot]@users.noreply.github.com>
1 parent 2b10612 commit 072117f

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

.codegen/_openapi_sha

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
bd3bc8d53f689219f2cfce6c31806579bea45e6c
1+
5757e4a5f208a1f416f8f94b00febb3118fdb940

NEXT_CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,8 @@
3434
* Add `owner` field for `com.databricks.sdk.service.postgres.ProjectStatus`.
3535
* Add `validityCheckConfigurations` field for `com.databricks.sdk.service.qualitymonitorv2.QualityMonitor`.
3636
* Add `burstScalingEnabled` field for `com.databricks.sdk.service.serving.PtServedModel`.
37+
* Add `SYSTEM_MANAGED` enum value for `com.databricks.sdk.service.jobs.JobDeploymentKind`.
38+
* [Breaking] Change `createBranch()`, `createEndpoint()` and `createProject()` methods for `workspaceClient.postgres()` service with new required argument order.
39+
* [Breaking] Change `branchId` field for `com.databricks.sdk.service.postgres.CreateBranchRequest` to be required.
40+
* [Breaking] Change `endpointId` field for `com.databricks.sdk.service.postgres.CreateEndpointRequest` to be required.
41+
* [Breaking] Change `projectId` field for `com.databricks.sdk.service.postgres.CreateProjectRequest` to be required.

databricks-sdk-java/src/main/java/com/databricks/sdk/service/jobs/JobDeployment.java

100755100644
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ public class JobDeployment {
1212
/**
1313
* The kind of deployment that manages the job.
1414
*
15-
* <p>* `BUNDLE`: The job is managed by Databricks Asset Bundle.
15+
* <p>* `BUNDLE`: The job is managed by Databricks Asset Bundle. * `SYSTEM_MANAGED`: The job is
16+
* managed by Databricks and is read-only.
1617
*/
1718
@JsonProperty("kind")
1819
private JobDeploymentKind kind;

databricks-sdk-java/src/main/java/com/databricks/sdk/service/jobs/JobDeploymentKind.java

100755100644
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,12 @@
44

55
import com.databricks.sdk.support.Generated;
66

7-
/** * `BUNDLE`: The job is managed by Databricks Asset Bundle. */
7+
/**
8+
* * `BUNDLE`: The job is managed by Databricks Asset Bundle. * `SYSTEM_MANAGED`: The job is managed
9+
* by Databricks and is read-only.
10+
*/
811
@Generated
912
public enum JobDeploymentKind {
1013
BUNDLE, // The job is managed by Databricks Asset Bundle.
14+
SYSTEM_MANAGED, // The job is managed by <Databricks> and is read-only.
1115
}

0 commit comments

Comments
 (0)