-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathresource_notebook.go
More file actions
22 lines (19 loc) · 1.08 KB
/
resource_notebook.go
File metadata and controls
22 lines (19 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Generated from Databricks Terraform provider schema. DO NOT EDIT.
package schema
type ResourceNotebookProviderConfig struct {
WorkspaceId string `json:"workspace_id"`
}
type ResourceNotebook struct {
ContentBase64 string `json:"content_base64,omitempty"`
Format string `json:"format,omitempty"`
Id string `json:"id,omitempty"`
Language string `json:"language,omitempty"`
Md5 string `json:"md5,omitempty"`
ObjectId int `json:"object_id,omitempty"`
ObjectType string `json:"object_type,omitempty"`
Path string `json:"path"`
Source string `json:"source,omitempty"`
Url string `json:"url,omitempty"`
WorkspacePath string `json:"workspace_path,omitempty"`
ProviderConfig *ResourceNotebookProviderConfig `json:"provider_config,omitempty"`
}