github.com/databricks/cli@v0.203.0/bundle/internal/tf/schema/resource_library.go (about) 1 // Generated from Databricks Terraform provider schema. DO NOT EDIT. 2 3 package schema 4 5 type ResourceLibraryCran struct { 6 Package string `json:"package"` 7 Repo string `json:"repo,omitempty"` 8 } 9 10 type ResourceLibraryMaven struct { 11 Coordinates string `json:"coordinates"` 12 Exclusions []string `json:"exclusions,omitempty"` 13 Repo string `json:"repo,omitempty"` 14 } 15 16 type ResourceLibraryPypi struct { 17 Package string `json:"package"` 18 Repo string `json:"repo,omitempty"` 19 } 20 21 type ResourceLibrary struct { 22 ClusterId string `json:"cluster_id"` 23 Egg string `json:"egg,omitempty"` 24 Id string `json:"id,omitempty"` 25 Jar string `json:"jar,omitempty"` 26 Whl string `json:"whl,omitempty"` 27 Cran *ResourceLibraryCran `json:"cran,omitempty"` 28 Maven *ResourceLibraryMaven `json:"maven,omitempty"` 29 Pypi *ResourceLibraryPypi `json:"pypi,omitempty"` 30 }