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 @@
bd3bc8d53f689219f2cfce6c31806579bea45e6c
5757e4a5f208a1f416f8f94b00febb3118fdb940
5 changes: 5 additions & 0 deletions NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,8 @@
* Add `owner` field for `com.databricks.sdk.service.postgres.ProjectStatus`.
* Add `validityCheckConfigurations` field for `com.databricks.sdk.service.qualitymonitorv2.QualityMonitor`.
* Add `burstScalingEnabled` field for `com.databricks.sdk.service.serving.PtServedModel`.
* Add `SYSTEM_MANAGED` enum value for `com.databricks.sdk.service.jobs.JobDeploymentKind`.
* [Breaking] Change `createBranch()`, `createEndpoint()` and `createProject()` methods for `workspaceClient.postgres()` service with new required argument order.
* [Breaking] Change `branchId` field for `com.databricks.sdk.service.postgres.CreateBranchRequest` to be required.
* [Breaking] Change `endpointId` field for `com.databricks.sdk.service.postgres.CreateEndpointRequest` to be required.
* [Breaking] Change `projectId` field for `com.databricks.sdk.service.postgres.CreateProjectRequest` to be required.
3 changes: 2 additions & 1 deletion databricks-sdk-java/src/main/java/com/databricks/sdk/service/jobs/JobDeployment.java
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ public class JobDeployment {
/**
* The kind of deployment that manages the job.
*
* <p>* `BUNDLE`: The job is managed by Databricks Asset Bundle.
* <p>* `BUNDLE`: The job is managed by Databricks Asset Bundle. * `SYSTEM_MANAGED`: The job is
* managed by Databricks and is read-only.
*/
@JsonProperty("kind")
private JobDeploymentKind kind;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@

import com.databricks.sdk.support.Generated;

/** * `BUNDLE`: The job is managed by Databricks Asset Bundle. */
/**
* * `BUNDLE`: The job is managed by Databricks Asset Bundle. * `SYSTEM_MANAGED`: The job is managed
* by Databricks and is read-only.
*/
@Generated
public enum JobDeploymentKind {
BUNDLE, // The job is managed by Databricks Asset Bundle.
SYSTEM_MANAGED, // The job is managed by <Databricks> and is read-only.
}
Loading