2022-12-06 15:26:19 +00:00
|
|
|
// Generated from Databricks Terraform provider schema. DO NOT EDIT.
|
|
|
|
|
|
|
|
package schema
|
|
|
|
|
|
|
|
type ResourceLibraryCran struct {
|
|
|
|
Package string `json:"package"`
|
|
|
|
Repo string `json:"repo,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ResourceLibraryMaven struct {
|
|
|
|
Coordinates string `json:"coordinates"`
|
|
|
|
Exclusions []string `json:"exclusions,omitempty"`
|
|
|
|
Repo string `json:"repo,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ResourceLibraryPypi struct {
|
|
|
|
Package string `json:"package"`
|
|
|
|
Repo string `json:"repo,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type ResourceLibrary struct {
|
2024-05-06 11:41:37 +00:00
|
|
|
ClusterId string `json:"cluster_id"`
|
|
|
|
Egg string `json:"egg,omitempty"`
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
Jar string `json:"jar,omitempty"`
|
|
|
|
Requirements string `json:"requirements,omitempty"`
|
|
|
|
Whl string `json:"whl,omitempty"`
|
|
|
|
Cran *ResourceLibraryCran `json:"cran,omitempty"`
|
|
|
|
Maven *ResourceLibraryMaven `json:"maven,omitempty"`
|
|
|
|
Pypi *ResourceLibraryPypi `json:"pypi,omitempty"`
|
2022-12-06 15:26:19 +00:00
|
|
|
}
|