github.com/databricks/cli@v0.203.0/bundle/internal/tf/schema/resource_external_location.go (about)

     1  // Generated from Databricks Terraform provider schema. DO NOT EDIT.
     2  
     3  package schema
     4  
     5  type ResourceExternalLocation struct {
     6  	Comment        string `json:"comment,omitempty"`
     7  	CredentialName string `json:"credential_name"`
     8  	ForceDestroy   bool   `json:"force_destroy,omitempty"`
     9  	Id             string `json:"id,omitempty"`
    10  	MetastoreId    string `json:"metastore_id,omitempty"`
    11  	Name           string `json:"name"`
    12  	Owner          string `json:"owner,omitempty"`
    13  	ReadOnly       bool   `json:"read_only,omitempty"`
    14  	SkipValidation bool   `json:"skip_validation,omitempty"`
    15  	Url            string `json:"url"`
    16  }