github.com/databricks/cli@v0.203.0/bundle/internal/tf/schema/resource_mlflow_model.go (about) 1 // Generated from Databricks Terraform provider schema. DO NOT EDIT. 2 3 package schema 4 5 type ResourceMlflowModelTags struct { 6 Key string `json:"key"` 7 Value string `json:"value"` 8 } 9 10 type ResourceMlflowModel struct { 11 CreationTimestamp int `json:"creation_timestamp,omitempty"` 12 Description string `json:"description,omitempty"` 13 Id string `json:"id,omitempty"` 14 LastUpdatedTimestamp int `json:"last_updated_timestamp,omitempty"` 15 Name string `json:"name"` 16 RegisteredModelId string `json:"registered_model_id,omitempty"` 17 UserId string `json:"user_id,omitempty"` 18 Tags []ResourceMlflowModelTags `json:"tags,omitempty"` 19 }