mirror of https://github.com/databricks/cli.git
Upgrade TF provider to 1.63.0 (#2162)
## Changes No significant changes to call out for DABs.
This commit is contained in:
parent
8f34fc7961
commit
98244606b3
|
@ -1,3 +1,3 @@
|
|||
package schema
|
||||
|
||||
const ProviderVersion = "1.62.0"
|
||||
const ProviderVersion = "1.63.0"
|
||||
|
|
|
@ -13,8 +13,13 @@ type ResourceExternalLocationEncryptionDetails struct {
|
|||
|
||||
type ResourceExternalLocation struct {
|
||||
AccessPoint string `json:"access_point,omitempty"`
|
||||
BrowseOnly bool `json:"browse_only,omitempty"`
|
||||
Comment string `json:"comment,omitempty"`
|
||||
CreatedAt int `json:"created_at,omitempty"`
|
||||
CreatedBy string `json:"created_by,omitempty"`
|
||||
CredentialId string `json:"credential_id,omitempty"`
|
||||
CredentialName string `json:"credential_name"`
|
||||
Fallback bool `json:"fallback,omitempty"`
|
||||
ForceDestroy bool `json:"force_destroy,omitempty"`
|
||||
ForceUpdate bool `json:"force_update,omitempty"`
|
||||
Id string `json:"id,omitempty"`
|
||||
|
@ -24,6 +29,8 @@ type ResourceExternalLocation struct {
|
|||
Owner string `json:"owner,omitempty"`
|
||||
ReadOnly bool `json:"read_only,omitempty"`
|
||||
SkipValidation bool `json:"skip_validation,omitempty"`
|
||||
UpdatedAt int `json:"updated_at,omitempty"`
|
||||
UpdatedBy string `json:"updated_by,omitempty"`
|
||||
Url string `json:"url"`
|
||||
EncryptionDetails *ResourceExternalLocationEncryptionDetails `json:"encryption_details,omitempty"`
|
||||
}
|
||||
|
|
|
@ -21,7 +21,7 @@ type Root struct {
|
|||
|
||||
const ProviderHost = "registry.terraform.io"
|
||||
const ProviderSource = "databricks/databricks"
|
||||
const ProviderVersion = "1.62.0"
|
||||
const ProviderVersion = "1.63.0"
|
||||
|
||||
func NewRoot() *Root {
|
||||
return &Root{
|
||||
|
|
Loading…
Reference in New Issue