|
| 1 | +// Generated from Databricks Terraform provider schema. DO NOT EDIT. |
| 2 | + |
| 3 | +package schema |
| 4 | + |
| 5 | +type DataSourceAppAppActiveDeploymentDeploymentArtifacts struct { |
| 6 | + SourceCodePath string `json:"source_code_path,omitempty"` |
| 7 | +} |
| 8 | + |
| 9 | +type DataSourceAppAppActiveDeploymentStatus struct { |
| 10 | + Message string `json:"message,omitempty"` |
| 11 | + State string `json:"state,omitempty"` |
| 12 | +} |
| 13 | + |
| 14 | +type DataSourceAppAppActiveDeployment struct { |
| 15 | + CreateTime string `json:"create_time,omitempty"` |
| 16 | + Creator string `json:"creator,omitempty"` |
| 17 | + DeploymentArtifacts *DataSourceAppAppActiveDeploymentDeploymentArtifacts `json:"deployment_artifacts,omitempty"` |
| 18 | + DeploymentId string `json:"deployment_id,omitempty"` |
| 19 | + Mode string `json:"mode,omitempty"` |
| 20 | + SourceCodePath string `json:"source_code_path,omitempty"` |
| 21 | + Status *DataSourceAppAppActiveDeploymentStatus `json:"status,omitempty"` |
| 22 | + UpdateTime string `json:"update_time,omitempty"` |
| 23 | +} |
| 24 | + |
| 25 | +type DataSourceAppAppAppStatus struct { |
| 26 | + Message string `json:"message,omitempty"` |
| 27 | + State string `json:"state,omitempty"` |
| 28 | +} |
| 29 | + |
| 30 | +type DataSourceAppAppComputeStatus struct { |
| 31 | + Message string `json:"message,omitempty"` |
| 32 | + State string `json:"state,omitempty"` |
| 33 | +} |
| 34 | + |
| 35 | +type DataSourceAppAppPendingDeploymentDeploymentArtifacts struct { |
| 36 | + SourceCodePath string `json:"source_code_path,omitempty"` |
| 37 | +} |
| 38 | + |
| 39 | +type DataSourceAppAppPendingDeploymentStatus struct { |
| 40 | + Message string `json:"message,omitempty"` |
| 41 | + State string `json:"state,omitempty"` |
| 42 | +} |
| 43 | + |
| 44 | +type DataSourceAppAppPendingDeployment struct { |
| 45 | + CreateTime string `json:"create_time,omitempty"` |
| 46 | + Creator string `json:"creator,omitempty"` |
| 47 | + DeploymentArtifacts *DataSourceAppAppPendingDeploymentDeploymentArtifacts `json:"deployment_artifacts,omitempty"` |
| 48 | + DeploymentId string `json:"deployment_id,omitempty"` |
| 49 | + Mode string `json:"mode,omitempty"` |
| 50 | + SourceCodePath string `json:"source_code_path,omitempty"` |
| 51 | + Status *DataSourceAppAppPendingDeploymentStatus `json:"status,omitempty"` |
| 52 | + UpdateTime string `json:"update_time,omitempty"` |
| 53 | +} |
| 54 | + |
| 55 | +type DataSourceAppAppResourcesJob struct { |
| 56 | + Id string `json:"id"` |
| 57 | + Permission string `json:"permission"` |
| 58 | +} |
| 59 | + |
| 60 | +type DataSourceAppAppResourcesSecret struct { |
| 61 | + Key string `json:"key"` |
| 62 | + Permission string `json:"permission"` |
| 63 | + Scope string `json:"scope"` |
| 64 | +} |
| 65 | + |
| 66 | +type DataSourceAppAppResourcesServingEndpoint struct { |
| 67 | + Name string `json:"name"` |
| 68 | + Permission string `json:"permission"` |
| 69 | +} |
| 70 | + |
| 71 | +type DataSourceAppAppResourcesSqlWarehouse struct { |
| 72 | + Id string `json:"id"` |
| 73 | + Permission string `json:"permission"` |
| 74 | +} |
| 75 | + |
| 76 | +type DataSourceAppAppResources struct { |
| 77 | + Description string `json:"description,omitempty"` |
| 78 | + Job *DataSourceAppAppResourcesJob `json:"job,omitempty"` |
| 79 | + Name string `json:"name"` |
| 80 | + Secret *DataSourceAppAppResourcesSecret `json:"secret,omitempty"` |
| 81 | + ServingEndpoint *DataSourceAppAppResourcesServingEndpoint `json:"serving_endpoint,omitempty"` |
| 82 | + SqlWarehouse *DataSourceAppAppResourcesSqlWarehouse `json:"sql_warehouse,omitempty"` |
| 83 | +} |
| 84 | + |
| 85 | +type DataSourceAppApp struct { |
| 86 | + ActiveDeployment *DataSourceAppAppActiveDeployment `json:"active_deployment,omitempty"` |
| 87 | + AppStatus *DataSourceAppAppAppStatus `json:"app_status,omitempty"` |
| 88 | + ComputeStatus *DataSourceAppAppComputeStatus `json:"compute_status,omitempty"` |
| 89 | + CreateTime string `json:"create_time,omitempty"` |
| 90 | + Creator string `json:"creator,omitempty"` |
| 91 | + DefaultSourceCodePath string `json:"default_source_code_path,omitempty"` |
| 92 | + Description string `json:"description,omitempty"` |
| 93 | + Name string `json:"name"` |
| 94 | + PendingDeployment *DataSourceAppAppPendingDeployment `json:"pending_deployment,omitempty"` |
| 95 | + Resources []DataSourceAppAppResources `json:"resources,omitempty"` |
| 96 | + ServicePrincipalClientId string `json:"service_principal_client_id,omitempty"` |
| 97 | + ServicePrincipalId int `json:"service_principal_id,omitempty"` |
| 98 | + ServicePrincipalName string `json:"service_principal_name,omitempty"` |
| 99 | + UpdateTime string `json:"update_time,omitempty"` |
| 100 | + Updater string `json:"updater,omitempty"` |
| 101 | + Url string `json:"url,omitempty"` |
| 102 | +} |
| 103 | + |
| 104 | +type DataSourceApp struct { |
| 105 | + App *DataSourceAppApp `json:"app,omitempty"` |
| 106 | + Name string `json:"name"` |
| 107 | +} |
0 commit comments