com.databricks.sdk.service.jobs.Source Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.jobs;
import com.databricks.sdk.support.Generated;
/**
* Optional location type of the SQL file. When set to `WORKSPACE`, the SQL file will be retrieved\
* from the local Databricks workspace. When set to `GIT`, the SQL file will be retrieved from a Git
* repository defined in `git_source`. If the value is empty, the task will use `GIT` if
* `git_source` is defined and `WORKSPACE` otherwise.
*
* * `WORKSPACE`: SQL file is located in Databricks workspace. * `GIT`: SQL file is located in
* cloud Git provider.
*/
@Generated
public enum Source {
GIT, // SQL file is located in cloud Git provider.
WORKSPACE, // SQL file is located in workspace.
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy