-
Notifications
You must be signed in to change notification settings - Fork 136
Upgrade TF provider to 1.61.0 #2011
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.