2022-12-06 15:26:19 +00:00
|
|
|
// Generated from Databricks Terraform provider schema. DO NOT EDIT.
|
|
|
|
|
|
|
|
package schema
|
|
|
|
|
2023-03-20 16:22:55 +00:00
|
|
|
type ResourceRepoSparseCheckout struct {
|
|
|
|
Patterns []string `json:"patterns"`
|
|
|
|
}
|
|
|
|
|
2022-12-06 15:26:19 +00:00
|
|
|
type ResourceRepo struct {
|
2023-03-20 16:22:55 +00:00
|
|
|
Branch string `json:"branch,omitempty"`
|
|
|
|
CommitHash string `json:"commit_hash,omitempty"`
|
|
|
|
GitProvider string `json:"git_provider,omitempty"`
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
Path string `json:"path,omitempty"`
|
|
|
|
Tag string `json:"tag,omitempty"`
|
|
|
|
Url string `json:"url"`
|
|
|
|
SparseCheckout *ResourceRepoSparseCheckout `json:"sparse_checkout,omitempty"`
|
2022-12-06 15:26:19 +00:00
|
|
|
}
|