-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade TF provider to 1.61.0 (#2011)
## Changes Upgraded to TF provider 1.61.0 ### New Features and Improvements - Added databricks_app resource and data source (databricks/terraform-provider-databricks#4099). - Added databricks_credentials resource and data source
- Loading branch information
1 parent
4e95cb2
commit 58dfa70
Showing
20 changed files
with
440 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
package schema | ||
|
||
const ProviderVersion = "1.59.0" | ||
const ProviderVersion = "1.61.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
// Generated from Databricks Terraform provider schema. DO NOT EDIT. | ||
|
||
package schema | ||
|
||
type DataSourceAppAppActiveDeploymentDeploymentArtifacts struct { | ||
SourceCodePath string `json:"source_code_path,omitempty"` | ||
} | ||
|
||
type DataSourceAppAppActiveDeploymentStatus struct { | ||
Message string `json:"message,omitempty"` | ||
State string `json:"state,omitempty"` | ||
} | ||
|
||
type DataSourceAppAppActiveDeployment struct { | ||
CreateTime string `json:"create_time,omitempty"` | ||
Creator string `json:"creator,omitempty"` | ||
DeploymentArtifacts *DataSourceAppAppActiveDeploymentDeploymentArtifacts `json:"deployment_artifacts,omitempty"` | ||
DeploymentId string `json:"deployment_id,omitempty"` | ||
Mode string `json:"mode,omitempty"` | ||
SourceCodePath string `json:"source_code_path,omitempty"` | ||
Status *DataSourceAppAppActiveDeploymentStatus `json:"status,omitempty"` | ||
UpdateTime string `json:"update_time,omitempty"` | ||
} | ||
|
||
type DataSourceAppAppAppStatus struct { | ||
Message string `json:"message,omitempty"` | ||
State string `json:"state,omitempty"` | ||
} | ||
|
||
type DataSourceAppAppComputeStatus struct { | ||
Message string `json:"message,omitempty"` | ||
State string `json:"state,omitempty"` | ||
} | ||
|
||
type DataSourceAppAppPendingDeploymentDeploymentArtifacts struct { | ||
SourceCodePath string `json:"source_code_path,omitempty"` | ||
} | ||
|
||
type DataSourceAppAppPendingDeploymentStatus struct { | ||
Message string `json:"message,omitempty"` | ||
State string `json:"state,omitempty"` | ||
} | ||
|
||
type DataSourceAppAppPendingDeployment struct { | ||
CreateTime string `json:"create_time,omitempty"` | ||
Creator string `json:"creator,omitempty"` | ||
DeploymentArtifacts *DataSourceAppAppPendingDeploymentDeploymentArtifacts `json:"deployment_artifacts,omitempty"` | ||
DeploymentId string `json:"deployment_id,omitempty"` | ||
Mode string `json:"mode,omitempty"` | ||
SourceCodePath string `json:"source_code_path,omitempty"` | ||
Status *DataSourceAppAppPendingDeploymentStatus `json:"status,omitempty"` | ||
UpdateTime string `json:"update_time,omitempty"` | ||
} | ||
|
||
type DataSourceAppAppResourcesJob struct { | ||
Id string `json:"id"` | ||
Permission string `json:"permission"` | ||
} | ||
|
||
type DataSourceAppAppResourcesSecret struct { | ||
Key string `json:"key"` | ||
Permission string `json:"permission"` | ||
Scope string `json:"scope"` | ||
} | ||
|
||
type DataSourceAppAppResourcesServingEndpoint struct { | ||
Name string `json:"name"` | ||
Permission string `json:"permission"` | ||
} | ||
|
||
type DataSourceAppAppResourcesSqlWarehouse struct { | ||
Id string `json:"id"` | ||
Permission string `json:"permission"` | ||
} | ||
|
||
type DataSourceAppAppResources struct { | ||
Description string `json:"description,omitempty"` | ||
Job *DataSourceAppAppResourcesJob `json:"job,omitempty"` | ||
Name string `json:"name"` | ||
Secret *DataSourceAppAppResourcesSecret `json:"secret,omitempty"` | ||
ServingEndpoint *DataSourceAppAppResourcesServingEndpoint `json:"serving_endpoint,omitempty"` | ||
SqlWarehouse *DataSourceAppAppResourcesSqlWarehouse `json:"sql_warehouse,omitempty"` | ||
} | ||
|
||
type DataSourceAppApp struct { | ||
ActiveDeployment *DataSourceAppAppActiveDeployment `json:"active_deployment,omitempty"` | ||
AppStatus *DataSourceAppAppAppStatus `json:"app_status,omitempty"` | ||
ComputeStatus *DataSourceAppAppComputeStatus `json:"compute_status,omitempty"` | ||
CreateTime string `json:"create_time,omitempty"` | ||
Creator string `json:"creator,omitempty"` | ||
DefaultSourceCodePath string `json:"default_source_code_path,omitempty"` | ||
Description string `json:"description,omitempty"` | ||
Name string `json:"name"` | ||
PendingDeployment *DataSourceAppAppPendingDeployment `json:"pending_deployment,omitempty"` | ||
Resources []DataSourceAppAppResources `json:"resources,omitempty"` | ||
ServicePrincipalClientId string `json:"service_principal_client_id,omitempty"` | ||
ServicePrincipalId int `json:"service_principal_id,omitempty"` | ||
ServicePrincipalName string `json:"service_principal_name,omitempty"` | ||
UpdateTime string `json:"update_time,omitempty"` | ||
Updater string `json:"updater,omitempty"` | ||
Url string `json:"url,omitempty"` | ||
} | ||
|
||
type DataSourceApp struct { | ||
App *DataSourceAppApp `json:"app,omitempty"` | ||
Name string `json:"name"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
// Generated from Databricks Terraform provider schema. DO NOT EDIT. | ||
|
||
package schema | ||
|
||
type DataSourceAppsAppActiveDeploymentDeploymentArtifacts struct { | ||
SourceCodePath string `json:"source_code_path,omitempty"` | ||
} | ||
|
||
type DataSourceAppsAppActiveDeploymentStatus struct { | ||
Message string `json:"message,omitempty"` | ||
State string `json:"state,omitempty"` | ||
} | ||
|
||
type DataSourceAppsAppActiveDeployment struct { | ||
CreateTime string `json:"create_time,omitempty"` | ||
Creator string `json:"creator,omitempty"` | ||
DeploymentArtifacts *DataSourceAppsAppActiveDeploymentDeploymentArtifacts `json:"deployment_artifacts,omitempty"` | ||
DeploymentId string `json:"deployment_id,omitempty"` | ||
Mode string `json:"mode,omitempty"` | ||
SourceCodePath string `json:"source_code_path,omitempty"` | ||
Status *DataSourceAppsAppActiveDeploymentStatus `json:"status,omitempty"` | ||
UpdateTime string `json:"update_time,omitempty"` | ||
} | ||
|
||
type DataSourceAppsAppAppStatus struct { | ||
Message string `json:"message,omitempty"` | ||
State string `json:"state,omitempty"` | ||
} | ||
|
||
type DataSourceAppsAppComputeStatus struct { | ||
Message string `json:"message,omitempty"` | ||
State string `json:"state,omitempty"` | ||
} | ||
|
||
type DataSourceAppsAppPendingDeploymentDeploymentArtifacts struct { | ||
SourceCodePath string `json:"source_code_path,omitempty"` | ||
} | ||
|
||
type DataSourceAppsAppPendingDeploymentStatus struct { | ||
Message string `json:"message,omitempty"` | ||
State string `json:"state,omitempty"` | ||
} | ||
|
||
type DataSourceAppsAppPendingDeployment struct { | ||
CreateTime string `json:"create_time,omitempty"` | ||
Creator string `json:"creator,omitempty"` | ||
DeploymentArtifacts *DataSourceAppsAppPendingDeploymentDeploymentArtifacts `json:"deployment_artifacts,omitempty"` | ||
DeploymentId string `json:"deployment_id,omitempty"` | ||
Mode string `json:"mode,omitempty"` | ||
SourceCodePath string `json:"source_code_path,omitempty"` | ||
Status *DataSourceAppsAppPendingDeploymentStatus `json:"status,omitempty"` | ||
UpdateTime string `json:"update_time,omitempty"` | ||
} | ||
|
||
type DataSourceAppsAppResourcesJob struct { | ||
Id string `json:"id"` | ||
Permission string `json:"permission"` | ||
} | ||
|
||
type DataSourceAppsAppResourcesSecret struct { | ||
Key string `json:"key"` | ||
Permission string `json:"permission"` | ||
Scope string `json:"scope"` | ||
} | ||
|
||
type DataSourceAppsAppResourcesServingEndpoint struct { | ||
Name string `json:"name"` | ||
Permission string `json:"permission"` | ||
} | ||
|
||
type DataSourceAppsAppResourcesSqlWarehouse struct { | ||
Id string `json:"id"` | ||
Permission string `json:"permission"` | ||
} | ||
|
||
type DataSourceAppsAppResources struct { | ||
Description string `json:"description,omitempty"` | ||
Job *DataSourceAppsAppResourcesJob `json:"job,omitempty"` | ||
Name string `json:"name"` | ||
Secret *DataSourceAppsAppResourcesSecret `json:"secret,omitempty"` | ||
ServingEndpoint *DataSourceAppsAppResourcesServingEndpoint `json:"serving_endpoint,omitempty"` | ||
SqlWarehouse *DataSourceAppsAppResourcesSqlWarehouse `json:"sql_warehouse,omitempty"` | ||
} | ||
|
||
type DataSourceAppsApp struct { | ||
ActiveDeployment *DataSourceAppsAppActiveDeployment `json:"active_deployment,omitempty"` | ||
AppStatus *DataSourceAppsAppAppStatus `json:"app_status,omitempty"` | ||
ComputeStatus *DataSourceAppsAppComputeStatus `json:"compute_status,omitempty"` | ||
CreateTime string `json:"create_time,omitempty"` | ||
Creator string `json:"creator,omitempty"` | ||
DefaultSourceCodePath string `json:"default_source_code_path,omitempty"` | ||
Description string `json:"description,omitempty"` | ||
Name string `json:"name"` | ||
PendingDeployment *DataSourceAppsAppPendingDeployment `json:"pending_deployment,omitempty"` | ||
Resources []DataSourceAppsAppResources `json:"resources,omitempty"` | ||
ServicePrincipalClientId string `json:"service_principal_client_id,omitempty"` | ||
ServicePrincipalId int `json:"service_principal_id,omitempty"` | ||
ServicePrincipalName string `json:"service_principal_name,omitempty"` | ||
UpdateTime string `json:"update_time,omitempty"` | ||
Updater string `json:"updater,omitempty"` | ||
Url string `json:"url,omitempty"` | ||
} | ||
|
||
type DataSourceApps struct { | ||
App []DataSourceAppsApp `json:"app,omitempty"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.