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

     1  // Generated from Databricks Terraform provider schema. DO NOT EDIT.
     2  
     3  package schema
     4  
     5  type ResourceSqlTableColumn struct {
     6  	Comment  string `json:"comment,omitempty"`
     7  	Name     string `json:"name"`
     8  	Nullable bool   `json:"nullable,omitempty"`
     9  	Type     string `json:"type"`
    10  }
    11  
    12  type ResourceSqlTable struct {
    13  	CatalogName           string                   `json:"catalog_name"`
    14  	ClusterId             string                   `json:"cluster_id,omitempty"`
    15  	Comment               string                   `json:"comment,omitempty"`
    16  	DataSourceFormat      string                   `json:"data_source_format,omitempty"`
    17  	Id                    string                   `json:"id,omitempty"`
    18  	Name                  string                   `json:"name"`
    19  	Properties            map[string]string        `json:"properties,omitempty"`
    20  	SchemaName            string                   `json:"schema_name"`
    21  	StorageCredentialName string                   `json:"storage_credential_name,omitempty"`
    22  	StorageLocation       string                   `json:"storage_location,omitempty"`
    23  	TableType             string                   `json:"table_type"`
    24  	ViewDefinition        string                   `json:"view_definition,omitempty"`
    25  	Column                []ResourceSqlTableColumn `json:"column,omitempty"`
    26  }