2022-12-06 15:26:19 +00:00
|
|
|
// Generated from Databricks Terraform provider schema. DO NOT EDIT.
|
|
|
|
|
|
|
|
package schema
|
|
|
|
|
2023-03-20 16:22:55 +00:00
|
|
|
type DataSourceShareObjectPartitionValue struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Op string `json:"op"`
|
|
|
|
RecipientPropertyKey string `json:"recipient_property_key,omitempty"`
|
|
|
|
Value string `json:"value,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type DataSourceShareObjectPartition struct {
|
|
|
|
Value []DataSourceShareObjectPartitionValue `json:"value,omitempty"`
|
|
|
|
}
|
|
|
|
|
2022-12-06 15:26:19 +00:00
|
|
|
type DataSourceShareObject struct {
|
2023-03-20 16:22:55 +00:00
|
|
|
AddedAt int `json:"added_at,omitempty"`
|
|
|
|
AddedBy string `json:"added_by,omitempty"`
|
|
|
|
CdfEnabled bool `json:"cdf_enabled,omitempty"`
|
|
|
|
Comment string `json:"comment,omitempty"`
|
|
|
|
DataObjectType string `json:"data_object_type"`
|
|
|
|
HistoryDataSharingStatus string `json:"history_data_sharing_status,omitempty"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
SharedAs string `json:"shared_as,omitempty"`
|
|
|
|
StartVersion int `json:"start_version,omitempty"`
|
|
|
|
Status string `json:"status,omitempty"`
|
|
|
|
Partition []DataSourceShareObjectPartition `json:"partition,omitempty"`
|
2022-12-06 15:26:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type DataSourceShare struct {
|
|
|
|
CreatedAt int `json:"created_at,omitempty"`
|
|
|
|
CreatedBy string `json:"created_by,omitempty"`
|
|
|
|
Id string `json:"id,omitempty"`
|
|
|
|
Name string `json:"name,omitempty"`
|
|
|
|
Object []DataSourceShareObject `json:"object,omitempty"`
|
|
|
|
}
|